{"info":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","description":"<html><head></head><body><p>The B2B sales tools you need to power up more conversations and pipeline</p>\n<h1 id=\"filtering-results\">Filtering Results</h1>\n<p>Koncert API's does support filtering the results. To filter results include <code>filter</code> request parameter in the <code>GET</code> requests.</p>\n<p>To get the results which matches <code>name</code> equals to <code>Jhon</code> pass query param as <code>filter[name]=Jhon</code></p>\n<p>The API does also supports multiple <code>filters</code>. For example to filter by <code>name</code> equals to <code>Jhon</code> and <code>createdDate</code> is equal to <code>2020-12-25</code>, pass the query params as <code>filter[name]=Jhon&amp;filter[createdDate]=200-12-25</code>.</p>\n<p>API also supports filtering results by resource association.</p>\n<p>For example to filter Cadences by User's id <code>/cadences?filter[user][id]={{user id}}</code></p>\n<h3 id=\"list-of-operators-supported-by-api\">List of operators supported by API</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Operator</strong></th>\n<th><strong>Query Param</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>=</td>\n<td>Is Equal to</td>\n<td><code>filter[name]=Jhon</code></td>\n<td></td>\n</tr>\n<tr>\n<td>&gt;</td>\n<td>Greater than</td>\n<td><code>filter[createdDate]=&gt;2021-12-25</code></td>\n<td>Supports only on numbers, date, time, date &amp; time fields</td>\n</tr>\n<tr>\n<td>&gt;=</td>\n<td>Greater than or Equal to</td>\n<td><code>filter[createdDate]=&gt;=2021-12-25</code></td>\n<td>Supports only on numbers, date, time, date &amp; time fields</td>\n</tr>\n<tr>\n<td>&lt;</td>\n<td>Less than</td>\n<td><code>filter[createdDate]=&lt;2021-12-25</code></td>\n<td>Supports only on numbers, date, time, date &amp; time fields</td>\n</tr>\n<tr>\n<td>&lt;=</td>\n<td>Less than or Equal to</td>\n<td><code>filter[createdDate]=&lt;=2021-12-25</code></td>\n<td>Supports only on numbers, date, time, date &amp; time fields</td>\n</tr>\n<tr>\n<td>*</td>\n<td>ILike</td>\n<td><code>filter[name]=\\\\\\\\\\\\\\\\*Jhon</code></td>\n<td>Supports only on string fields</td>\n</tr>\n<tr>\n<td>!*</td>\n<td>Not ILike</td>\n<td><code>filter[name]=!\\\\\\\\\\\\\\\\*Jhon</code></td>\n<td>Supports only on string fields</td>\n</tr>\n<tr>\n<td>(SW)</td>\n<td>Starts With</td>\n<td><code>filter[name]=(SW)Jhon</code></td>\n<td>Supports only on string fields</td>\n</tr>\n<tr>\n<td>!(SW)</td>\n<td>Not Starts With</td>\n<td><code>filter[name]=!(SW)Jhon</code></td>\n<td>Supports only on string fields</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"sorting-results\">Sorting Results</h1>\n<p>Koncert API's does support sorting the results. To sort results include <code>sort</code> request parameter in the <code>GET</code> requests.</p>\n<p>To sort the results in ascending order by user names pass query param as <code>sort[name]=ASC</code></p>\n<p><strong>ⓘ</strong> Use <code>DESC</code> to sort results in descending order.</p>\n<p>API also supports sorting results by resource association.</p>\n<p>For example to sort Cadences by User's id in ascending order <code>/cadences?sort[user][id]=ASC</code></p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>The response includes pagination information, when any of pagination params(<code>page[limit]</code> or <code>page[offset]</code>) are included in request.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"paging\": {\n    \"totalCount\": 3818,\n    \"limit\": 25,\n    \"offset\": 0\n}\n\n</code></pre><p>To paginate results use <code>page[offset]={{page number}}</code></p>\n<p>To limit the number of results use <code>page[limit]={{number of results per page}}</code></p>\n<p>Ex: To get 5th page and 10 results per page <code>page[offset]=5&amp;page[limit]=10</code></p>\n<h6 id=\"⚠-the-param-pagelimit-accepts-only-maximum-of-value-500\">⚠ The param <code>page[limit]</code> accepts only maximum of value <code>500</code></h6>\n<h1 id=\"sparse-fieldsets\">Sparse Fieldsets</h1>\n<p>Koncert API's does support sparse fieldsets. By default, API will return all the fields in the response. If you want only specific fields you can include <code>field</code> request parameter in the <code>GET</code> requests.</p>\n<p>To get <code>id and name</code> fields, pass query param as <code>field=[id,name]</code></p>\n<p>API also supports fieldsets results by resource association.</p>\n<p>For example to get user association fields - <code>active,isAdmin</code> pass query param as<code>/cadences?field=[id,name]&amp;includeAssociations[]=user&amp;field[user]=[active,isAdmin]</code></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Filtering Results","slug":"filtering-results"},{"content":"Sorting Results","slug":"sorting-results"},{"content":"Pagination","slug":"pagination"},{"content":"Sparse Fieldsets","slug":"sparse-fieldsets"}],"owner":"14011469","collectionId":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","publishedId":"TVsygRus","public":true,"customColor":{"top-bar":"FFFF","right-sidebar":"0C1B37","highlight":"0C1B37"},"publishDate":"2021-06-09T13:27:45.000Z"},"item":[{"name":"Authentication","item":[{"name":"Authenticating users","id":"c8a027bb-1b40-40fb-acae-a3b140c83238","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://{{Koncert login site}}/authorize?audience=koncert&response_type=code&client_id={{client id}}&redirect_uri={{redirect url}}&scope=offline_access&state={{state}}","description":"<p>Request an authorization code from Koncert by redirecting users to authenticate.</p>\n","urlObject":{"protocol":"https","path":["authorize"],"host":["{{Koncert login site}}"],"query":[{"description":{"content":"<p>(Required)The unique identifier of the Koncert API you want to access</p>\n","type":"text/plain"},"key":"audience","value":"koncert"},{"description":{"content":"<p>(Required)Use code for Authorization Code Grant Flow</p>\n","type":"text/plain"},"key":"response_type","value":"code"},{"description":{"content":"<p>(Required)Your application's ID.</p>\n","type":"text/plain"},"key":"client_id","value":"{{client id}}"},{"description":{"content":"<p>(Required)The URL to which Koncert will redirect the browser after authorization has been granted by the user.</p>\n","type":"text/plain"},"key":"redirect_uri","value":"{{redirect url}}"},{"description":{"content":"<p>(Optional)Include this if you want to get refresh token along with access token</p>\n","type":"text/plain"},"key":"scope","value":"offline_access"},{"description":{"content":"<p>(Optional)An opaque value the application adds to the initial request that Auth0 includes when redirecting the back to the application. This value must be used by the application to prevent CSRF attacks.(Required)</p>\n","type":"text/plain"},"key":"state","value":"{{state}}"}],"variable":[]}},"response":[],"_postman_id":"c8a027bb-1b40-40fb-acae-a3b140c83238"},{"name":"Access Token","id":"e11338e8-0b5f-464f-905f-4c1feafee7c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","description":"<p>(Required)</p>\n","type":"text"},{"key":"client_id","value":"{{client id}}","description":"<p>(Required)Your application's Client ID.</p>\n","type":"text"},{"key":"client_secret","value":"{{client secret}}","description":"<p>(Required)Your application's Client Secret.</p>\n","type":"text"},{"key":"code","value":"{{authorization code}}","description":"<p>(Required)The Authorization Code received from the initial <code>/authorize</code> call.</p>\n","type":"text"},{"key":"redirect_uri","value":"{{redirect url}}","description":"<p>(Required)The URL to which Koncert will redirect the browser after authorization has been granted by the user.</p>\n","type":"text"}]},"url":"https://{{Koncert login site}}/oauth/token","description":"<p>Use this endpoint to exchange an Authorization Code for a Token.</p>\n","urlObject":{"protocol":"https","path":["oauth","token"],"host":["{{Koncert login site}}"],"query":[],"variable":[]}},"response":[{"id":"a613e58e-14f1-49a0-a4fe-2d74e0047b6d","name":"Access Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","description":"(Required)","type":"text"},{"key":"client_id","value":"{{client id}}","description":"(Required)Your application's Client ID.","type":"text"},{"key":"client_secret","value":"{{client secret}}","description":"(Required)Your application's Client Secret.","type":"text"},{"key":"code","value":"{{authorization code}}","description":"(Required)The Authorization Code received from the initial `/authorize` call.","type":"text"},{"key":"redirect_uri","value":"{{redirect url}}","description":"(Required)The URL to which Koncert will redirect the browser after authorization has been granted by the user.","type":"text"}]},"url":"https://{{Koncert login site}}/oauth/token"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJ....Ig\",\n    \"refresh_token\": \"V2....Fah\",\n    \"scope\": \"offline_access\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"e11338e8-0b5f-464f-905f-4c1feafee7c1"},{"name":"Refresh Token","id":"35948351-598a-41b1-a185-91445b29750a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text","description":"<p>(Required)</p>\n"},{"key":"client_id","value":"{{client id}}","type":"text","description":"<p>(Required)Your application's Client ID.</p>\n"},{"key":"client_secret","value":"{{client secret}}","type":"text","description":"<p>(Required)Your application's Client Secret.</p>\n"},{"key":"refresh_token","value":"{{refresh token}}","type":"text","description":"<p>(Required)The Refresh Token to use.</p>\n"}]},"url":"https://{{Koncert login site}}/oauth/token","description":"<p>Use this endpoint to refresh an Access Token using the Refresh Token you got during authorization.</p>\n","urlObject":{"protocol":"https","path":["oauth","token"],"host":["{{Koncert login site}}"],"query":[],"variable":[]}},"response":[{"id":"7ff7574b-54fc-4ff4-9d89-14ce7a19dbd9","name":"Refresh Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text","description":"(Required)"},{"key":"client_id","value":"{{client id}}","type":"text","description":"(Required)Your application's Client ID."},{"key":"client_secret","value":"{{client secret}}","type":"text","description":"(Required)Your application's Client Secret."},{"key":"refresh_token","value":"{{refresh token}}","type":"text","description":"(Required)The Refresh Token to use."}]},"url":"https://{{Koncert login site}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 01 May 2021 18:57:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"__cfduid=d2713cb8e83fe46a6b1782f90243fb6141619895435; expires=Mon, 31-May-21 18:57:15 GMT; path=/; domain=.us.auth0.com; HttpOnly; SameSite=Lax; Secure"},{"key":"Set-Cookie","value":"did=s%3Av0%3A0be55630-aaaf-11eb-be91-430dc562bda8.dllBJR3hMTGO%2BW2%2BLlRlH7ey0nIkuDc83%2BgfV%2B8EY64; Max-Age=31557600; Path=/; Expires=Mon, 02 May 2022 00:57:16 GMT; HttpOnly; Secure; SameSite=None"},{"key":"Set-Cookie","value":"did_compat=s%3Av0%3A0be55630-aaaf-11eb-be91-430dc562bda8.dllBJR3hMTGO%2BW2%2BLlRlH7ey0nIkuDc83%2BgfV%2B8EY64; Max-Age=31557600; Path=/; Expires=Mon, 02 May 2022 00:57:16 GMT; HttpOnly; Secure"},{"key":"CF-Ray","value":"648b3c0ac989e11a-IAD"},{"key":"Cache-Control","value":"no-store"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"09cae3dabe0000e11a2d841000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"ot-baggage-auth0-request-id","value":"648b3c0ac989e11a"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-tracer-spanid","value":"0f76eb770dc150b9"},{"key":"ot-tracer-traceid","value":"12281441593eb608"},{"key":"Pragma","value":"no-cache"},{"key":"X-Auth0-RequestId","value":"68dadaff24d2eb0dea0f"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1619895437"},{"key":"Server","value":"cloudflare"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3-27=\":443\"; ma=86400, h3-28=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"ey....fQ\",\n    \"scope\": \"offline_access\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"35948351-598a-41b1-a185-91445b29750a"},{"name":"Resource Owner Password","id":"f437c540-3d0d-49b5-88b3-1c587cd7ebfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"{{cadence_client_id}}","type":"text"},{"key":"audience","value":"koncert","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://{{Koncert login site}}/oauth/token","description":"<p>Get <code>access_token</code> using <code>Username</code> and <code>Passowrd</code></p>\n<h6 id=\"⚠-please-check-its-availability-with-koncert-support\">⚠ Please check it's availability with Koncert Support.</h6>\n","urlObject":{"protocol":"https","path":["oauth","token"],"host":["{{Koncert login site}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f437c540-3d0d-49b5-88b3-1c587cd7ebfb"}],"id":"e37258fe-3376-4d73-9330-af6f97ceb610","description":"<p>Koncert API applications uses the standard OAuth 2.0 authentication flow.</p>\n<p>All the API requests will be validated for the authorization.</p>\n<p>All the API requests must include the <code>Bearer</code> token using <code>Authorization</code> header.</p>\n<p>The Reports API allowed to use API-Key authorization.</p>\n<p>Header: <code>X-Koncert-API-Key</code> (string, required for GET endpoints in Reports Folder)</p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"e37258fe-3376-4d73-9330-af6f97ceb610"},{"name":"Cadence","item":[{"name":"Accounts","item":[{"name":"Accounts List","id":"0e34409f-edfa-44a2-a96e-0a5b475df967","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts","description":"<p>To retrieve a list of accounts available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"bcddbf0d-b8d4-475f-9162-9d2688a78bf1","name":"Accounts List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:15:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2344,\n            \"name\": \"alpha\",\n            \"domainName\": \"mcm.com\",\n            \"createdDate\": \"2018-06-28T10:03:10Z\",\n            \"modifiedDate\": \"2018-06-28T10:03:10Z\",\n            \"prospectCount\": 52,\n            \"callCount\": 9,\n            \"emailCount\": 2,\n            \"sentCount\": 2,\n            \"repliedCount\": 0,\n            \"associations\": {\n                \"prospect\": [\n                    {\n                        \"id\": 187909\n                    },\n                    {\n                        \"id\": 187910\n                    },\n                    {\n                        \"id\": 187911\n                    },\n                    {\n                        \"id\": 187912\n                    },\n                    {\n                        \"id\": 187913\n                    },\n                    {\n                        \"id\": 190647\n                    },\n                    {\n                        \"id\": 190648\n                    },\n                    {\n                        \"id\": 190649\n                    },\n                    {\n                        \"id\": 190650\n                    },\n                    {\n                        \"id\": 190651\n                    },\n                    {\n                        \"id\": 190652\n                    },\n                    {\n                        \"id\": 190653\n                    },\n                    {\n                        \"id\": 190654\n                    },\n                    {\n                        \"id\": 190655\n                    },\n                    {\n                        \"id\": 190656\n                    },\n                    {\n                        \"id\": 190657\n                    },\n                    {\n                        \"id\": 190658\n                    },\n                    {\n                        \"id\": 190659\n                    },\n                    {\n                        \"id\": 94565\n                    },\n                    {\n                        \"id\": 94566\n                    },\n                    {\n                        \"id\": 94567\n                    },\n                    {\n                        \"id\": 94568\n                    },\n                    {\n                        \"id\": 94569\n                    },\n                    {\n                        \"id\": 94570\n                    },\n                    {\n                        \"id\": 94571\n                    },\n                    {\n                        \"id\": 94572\n                    },\n                    {\n                        \"id\": 94573\n                    },\n                    {\n                        \"id\": 94574\n                    },\n                    {\n                        \"id\": 94575\n                    },\n                    {\n                        \"id\": 96906\n                    },\n                    {\n                        \"id\": 96907\n                    },\n                    {\n                        \"id\": 96908\n                    },\n                    {\n                        \"id\": 97091\n                    },\n                    {\n                        \"id\": 110853\n                    },\n                    {\n                        \"id\": 111042\n                    },\n                    {\n                        \"id\": 111043\n                    },\n                    {\n                        \"id\": 111044\n                    },\n                    {\n                        \"id\": 111049\n                    },\n                    {\n                        \"id\": 111050\n                    },\n                    {\n                        \"id\": 111052\n                    },\n                    {\n                        \"id\": 111854\n                    },\n                    {\n                        \"id\": 111855\n                    },\n                    {\n                        \"id\": 111856\n                    },\n                    {\n                        \"id\": 111857\n                    },\n                    {\n                        \"id\": 187707\n                    },\n                    {\n                        \"id\": 187709\n                    },\n                    {\n                        \"id\": 111863\n                    },\n                    {\n                        \"id\": 111864\n                    },\n                    {\n                        \"id\": 111877\n                    },\n                    {\n                        \"id\": 111878\n                    },\n                    {\n                        \"id\": 100648\n                    },\n                    {\n                        \"id\": 100649\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            },\n            \"tag\": {}\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 555,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"0e34409f-edfa-44a2-a96e-0a5b475df967"},{"name":"Account Prospects","id":"7321f6df-ce9d-4548-a395-fd45e07e3b35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts/:id/prospects","description":"<p>To retrieve the list of prospects associated with an account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts",":id","prospects"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"d97b2e9f-2193-45f5-895e-bd64c14509dc","name":"Account Prospects","originalRequest":{"method":"GET","header":[],"url":"/api/v2/accounts/{id}/prospects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:56:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"totalCount\": 5,\n        \"limit\": 1,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": 183695,\n            \"multiTouchId\": 3972,\n            \"userId\": 6282,\n            \"createdDate\": \"2020-08-24t09:07:36Z\",\n            \"updatedDate\": \"2020-09-08t07:31:23Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"best western denver 12\",\n            \"contactName\": \"sumanth koppera\",\n            \"firstName\": \"sumanth\",\n            \"lastName\": \"koppera\",\n            \"recordType\": \"contact\",\n            \"phone\": \"(709) 539-9089\",\n            \"title\": null,\n            \"emailId\": \"sumanth12@mail.com\",\n            \"source\": null,\n            \"crmId\": \"crmgenkey95e9db71-fe6b-3f20-862b-ab4490c25fcb\",\n            \"campaignName\": \"call & vm new implementation\",\n            \"touchType\": null,\n            \"state\": \"telangana\",\n            \"city\": \"hyderabad\",\n            \"sfReportName\": null,\n            \"extension\": null,\n            \"memberStatus\": \"inprogress\",\n            \"currentTouchStatus\": \"scheduled\",\n            \"currentTouchId\": 1,\n            \"currentTouchEnteredDatetime\": \"2020-09-08t07:31:23Z\",\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"est\",\n            \"optoutFlag\": false,\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"accountId\": 10061,\n            \"lastTouchDateTime\": \"2020-09-08t07:31:23Z\",\n            \"currentTouchType\": \"callAndVm\",\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"crmAccountId\": null,\n            \"linkedinUrl\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextOutcome\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"pausedBy\": null,\n            \"pausedDatetime\": null,\n            \"timezonePhone\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": \"call\",\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": \"new teg\",\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"multiTouchStepId\": 14449,\n            \"dueDate\": \"0 years 0 months 251 days 21 hours 35 minutes 18.032955999999999 seconds\",\n            \"due\": \"251 days 21:35:18.032956\",\n            \"tagId\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 6282\n                    }\n                ],\n                \"cadence\": [\n                    {\n                        \"id\": 3972\n                    }\n                ],\n                \"touch\": [\n                    {\n                        \"id\": 14449\n                    }\n                ],\n                \"account\": [\n                    {\n                        \"id\": 10061\n                    }\n                ],\n                \"tag\": [\n                    {\n                        \"id\": null\n                    }\n                ]\n            }\n        }\n    ],\n    \"response\": \"success\"\n}"}],"_postman_id":"7321f6df-ce9d-4548-a395-fd45e07e3b35"},{"name":"Account","id":"f1b269ad-70fa-4584-aaad-0ea0d36e3c14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts/:id","description":"<p>To retrieve a specific account based on account id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"ca2b79ec-7226-4a9e-8eed-79b0744b62f6","name":"Account","originalRequest":{"method":"GET","header":[],"url":"/api/v2/accounts/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:18:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2344,\n            \"name\": \"alpha\",\n            \"domainName\": \"mcm.com\",\n            \"createdDate\": \"2018-06-28T10:03:10Z\",\n            \"modifiedDate\": \"2018-06-28T10:03:10Z\",\n            \"prospectCount\": 52,\n            \"callCount\": 0,\n            \"emailCount\": 0,\n            \"sentCount\": 0,\n            \"repliedCount\": 0,\n            \"associations\": {\n                \"prospect\": [\n                    {\n                        \"id\": 187909\n                    },\n                    {\n                        \"id\": 187910\n                    },\n                    {\n                        \"id\": 187911\n                    },\n                    {\n                        \"id\": 187912\n                    },\n                    {\n                        \"id\": 187913\n                    },\n                    {\n                        \"id\": 190647\n                    },\n                    {\n                        \"id\": 190648\n                    },\n                    {\n                        \"id\": 190649\n                    },\n                    {\n                        \"id\": 190650\n                    },\n                    {\n                        \"id\": 190651\n                    },\n                    {\n                        \"id\": 190652\n                    },\n                    {\n                        \"id\": 190653\n                    },\n                    {\n                        \"id\": 190654\n                    },\n                    {\n                        \"id\": 190655\n                    },\n                    {\n                        \"id\": 190656\n                    },\n                    {\n                        \"id\": 190657\n                    },\n                    {\n                        \"id\": 190658\n                    },\n                    {\n                        \"id\": 190659\n                    },\n                    {\n                        \"id\": 94565\n                    },\n                    {\n                        \"id\": 94566\n                    },\n                    {\n                        \"id\": 94567\n                    },\n                    {\n                        \"id\": 94568\n                    },\n                    {\n                        \"id\": 94569\n                    },\n                    {\n                        \"id\": 94570\n                    },\n                    {\n                        \"id\": 94571\n                    },\n                    {\n                        \"id\": 94572\n                    },\n                    {\n                        \"id\": 94573\n                    },\n                    {\n                        \"id\": 94574\n                    },\n                    {\n                        \"id\": 94575\n                    },\n                    {\n                        \"id\": 96906\n                    },\n                    {\n                        \"id\": 96907\n                    },\n                    {\n                        \"id\": 96908\n                    },\n                    {\n                        \"id\": 97091\n                    },\n                    {\n                        \"id\": 110853\n                    },\n                    {\n                        \"id\": 111042\n                    },\n                    {\n                        \"id\": 111043\n                    },\n                    {\n                        \"id\": 111044\n                    },\n                    {\n                        \"id\": 111049\n                    },\n                    {\n                        \"id\": 111050\n                    },\n                    {\n                        \"id\": 111052\n                    },\n                    {\n                        \"id\": 111854\n                    },\n                    {\n                        \"id\": 111855\n                    },\n                    {\n                        \"id\": 111856\n                    },\n                    {\n                        \"id\": 111857\n                    },\n                    {\n                        \"id\": 187707\n                    },\n                    {\n                        \"id\": 187709\n                    },\n                    {\n                        \"id\": 111863\n                    },\n                    {\n                        \"id\": 111864\n                    },\n                    {\n                        \"id\": 111877\n                    },\n                    {\n                        \"id\": 111878\n                    },\n                    {\n                        \"id\": 100648\n                    },\n                    {\n                        \"id\": 100649\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            },\n            \"tag\": {}\n        }\n    ]\n}"}],"_postman_id":"f1b269ad-70fa-4584-aaad-0ea0d36e3c14"},{"name":"Account Cadences","id":"b8a17968-c3c2-4132-9881-80e1e616e63e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts/:id/cadences","description":"<p>To retrieve the list of Cadences associated with an account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts",":id","cadences"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"b616ee37-479c-45af-981a-61421e3a25ad","name":"Account Cadences","originalRequest":{"method":"GET","header":[],"url":"/api/v2/accounts/{id}/cadences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:58:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"totalCount\": 10,\n        \"limit\": 1,\n        \"offset\": 0\n    },\n    \"data\": [\n        {\n            \"id\": 2987,\n            \"createdDate\": \"2019-12-04t06:17:33Z\",\n            \"startDate\": null,\n            \"endDate\": null,\n            \"status\": \"active\",\n            \"updatedDate\": \"2020-09-01t05:57:57Z\",\n            \"multiTouchName\": \"<b>krishna</b>\",\n            \"userId\": 6282,\n            \"ownerId\": 6282,\n            \"multiTouchType\": null,\n            \"description\": \"<b>krishna</b>\",\n            \"action\": null,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfBadData\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"cd1\": 0,\n            \"cd2\": 0,\n            \"cd3\": 0,\n            \"cd4\": 0,\n            \"cd5\": 0,\n            \"cd6\": 0,\n            \"cd7\": 0,\n            \"cd8\": 0,\n            \"cd9\": 0,\n            \"cd10\": 0,\n            \"cd11\": 0,\n            \"cd12\": 0,\n            \"cd13\": 0,\n            \"cd14\": 0,\n            \"cd15\": 0,\n            \"cd16\": 0,\n            \"cd17\": 0,\n            \"cd18\": 0,\n            \"cd19\": 0,\n            \"cd20\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"shareThisMultiTouchWith\": \"none\",\n            \"shared_groups\": null,\n            \"sharedUsers\": \"\",\n            \"accountId\": 10061,\n            \"multiTouchStepId\": 14543,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 6282\n                    }\n                ],\n                \"touch\": [\n                    {\n                        \"id\": 14543\n                    }\n                ]\n            }\n        }\n    ],\n    \"response\": \"success\"\n}"}],"_postman_id":"b8a17968-c3c2-4132-9881-80e1e616e63e"},{"name":"Account Activities","id":"ce9139f1-2fbf-41ad-86aa-105034039aa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts/:id/activities","description":"<p>To retrieve the detailed activities of an account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts",":id","activities"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"b7fe3d33-4462-4d47-bf1d-f99189a5514f","name":"Account Activities","originalRequest":{"method":"GET","header":[],"url":"/api/v2/accounts/{id}/activities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:02:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 707551,\n            \"touchType\": \"EMAIL\",\n            \"actionType\": \"EXIT CAMPAIGN\",\n            \"cadenceName\": \"Auto Email BCC\",\n            \"actionChanges\": \"Member EXIT CAMPAIGN\",\n            \"subject\": \"Mail with BCC Oliver\",\n            \"textContent\": \"\",\n            \"emailContent\": \"<span style=\\\"font-family:Arial,sans-serif;font-size:14px\\\"><span style=\\\"font-family:Arial,sans-serif;font-size:14px\\\"><br> <br>Hi  <br><br>Welcome to new world of marketing.<br><br>Regards<br></span></span>Regards,kk                                                                           \",\n            \"importedFileName\": \"\",\n            \"duration\": \"1 day\",\n            \"activityDatetime\": \"12/28/2020 11:07 PM\",\n            \"touchStepNo\": \"1\",\n            \"personName\": \"Rajesh Kumar A\",\n            \"outcome\": \"Sent\",\n            \"outcomeComments\": \"\",\n            \"nextTouch\": \"\",\n            \"userName\": \"Oliver Queen\",\n            \"expandBtn\": \"\",\n            \"emailTemplateName\": \"Email BCC\",\n            \"emailTouchType\": \"New\",\n            \"linkedinTouchType\": \"\",\n            \"otherCurrentTouchSourceId\": 0,\n            \"currentTouchEmailsForReview\": \"Auto\",\n            \"customizedEmailTouchInfo\": \"(Auto)\",\n            \"actionIcon\": \"fa-phone\",\n            \"accountName\": \"Arapahoe Inn 12\",\n            \"title\": \"Gembrill\",\n            \"currentTouch\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 6282\n                    }\n                ],\n                \"cadence\": [\n                    {\n                        \"id\": 3984\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 93,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"ce9139f1-2fbf-41ad-86aa-105034039aa6"},{"name":"Account Email Templates","id":"8623bdd4-2481-46f7-825e-b5f2daf4dd53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts/:id/templates","description":"<p>To retrieve the Templates used in the Email touches associated with the account based on the account id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts",":id","templates"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"efe3ee65-e428-4ca1-8c2b-a4e643b8b848","name":"Account Email Templates","originalRequest":{"method":"GET","header":[],"url":"/api/v2/accounts/{id}/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:08:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 4341,\n            \"description\": \"<span style=\\\"font-family:Arial,sans-serif;font-size:14px\\\">fdsfdsfdsf<br>&nbsp;</span>\",\n            \"subject\": \"centre\",\n            \"createdDate\": \"2020-06-24T11:40:20Z\",\n            \"updatedDate\": \"2020-12-24T07:27:34Z\",\n            \"name\": \"center frame\",\n            \"emailTemplateType\": null,\n            \"convertedLinksContent\": \"<span style=\\\"font-family:Arial,sans-serif;font-size:14px\\\">fdsfdsfdsf<br>&nbsp;</span>\",\n            \"addEmailSignatureFlag\": \"N\",\n            \"noOfEmailsSent\": 45,\n            \"noOfEmailsOpened\": 1,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsClicked\": 0,\n            \"category\": null,\n            \"crmEmailTemplateId\": \"\",\n            \"emailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": 0,\n            \"status\": true,\n            \"sharedType\": \"none\",\n            \"sharedGroups\": [],\n            \"sent\": 45,\n            \"bounced\": 0,\n            \"opened\": 1,\n            \"replied\": 0,\n            \"linksClicked\": 0,\n            \"failed\": 0,\n            \"outComes\": {},\n            \"associations\": {\n                \"cadence\": [\n                    {\n                        \"id\": 3644\n                    },\n                    {\n                        \"id\": 4039\n                    },\n                    {\n                        \"id\": 4499\n                    }\n                ],\n                \"touch\": [\n                    {\n                        \"id\": 13614\n                    },\n                    {\n                        \"id\": 14721\n                    },\n                    {\n                        \"id\": 16039\n                    }\n                ],\n                \"attachment\": [\n                    {\n                        \"id\": 1649\n                    },\n                    {\n                        \"id\": 1650\n                    },\n                    {\n                        \"id\": 1651\n                    }\n                ],\n                \"tag\": [],\n                \"user\": [\n                    {\n                        \"id\": 6282\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"8623bdd4-2481-46f7-825e-b5f2daf4dd53"},{"name":"Account Touch Outcomes","id":"7889b2d8-d966-42b3-ae89-811edeaa4af0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts/:id/touchOutcome","description":"<p>To retrieve the Touch Outcomes for the prospects associated to the account based on account id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts",":id","touchOutcome"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"3ecbf81c-aba8-4834-bfa5-591bdc4ecf5b","name":"Accounts Touch Outcomes","originalRequest":{"method":"GET","header":[],"url":"/api/v2/accounts/{id}/touchOutcome"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:12:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"touchType\": \"EMAIL\",\n            \"memberStatus\": \"Touch 1 (EMAIL)\",\n            \"multiTouchName\": \"Auto Email BCC\",\n            \"contactName\": \"Sai 222\",\n            \"titleName\": \"ss\",\n            \"accountName\": \"Allaire Timbers Inn 12\",\n            \"memberId\": \"187685\",\n            \"multiTouchId\": \"3984\",\n            \"currentTouchId\": \"1\",\n            \"outcomes\": \"\",\n            \"emailId\": \"gembrill82@gmail.com\",\n            \"phoneNumber\": \"\",\n            \"crmId\": \"crmgenkey_6eeb9a18-b32e-33a9-ba4c-041b14984b39\",\n            \"recordType\": \"Contact\",\n            \"activityDate\": \"12/22/2020 8:48 AM\",\n            \"currentTouchStatus\": \"SCHEDULED\",\n            \"memberCurrentStatus\": \"INPROGRESS\",\n            \"currentTouchEnteredDatetime\": \"12/23/2020 10:27 AM\",\n            \"optout\": false,\n            \"userId\": 6282,\n            \"memberDeleted\": 187685\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 3,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"7889b2d8-d966-42b3-ae89-811edeaa4af0"},{"name":"Account Touch Outcome Count","id":"f2370a73-9b67-4d6b-9007-32caf86a1692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts/:id/touchOutcomesCount","description":"<p>To retrieve total number of touch outcomes for the account based on the account id.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts",":id","touchOutcomesCount"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"49ff9df8-c291-443a-aade-1e4eba239ac6","name":"Account Touch Outcome Count","originalRequest":{"method":"GET","header":[],"url":"/api/v2/accounts/{id}/touchOutcomesCount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:14:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"emailTouches\": {\n                \"sent\": 4,\n                \"opened\": 0,\n                \"clicked\": 0,\n                \"replied\": 0,\n                \"bounced\": 0,\n                \"failed\": 0,\n                \"optout\": 0,\n                \"pending\": 1,\n                \"total\": 5\n            },\n            \"callTouches\": {\n                \"positiveOutComes\": 0,\n                \"badData\": 0,\n                \"others\": 0,\n                \"pending\": 3,\n                \"total\": 3\n            },\n            \"textTouches\": {\n                \"sent\": 0,\n                \"received\": 0,\n                \"pending\": 0,\n                \"total\": 0\n            }\n        }\n    ],\n    \"response\": \"success\"\n}"}],"_postman_id":"f2370a73-9b67-4d6b-9007-32caf86a1692"},{"name":"Account Assigned Tag","id":"d93bbad9-535b-4cf0-a9b6-197c1c6d62e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/accounts/:accountId/:tagId","description":"<p>Unassign the tag with an account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","accounts",":accountId",":tagId"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"accountId"},{"type":"any","value":null,"key":"tagId"}]}},"response":[{"id":"89b5d818-1532-4e5f-ab15-9afd4ae0c5c0","name":"Account Assigned Tag","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/accounts/{accountId}/{tagId}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:23:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\"\n}"}],"_postman_id":"d93bbad9-535b-4cf0-a9b6-197c1c6d62e0"}],"id":"90afbc08-f3d3-44a7-b1c8-d513efd87e3d","description":"<p>The company or account that prospects are associated with.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Name of the Company</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the account was created</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>domainName  <br /><code>String</code></td>\n<td>Domain name of the account</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedDate  <br /><code>Date-Time</code></td>\n<td>Date and time of the last update to the account</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>cadenceCount  <br /><code>Integer</code></td>\n<td>Total number of cadences available in the account</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>callCount  <br /><code>Integer</code></td>\n<td>Number of calls made to the Account</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>prospectCount  <br /><code>Integer</code></td>\n<td>Total number of prospects in the account</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>emailCount  <br /><code>Integer</code></td>\n<td>Total number of emails processed for the account</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>repliedCount  <br /><code>Integer</code></td>\n<td>Number of replied emails received from the account</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>sentCount  <br /><code>Integer</code></td>\n<td>Number of emails sent to the account</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser  <br /><code>Array of Objects</code></td>\n<td>The name of user who created the account</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedUser  <br /><code>Array of Objects</code></td>\n<td>Name of user who modified the account</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>tag  <br /><code>Array of Objects</code></td>\n<td>Tags associated to the account</td>\n<td></td>\n</tr>\n<tr>\n<td>cadence  <br /><code>Array of Objects</code></td>\n<td>Cadences associated with the account</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"90afbc08-f3d3-44a7-b1c8-d513efd87e3d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Activities","item":[{"name":"Activities","id":"bd6e54a3-b38e-4904-8f83-0bff06600ef7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/activities?filter[user][id]={{user id}}","description":"<p>To retrieve a list of user activities performed on the prospect.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","activities"],"host":["{{koncert_cadence_api}}"],"query":[{"description":{"content":"<p>(Integer)(Required) Filter activities by user</p>\n","type":"text/plain"},"key":"filter[user][id]","value":"{{user id}}"}],"variable":[]}},"response":[{"id":"7d16a98c-362c-448c-abe6-5617fd8f7d59","name":"Activities","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_cadence_api}}/api/v2/activities?filter[user][id]=6282","protocol":"https","host":["{{koncert_cadence_api}}"],"path":["api","v2","activities"],"query":[{"key":"filter[user][id]","value":"6282"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Mon, 17 May 2021 16:02:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 956270,\n            \"touchType\": \"\",\n            \"actionType\": \"IMPORT\",\n            \"cadenceName\": null,\n            \"actionChanges\": \"via Add Prospect - Cadence,\",\n            \"subject\": \"\",\n            \"textContent\": null,\n            \"emailContent\": null,\n            \"importedFileName\": \"\",\n            \"activityDatetime\": \"2021-05-17T15:58:28Z\",\n            \"touchStepNo\": 0,\n            \"productType\": null,\n            \"personName\": \"mark antony\",\n            \"outcome\": null,\n            \"outcomeComments\": null,\n            \"nextTouch\": \"\",\n            \"userName\": \"Oliver Queen\",\n            \"expandBtn\": \"\",\n            \"emailTemplateName\": null,\n            \"emailTouchType\": \"\",\n            \"linkedinTouchType\": null,\n            \"linkedinNextTouchType\": null,\n            \"otherCurrentTouchSourceId\": 0,\n            \"otherNextTouchSourceId\": 0,\n            \"prospetTaskNotes\": null,\n            \"prospectTaskSubject\": null,\n            \"currentTouchEmailsForReview\": \"\",\n            \"customizedEmailTouchInfo\": \"\",\n            \"actionIcon\": \"fa-download\",\n            \"prospectTaskId\": 0,\n            \"isCompletedActivity\": false,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 6282\n                    }\n                ],\n                \"cadence\": [\n                    {\n                        \"id\": 6282\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 956269,\n            \"touchType\": \"\",\n            \"actionType\": \"IMPORT\",\n            \"cadenceName\": null,\n            \"actionChanges\": \"via Add Prospect - Cadence,\",\n            \"subject\": \"\",\n            \"textContent\": null,\n            \"emailContent\": null,\n            \"importedFileName\": \"\",\n            \"activityDatetime\": \"2021-05-17T15:58:28Z\",\n            \"touchStepNo\": 0,\n            \"productType\": null,\n            \"personName\": \"John Peter\",\n            \"outcome\": null,\n            \"outcomeComments\": null,\n            \"nextTouch\": \"\",\n            \"userName\": \"Oliver Queen\",\n            \"expandBtn\": \"\",\n            \"emailTemplateName\": null,\n            \"emailTouchType\": \"\",\n            \"linkedinTouchType\": null,\n            \"linkedinNextTouchType\": null,\n            \"otherCurrentTouchSourceId\": 0,\n            \"otherNextTouchSourceId\": 0,\n            \"prospetTaskNotes\": null,\n            \"prospectTaskSubject\": null,\n            \"currentTouchEmailsForReview\": \"\",\n            \"customizedEmailTouchInfo\": \"\",\n            \"actionIcon\": \"fa-download\",\n            \"prospectTaskId\": 0,\n            \"isCompletedActivity\": false,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 6282\n                    }\n                ],\n                \"cadence\": [\n                    {\n                        \"id\": 6282\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 1000,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"bd6e54a3-b38e-4904-8f83-0bff06600ef7"},{"name":"Activity","id":"d3b81388-65eb-4bba-a349-5b5425faa59b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"crmActivityId\": \"00T0b00007ICrKKEA1\",\r\n    \"crmSyncedDatetime\": \"2021-01-28T15:21:56Z\",\r\n    \"isSynced\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/activities/:id","description":"<p>To edit and update an existing activity of the prospect.</p>\n<p>Updates the properties specified in the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","activities",":id"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"fe617b96-cec3-49de-8302-5c135a0aa9ac","name":"Edit Activity","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"crmActivityId\": \"00T0b00007ICrKKEA1\",\r\n    \"crmSyncedDatetime\": \"2021-01-28T15:21:56Z\",\r\n    \"isSynced\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/activities/{id}"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1021312,\n            \"touchType\": \"EMAIL\",\n            \"actionType\": \"ASSIGNED\",\n            \"actionChanges\": \"Memmber Assigned to Campaign Personalize Email\",\n            \"subject\": \"\",\n            \"textContent\": null,\n            \"emailContent\": null,\n            \"importedFileName\": null,\n            \"activityDatetime\": \"2021-07-21T13:39:55Z\",\n            \"touchStepNo\": 1,\n            \"productType\": null,\n            \"personName\": \"Abel\",\n            \"outcome\": null,\n            \"outcomeComments\": null,\n            \"nextTouch\": \"\",\n            \"userName\": \"Hpcl Admin\",\n            \"emailTemplateName\": null,\n            \"emailTouchType\": \"New\",\n            \"linkedinTouchType\": null,\n            \"linkedinNextTouchType\": null,\n            \"otherCurrentTouchSourceId\": 0,\n            \"otherNextTouchSourceId\": 0,\n            \"prospetTaskNotes\": null,\n            \"prospectTaskSubject\": null,\n            \"currentTouchEmailsForReview\": \"Personalize\",\n            \"customizedEmailTouchInfo\": \"(Personalize)\",\n            \"actionIcon\": \"fa-hand-point-right\",\n            \"prospectTaskId\": 0,\n            \"isCompletedActivity\": false,\n            \"crmId\": \"crmgenkey_e384d683-1f05-3f87-9f10-6dfa65914eb8\",\n            \"prospectId\": 207341,\n            \"callUserType\": null,\n            \"callRecordingUrl\": null,\n            \"voiceMessageName\": null,\n            \"callDuration\": null,\n            \"callerId\": null,\n            \"cadenceName\": \"Personalize Email\",\n            \"clDialedPhone\": null,\n            \"wrapTime\": null,\n            \"recordType\": \"Contact\",\n            \"email\": \"amaclead@gmail.com\",\n            \"listName\": null,\n            \"prospectStage\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 5226\n                    }\n                ],\n                \"cadence\": [\n                    {\n                        \"id\": 4377\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"d3b81388-65eb-4bba-a349-5b5425faa59b"}],"id":"c551b68f-ae64-4c06-8cc8-22606da4c661","description":"<p>Provides the detailed user activities on prospects.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>touchType<br /><code>String</code></td>\n<td>Current touch of Cadence</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>actionType<br /><code>String</code></td>\n<td>Action from which the activity is created</td>\n<td></td>\n</tr>\n<tr>\n<td>actionChanges<br /><code>String</code></td>\n<td>Activity created from which kind of action changes</td>\n<td></td>\n</tr>\n<tr>\n<td>activityDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the activity was created</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>outcome<br /><code>String</code></td>\n<td>Activity outcome</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>outcomeComments<br /><code>String</code></td>\n<td>Outcome comments</td>\n<td></td>\n</tr>\n<tr>\n<td>actionIcon<br /><code>String</code></td>\n<td>Icon of the action performed</td>\n<td></td>\n</tr>\n<tr>\n<td>isCompletedActivity<br /><code>boolean</code></td>\n<td>Whether the activity is completed or not</td>\n<td></td>\n</tr>\n<tr>\n<td>personName<br /><code>String</code></td>\n<td>Name of the prospect</td>\n<td><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c551b68f-ae64-4c06-8cc8-22606da4c661","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Activity Data","item":[{"name":"Activity Data Fields List","id":"62a0780f-df24-4e84-8fb9-b97dfd7fe698","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/activityDataFields","description":"<p>To retrieve a list of activity data fields available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","activityDataFields"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"99fc236b-886b-453b-98ec-f3af10d1c01f","name":"Activity Data Fields List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/activityDataFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:45:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 792,\n            \"crmFieldName\": \"Subject\",\n            \"expression\": \"ConnectLeader – {{Call Result}}\",\n            \"createdDate\": null,\n            \"createdBy\": null,\n            \"modifiedDate\": null,\n            \"modifiedBy\": null,\n            \"crmType\": null,\n            \"associations\": {}\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 4,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"62a0780f-df24-4e84-8fb9-b97dfd7fe698"},{"name":"Activity Data Field","id":"1025d9de-5734-45f6-ba03-49077b6b00d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/activityDataFields/:id","description":"<p>To retrieve a specific activity data field based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","activityDataFields",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"1ac21806-afc4-4b78-a17c-c6decca3e65f","name":"Activity Data Field","originalRequest":{"method":"GET","header":[],"url":"/api/v2/activityDataFields/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:06:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 792,\n            \"crmFieldName\": \"Subject\",\n            \"expression\": \"ConnectLeader – {{Call Result}}\",\n            \"createdDate\": null,\n            \"createdBy\": null,\n            \"modifiedDate\": null,\n            \"modifiedBy\": null,\n            \"crmType\": null,\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"1025d9de-5734-45f6-ba03-49077b6b00d2"}],"id":"c843d5f1-6f1f-4809-bc91-64a0b583f676","description":"<p>Maps the activities recorded in Cadence to CRM fields. These activities will be created in the Activity History section in the CRM.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>crmFieldName<br /><code>String</code></td>\n<td>CRM field name</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>expression<br /><code>String</code></td>\n<td>Cadence expression to map with CRM</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>createdDate<br /><code>Date-Time</code></td>\n<td>Date and time when the activity data was created</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedDate<br /><code>Date-Time</code></td>\n<td>Date and time when the activity data was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmType<br /><code>string</code></td>\n<td>Type of CRM</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdBy<br /><code>Array of Objects</code></td>\n<td>Name of the user who created the actvity data mapping</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedBy<br /><code>Array of Objects</code></td>\n<td>Name of the user who modified the actvity data mapping</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c843d5f1-6f1f-4809-bc91-64a0b583f676","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Attachment","item":[{"name":"Attachment List","id":"6002f9c0-1afe-424d-9642-c0c3c3942efa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/attachments","description":"<p>To retrieve the attachments used in the Email Templates.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","attachments"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"24e6c439-57fe-4708-96c9-b24124015fdb","name":"Attachment list","originalRequest":{"method":"GET","header":[],"url":"/api/v2/attachments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:58:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1223,\n            \"createdDate\": \"2018-07-27T13:39:29Z\",\n            \"updatedDate\": null,\n            \"content\": null,\n            \"name\": null,\n            \"mimeType\": \"\",\n            \"attachmentType\": \"csv\",\n            \"filePath\": \"5411/8D574512B2CF8DE07A5369D63910C78429F2E9045612E79E3EF50123CAE74218A97E94C878BE39E3\",\n            \"fileName\": \"lists.csv\",\n            \"fileNameWithTimestamp\": \"8D574512B2CF8DE07A5369D63910C78429F2E9045612E79E3EF50123CAE74218A97E94C878BE39E3\",\n            \"attachmentFileSize\": \"1.90 KB\",\n            \"attachmentActualFileSize\": 1946,\n            \"actionIcon\": \"far fa-file\",\n            \"associations\": {\n                \"emailTemplate\": [\n                    {\n                        \"id\": 967\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 13,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"6002f9c0-1afe-424d-9642-c0c3c3942efa"},{"name":"Attachment","id":"36a89554-1cfb-479d-8f26-19f0eaa27fb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/attachments/:id","description":"<p>To retrieve an attachment used in the Email Templates based on the id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","attachments",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"13c20f29-b1cd-4980-af95-27f0e9040d62","name":"Attachment","originalRequest":{"method":"GET","header":[],"url":"/api/v2/attachments/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:59:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1223,\n            \"createdDate\": \"2018-07-27T13:39:29Z\",\n            \"updatedDate\": null,\n            \"content\": null,\n            \"name\": null,\n            \"mimeType\": \"\",\n            \"attachmentType\": \"csv\",\n            \"filePath\": \"5411/8D574512B2CF8DE07A5369D63910C78429F2E9045612E79E3EF50123CAE74218A97E94C878BE39E3\",\n            \"fileName\": \"lists.csv\",\n            \"fileNameWithTimestamp\": \"8D574512B2CF8DE07A5369D63910C78429F2E9045612E79E3EF50123CAE74218A97E94C878BE39E3\",\n            \"attachmentFileSize\": \"1.90 KB\",\n            \"attachmentActualFileSize\": 1946,\n            \"actionIcon\": \"far fa-file\",\n            \"associations\": {\n                \"emailTemplate\": [\n                    {\n                        \"id\": 967\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 13,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"36a89554-1cfb-479d-8f26-19f0eaa27fb6"},{"name":"Upload Attachment","id":"fcc9e1a9-4039-4750-9b43-00a95bde1449","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/C:/Users/Sarath/Downloads/10.5 List.xlsx"},{"key":"id","value":"966","type":"text"}]},"url":"https:‌//{{koncert_cadence_api}}/api/v2/attachments","description":"<p>To add or upload the attachments to an Email Template.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","attachments"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"502907cb-2ef2-454f-b2ea-fa8a310a4443","name":"Upload attachment","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/C:/Users/Sarath/Downloads/10.5 List.xlsx"},{"key":"id","value":"966","type":"text"}]},"url":"/api/v2/attachments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:03:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1680,\n            \"createdDate\": \"2020-12-30T11:03:40Z\",\n            \"updatedDate\": \"2020-12-30T11:03:40Z\",\n            \"content\": null,\n            \"name\": null,\n            \"mimeType\": \"xlsx\",\n            \"attachmentType\": \"5 List\",\n            \"filePath\": \"5411/8D574512B2CF8DE07C9DDDC1EF1068C736275B4B197610F5BDC854ED00C8EA0365F37C0EBBFB83F2\",\n            \"fileName\": \"10.5 List.xlsx\",\n            \"fileNameWithTimestamp\": \"8D574512B2CF8DE07C9DDDC1EF1068C736275B4B197610F5BDC854ED00C8EA0365F37C0EBBFB83F2\",\n            \"attachmentFileSize\": \"16.74 KB\",\n            \"attachmentActualFileSize\": 17145,\n            \"actionIcon\": \"far fa-file-excel\",\n            \"associations\": {\n                \"emailTemplate\": [\n                    {\n                        \"id\": 966\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"fcc9e1a9-4039-4750-9b43-00a95bde1449"},{"name":"Attachment","id":"5729826d-104b-4944-a19b-c81e27f4dc64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"","description":"<p>To permanently delete an existing attachment from Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"5729826d-104b-4944-a19b-c81e27f4dc64"}],"id":"29b45490-0277-4ae5-9cdf-be3c0ceb083e","description":"<p>Attachment could be a business document, a video or an image attached to the template that has to be sent to the prospects.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary ID of the Email Template Attachment</td>\n<td>Filterable  <br />'Sortable'</td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Email Template Attachment was created</td>\n<td>Readonly  <br />'Filterable'</td>\n</tr>\n<tr>\n<td>updatedDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Email Template Attachment was updated</td>\n<td>Readonly</td>\n</tr>\n<tr>\n<td>content  <br /><code>String</code></td>\n<td>Content of the Email Template Attachment</td>\n<td></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Name of the Email Template Attachment</td>\n<td>'Filterable'</td>\n</tr>\n<tr>\n<td>mimeType <br /><code>String</code></td>\n<td>Mime Type of the Email Template Attachment</td>\n<td></td>\n</tr>\n<tr>\n<td>attachmentType <br /><code>String</code></td>\n<td>Attachment Type of the Email Template Attachment</td>\n<td></td>\n</tr>\n<tr>\n<td>filePath <br /><code>String</code></td>\n<td>File Path of the Email Template Attachment</td>\n<td></td>\n</tr>\n<tr>\n<td>fileName <br /><code>String</code></td>\n<td>File name of the Email Template Attachment</td>\n<td></td>\n</tr>\n<tr>\n<td>fileNameWithTimestamp <br /><code>String</code></td>\n<td>Encrypted form of file name with timestamp of the Email Template Attachment</td>\n<td></td>\n</tr>\n<tr>\n<td>attachmentFileSize <br /><code>String</code></td>\n<td>Size of the Email Template Attachment</td>\n<td></td>\n</tr>\n<tr>\n<td>attachmentActualFileSize <br /><code>Integer</code></td>\n<td>Size of the Email Template Attachment in bytes</td>\n<td></td>\n</tr>\n<tr>\n<td>actionIcon <br /><code>String</code></td>\n<td>Icon for the Email Template Attachment to be shown in the front-end</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createduser <br /><code>Array of Objects</code></td>\n<td>Associated user of the Email Template Attachment</td>\n<td></td>\n</tr>\n<tr>\n<td>emailTemplate <br /><code>Array of Objects</code></td>\n<td>Associated email template of the Email Template Attachment</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"86590bae-b686-43da-b5c6-a21a9872e93a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"569f4802-622b-4f37-9cf6-06d5412cdc3f","type":"text/javascript","exec":[""]}}],"_postman_id":"29b45490-0277-4ae5-9cdf-be3c0ceb083e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Cadence","item":[{"name":"Action","item":[{"name":"Assign Prospect(s) to a Cadence","id":"8f6535c0-76ff-4a96-bade-032f2ca77fb9","protocolProfileBehavior":{"disableBodyPruning":true,"strictSSL":true,"followRedirects":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences/:id/assignProspect/:prospectId[]","description":"<p>To assign one or more prospects to a Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences",":id","assignProspect",":prospectId[]"],"host":["https"],"query":[],"variable":[{"description":{"content":"<p>Cadence Id.‌</p>\n","type":"text/plain"},"type":"any","value":null,"key":"id"},{"description":{"content":"<p>Prospect Id's should be comma separated.‌</p>\n","type":"text/plain"},"type":"any","value":null,"key":"prospectId[]"}]}},"response":[{"id":"fee2080a-6a48-4bcf-8ad2-644ac7644b6e","name":"Assign prospect(s) to Cadence","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"/api/v2/cadences/{id}/assignProspect/{prospectId[]}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:52:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 275026,\n            \"assigned\": true\n        },\n        {\n            \"id\": 274247,\n            \"assigned\": true\n        }\n    ]\n}"}],"_postman_id":"8f6535c0-76ff-4a96-bade-032f2ca77fb9"},{"name":"Clone Cadence","id":"a13450a3-14ee-4924-9e7d-c9b2c946f274","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"abc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences/:id/cloneCadence","description":"<p>To clone an existing cadence.</p>\n<p>Step 1: assign id as cadenceId.</p>\n<p>Step 2: assign cloneCadenceName as clone name.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences",":id","cloneCadence"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"0f0e5b1f-7fe2-4374-be01-3cbc02cd14b6","name":"Clone Cadence","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Dilip-Test\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/cadences/{id}/cloneCadence"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:14:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 5264,\n            \"name\": \"Dilip-Test\",\n            \"description\": null,\n            \"sharedType\": \"none\",\n            \"sharedGroups\": null,\n            \"sharedUsers\": null,\n            \"status\": \"NEW\",\n            \"updatedDate\": \"2020-12-30T09:14:50Z\",\n            \"multiTouchType\": null,\n            \"createdDate\": \"2020-12-30T09:14:50Z\",\n            \"startDate\": null,\n            \"endDate\": null,\n            \"action\": null,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfBadData\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"completedCount\": 0,\n            \"activeCount\": 0,\n            \"dueCount\": 0,\n            \"prospectCount\": 0,\n            \"pausedCount\": 0,\n            \"touchcount\": 0,\n            \"emailTouchCount\": 0,\n            \"templateActiveCount\": 0,\n            \"isPassedEmailTouch\": \"\",\n            \"callTouchDueCount\": 0,\n            \"emailTouchDueCount\": 0,\n            \"linkedinTouchDueCount\": 0,\n            \"othersTouchDueCount\": 0,\n            \"textTouchDueCount\": 0,\n            \"outComes\": {},\n            \"engagementScore\": {},\n            \"associations\": {\n                \"touch\": [\n                    {\n                        \"id\": 20016\n                    },\n                    {\n                        \"id\": 20017\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"a13450a3-14ee-4924-9e7d-c9b2c946f274"}],"id":"9395b03f-a3d3-42cc-bc20-48c0ed9429e1","description":"<p>You can perform the below actions under the Cadences tab.</p>\n","_postman_id":"9395b03f-a3d3-42cc-bc20-48c0ed9429e1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Cadence List","id":"68db1399-f10e-4594-9901-94497b19d64e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences","description":"<p>To retrieve details of all the available Cadences.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"05723fdf-838e-4811-9991-7a426ee7e3de","name":"Cadence List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/cadences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 06:28:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3848,\n            \"name\": \"test1\",\n            \"description\": \"\",\n            \"sharedType\": \"none\",\n            \"sharedGroups\": null,\n            \"sharedUsers\": null,\n            \"status\": \"NEW\",\n            \"updatedDate\": \"2020-02-25T05:06:47Z\",\n            \"multiTouchType\": null,\n            \"createdDate\": \"2020-02-25T05:06:47Z\",\n            \"startDate\": null,\n            \"endDate\": null,\n            \"action\": null,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfBadData\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"completedCount\": 0,\n            \"activeCount\": 0,\n            \"dueCount\": 0,\n            \"prospectCount\": 0,\n            \"pausedCount\": 0,\n            \"touchcount\": 0,\n            \"emailTouchCount\": 0,\n            \"templateActiveCount\": 0,\n            \"isPassedEmailTouch\": \"\",\n            \"callTouchDueCount\": 0,\n            \"emailTouchDueCount\": 0,\n            \"linkedinTouchDueCount\": 0,\n            \"othersTouchDueCount\": 0,\n            \"textTouchDueCount\": 0,\n            \"outComes\": {},\n            \"engagementScore\": {},\n            \"associations\": {\n                \"touch\": [],\n                \"user\": [\n                    {\n                        \"id\": 5781\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 3852,\n            \"name\": \"other touch\",\n            \"description\": \"\",\n            \"sharedType\": \"none\",\n            \"sharedGroups\": null,\n            \"sharedUsers\": null,\n            \"status\": \"NEW\",\n            \"updatedDate\": \"2020-02-26T13:44:17Z\",\n            \"multiTouchType\": null,\n            \"createdDate\": \"2020-02-26T13:43:44Z\",\n            \"startDate\": null,\n            \"endDate\": null,\n            \"action\": null,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfBadData\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"completedCount\": 0,\n            \"activeCount\": 0,\n            \"dueCount\": 0,\n            \"prospectCount\": 0,\n            \"pausedCount\": 0,\n            \"touchcount\": 0,\n            \"emailTouchCount\": 0,\n            \"templateActiveCount\": 0,\n            \"isPassedEmailTouch\": \"\",\n            \"callTouchDueCount\": 0,\n            \"emailTouchDueCount\": 0,\n            \"linkedinTouchDueCount\": 0,\n            \"othersTouchDueCount\": 0,\n            \"textTouchDueCount\": 0,\n            \"outComes\": {},\n            \"engagementScore\": {},\n            \"associations\": {\n                \"touch\": [\n                    {\n                        \"id\": 15318\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5781\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 222,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"68db1399-f10e-4594-9901-94497b19d64e"},{"name":"Cadence","id":"8e538c72-4b63-4c0e-8a9d-534e32c6f9f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences/:id","description":"<p>To retrieve details of a specific Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"b4cdbbbc-e1a1-4a84-9aa4-bf04106492d5","name":"Cadence","originalRequest":{"method":"GET","header":[],"url":"/api/v2/cadences/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 06:32:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3848,\n            \"name\": \"test1\",\n            \"description\": \"\",\n            \"sharedType\": \"none\",\n            \"sharedGroups\": null,\n            \"sharedUsers\": null,\n            \"status\": \"NEW\",\n            \"updatedDate\": \"2020-02-25T05:06:47Z\",\n            \"multiTouchType\": null,\n            \"createdDate\": \"2020-02-25T05:06:47Z\",\n            \"startDate\": null,\n            \"endDate\": null,\n            \"action\": null,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfBadData\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"completedCount\": 0,\n            \"activeCount\": 0,\n            \"dueCount\": 0,\n            \"prospectCount\": 0,\n            \"pausedCount\": 0,\n            \"touchcount\": 0,\n            \"emailTouchCount\": 0,\n            \"templateActiveCount\": 0,\n            \"isPassedEmailTouch\": \"\",\n            \"callTouchDueCount\": 0,\n            \"emailTouchDueCount\": 0,\n            \"linkedinTouchDueCount\": 0,\n            \"othersTouchDueCount\": 0,\n            \"textTouchDueCount\": 0,\n            \"outComes\": {},\n            \"engagementScore\": {},\n            \"associations\": {\n                \"touch\": [],\n                \"user\": [\n                    {\n                        \"id\": 5781\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"8e538c72-4b63-4c0e-8a9d-534e32c6f9f9"},{"name":"Create Cadence","id":"a48c9ddf-fbd3-43e0-b78f-7bd93a8f0c3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"API Cadence Testing - assignToTeams - pm\",\r\n    \"description\": \"API Cadence Testing - assignToTeams - pm\",\r\n    \"sharedType\": \"specificGroupOfUsers\",\r\n    \"sharedGroups\": [\r\n        \"Team A\"  \r\n    ],\r\n    \"sharedUsers\": [\r\n        7432  \r\n    ]\r\n}"},"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences","description":"<p>To create a new cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"05200499-9c7b-4931-97a5-6816c0a648ca","name":"Create Cadence","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"API Cadence Testing - assignToTeams - pm\",\r\n    \"description\": \"API Cadence Testing - assignToTeams - pm\",\r\n    \"sharedType\": \"specificGroupOfUsers\",\r\n    \"sharedGroups\": [\r\n        \"Team A\"  \r\n    ],\r\n    \"sharedUsers\": [\r\n        7432  \r\n    ]\r\n}"},"url":"/api/v2/cadences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:07:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 5266,\n            \"name\": \"API Cadence Testing - assignToTeams - pm\",\n            \"description\": \"API Cadence Testing - assignToTeams - pm\",\n            \"sharedType\": \"specificGroupOfUsers\",\n            \"sharedGroups\": [\n                \"Team A\"\n            ],\n            \"sharedUsers\": null,\n            \"status\": \"NEW\",\n            \"updatedDate\": \"2020-12-30T10:07:59Z\",\n            \"multiTouchType\": null,\n            \"createdDate\": \"2020-12-30T10:07:59Z\",\n            \"startDate\": null,\n            \"endDate\": null,\n            \"action\": null,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfBadData\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"completedCount\": 0,\n            \"activeCount\": 0,\n            \"dueCount\": 0,\n            \"prospectCount\": 0,\n            \"pausedCount\": 0,\n            \"touchcount\": 0,\n            \"emailTouchCount\": 0,\n            \"templateActiveCount\": 0,\n            \"isPassedEmailTouch\": \"\",\n            \"callTouchDueCount\": 0,\n            \"emailTouchDueCount\": 0,\n            \"linkedinTouchDueCount\": 0,\n            \"othersTouchDueCount\": 0,\n            \"textTouchDueCount\": 0,\n            \"outComes\": {},\n            \"engagementScore\": {},\n            \"associations\": {\n                \"touch\": [],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"a48c9ddf-fbd3-43e0-b78f-7bd93a8f0c3f"},{"name":"Cadence","id":"069ef13a-bffa-49a2-8c03-515ad80d4570","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"API Cadence Testing - none - pm\",\r\n    \"description\": \"API Cadence Testing - none - pm\",\r\n    \"sharedType\": \"specificGroupOfUsers\",\r\n    \"sharedGroups\": [\r\n        \"Team A\"\r\n    ],\r\n    \"sharedUsers\": [\r\n        7432\r\n    ]\r\n}"},"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences/:id","description":"<p>To edit and update an existing Cadence information.<br /><br />It only updates the properties specified in the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"2fdce526-5a8a-46d7-a593-cdf9c0ae6d17","name":"Edit Cadence","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"API Cadence Testing - none - pm\",\r\n    \"description\": \"API Cadence Testing - none - pm\",\r\n    \"sharedType\": \"specificGroupOfUsers\",\r\n    \"sharedGroups\": [\r\n        \"Team A\"\r\n    ],\r\n    \"sharedUsers\": [\r\n        7432\r\n    ]\r\n}"},"url":"/api/v2/cadences/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:21:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 5266,\n            \"name\": \"API Cadence Testing - none - pm\",\n            \"description\": \"API Cadence Testing - none - pm\",\n            \"sharedType\": \"specificGroupOfUsers\",\n            \"sharedGroups\": [\n                \"Team A\"\n            ],\n            \"sharedUsers\": null,\n            \"status\": \"NEW\",\n            \"updatedDate\": \"2020-12-30T10:21:50Z\",\n            \"multiTouchType\": null,\n            \"createdDate\": \"2020-12-30T10:07:59Z\",\n            \"startDate\": null,\n            \"endDate\": null,\n            \"action\": null,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfBadData\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"completedCount\": 0,\n            \"activeCount\": 0,\n            \"dueCount\": 0,\n            \"prospectCount\": 0,\n            \"pausedCount\": 0,\n            \"touchcount\": 0,\n            \"emailTouchCount\": 0,\n            \"templateActiveCount\": 0,\n            \"isPassedEmailTouch\": \"\",\n            \"callTouchDueCount\": 0,\n            \"emailTouchDueCount\": 0,\n            \"linkedinTouchDueCount\": 0,\n            \"othersTouchDueCount\": 0,\n            \"textTouchDueCount\": 0,\n            \"outComes\": {},\n            \"engagementScore\": {},\n            \"associations\": {\n                \"touch\": [],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"069ef13a-bffa-49a2-8c03-515ad80d4570"},{"name":"Cadence","id":"c3c64524-b3d6-409d-8470-21207ad89021","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences/:id","description":"<p>To delete an existing Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"5c3b24d3-c548-4898-ab71-e2071db674f4","name":"Delete Cadence","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/cadences/{id}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:30:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"c3c64524-b3d6-409d-8470-21207ad89021"},{"name":"Sample Cadence List","id":"67ab0a4b-eb24-4209-9f3f-f7c4337d7483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences/sample","description":"<p>To retrieve all the sample Cadence List.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences","sample"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"ca6ef79b-c779-4016-98e7-ba9dca0b6221","name":"Get All Sample Cadences","originalRequest":{"method":"GET","header":[],"url":"/api/v2/cadences/sample"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:46:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"Focused\",\n            \"stepNo\": \"1\",\n            \"touchType\": \"CALL\",\n            \"waitPeriodBeforeStart\": \"0\",\n            \"waitPeriodUnit\": \"Da\",\n            \"timeToComplete\": \"5\",\n            \"timeToCompleteUnit\": \"Da\",\n            \"mailTemplateName\": null,\n            \"emailType\": null,\n            \"daySequenceWaitperiod\": 1\n        },\n        {\n            \"name\": \"Call Blaster\",\n            \"stepNo\": \"1\",\n            \"touchType\": \"CALL\",\n            \"waitPeriodBeforeStart\": \"0\",\n            \"waitPeriodUnit\": \"Mi\",\n            \"timeToComplete\": \"3\",\n            \"timeToCompleteUnit\": \"Da\",\n            \"mailTemplateName\": null,\n            \"emailType\": null,\n            \"daySequenceWaitperiod\": 1\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 75,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"67ab0a4b-eb24-4209-9f3f-f7c4337d7483"},{"name":"Create Clone of Sample Cadence","id":"801dbcfb-ad86-4dff-b32b-58fce8f2a618","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"sampleCadenceName\": \"sampleCadenceName\",\r\n    \"cloneCadenceName\": \"cloneCadenceName\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences/sample/clone","description":"<p>To clone a sample Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences","sample","clone"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"a7783b39-0ef5-4927-9b38-2cbc79fd8046","name":"Create Clone of Sample Cadence","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sampleCadenceName\": \"sampleCadenceName\",\r\n    \"cloneCadenceName\": \"cloneCadenceName\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/cadences/sample/clone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:55:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 5269,\n            \"name\": \"Focused\",\n            \"description\": \"Focused\",\n            \"sharedType\": \"none\",\n            \"sharedGroups\": null,\n            \"sharedUsers\": null,\n            \"status\": \"NEW\",\n            \"updatedDate\": \"2020-12-30T10:55:18Z\",\n            \"multiTouchType\": null,\n            \"createdDate\": \"2020-12-30T10:55:18Z\",\n            \"startDate\": null,\n            \"endDate\": null,\n            \"action\": null,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfBadData\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"completedCount\": 0,\n            \"activeCount\": 0,\n            \"dueCount\": 0,\n            \"prospectCount\": 0,\n            \"pausedCount\": 0,\n            \"touchcount\": 0,\n            \"emailTouchCount\": 0,\n            \"templateActiveCount\": 0,\n            \"isPassedEmailTouch\": \"\",\n            \"callTouchDueCount\": 0,\n            \"emailTouchDueCount\": 0,\n            \"linkedinTouchDueCount\": 0,\n            \"othersTouchDueCount\": 0,\n            \"textTouchDueCount\": 0,\n            \"outComes\": {},\n            \"engagementScore\": {},\n            \"associations\": {\n                \"touch\": [\n                    {\n                        \"id\": 20020\n                    },\n                    {\n                        \"id\": 20021\n                    },\n                    {\n                        \"id\": 20022\n                    },\n                    {\n                        \"id\": 20023\n                    },\n                    {\n                        \"id\": 20024\n                    },\n                    {\n                        \"id\": 20025\n                    },\n                    {\n                        \"id\": 20026\n                    },\n                    {\n                        \"id\": 20027\n                    },\n                    {\n                        \"id\": 20028\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"801dbcfb-ad86-4dff-b32b-58fce8f2a618"},{"name":"Cadence Summary","id":"66968685-ed65-4e8f-ad88-71000fed9938","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadences/summary/:id","description":"<p>To retrieve the Cadence Summary of Email, Call, Text, Social, LinkedIn and Template.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type<br /><code>String</code></td>\n<td>Cadence Touch type - <code>Email, Call, Text, Social, LinkedIn, Template</code></td>\n<td><code>Filterable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>status<br /><code>String</code></td>\n<td>Mail Status - <code>All, Auto, Personalize</code></td>\n<td><code>Filterable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>stepNo<br /><code>Integer</code></td>\n<td>Touch Number</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>templateName<br /><code>String</code></td>\n<td>Name of the Email Template</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsSent<br /><code>Long</code></td>\n<td>Number of Emails Sent</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsOpened<br /><code>Long</code></td>\n<td>Number of Emails Opened</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsReplied<br /><code>Long</code></td>\n<td>Number of Replied Emails</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsClicked<br /><code>Long</code></td>\n<td>Number of times the hyperlinks in the Email Template were clicked</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsBounced<br /><code>Long</code></td>\n<td>Number of Bounced Emails</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsOptout<br /><code>Long</code></td>\n<td>Number of Optout Emails</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsFailed<br /><code>Long</code></td>\n<td>Number of Failed Emails</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser<br /><code>Array of Objects</code></td>\n<td>Owner of the Cadence</td>\n<td></td>\n</tr>\n<tr>\n<td>Org<br /><code>Array of Objects</code></td>\n<td>Name of the Org</td>\n<td></td>\n</tr>\n<tr>\n<td>EmailTemplate<br /><code>Array of Objects</code></td>\n<td>Name of the Email Template</td>\n<td></td>\n</tr>\n<tr>\n<td>Cadence<br /><code>Array of Objects</code></td>\n<td>Name of the Cadence</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadences","summary",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"e0f9de30-7a25-4f1c-adec-0b40c1b2cea6","name":"Email Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_cadence_api}}/api/v2/cadences/summary/{id}?filter[user][id]={id}&filter[type]=email&filter[status]=ALL","protocol":"https","host":["{{koncert_cadence_api}}"],"path":["api","v2","cadences","summary","{id}"],"query":[{"key":"filter[user][id]","value":"{id}"},{"key":"filter[type]","value":"email"},{"key":"filter[status]","value":"ALL"}]}},"code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"sent\": 7,\r\n            \"opened\": 0,\r\n            \"replied\": 0,\r\n            \"bounced\": 6,\r\n            \"clicked\": 0,\r\n            \"failed\": 0,\r\n            \"unSubscribed\": 0\r\n        }\r\n    ]\r\n}"}],"_postman_id":"66968685-ed65-4e8f-ad88-71000fed9938"}],"id":"81d43660-590a-41fa-a1fe-6ad305c2e6ab","description":"<p>Multi-touch sequences allow a large number of prospects to be approached in a short amount of time, so that sales productivity increases. Cadence operations such as create, clone, update, delete, pause and resume can be performed.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Cadence primary id</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name<br /><code>String</code></td>\n<td>Name of the Cadence</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>description<br /><code>String</code></td>\n<td>Cadence Description</td>\n<td></td>\n</tr>\n<tr>\n<td>sharedType<br /><code>String</code></td>\n<td>Shared type of the Cadence. Could be any of the vaue <code>none</code> or <code>allUsers</code> or <code>specificGroupOfUsers</code> or <code>shareWithUsers</code></td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>sharedGroups<br /><code>Array of Strings</code></td>\n<td>Name of the Group(s) the Cadence shared with</td>\n<td></td>\n</tr>\n<tr>\n<td>sharedUsers<br /><code>Array of Integers</code></td>\n<td>Name of the User(s) the Cadence shared with</td>\n<td></td>\n</tr>\n<tr>\n<td>status<br /><code>String</code></td>\n<td>Cadence status. Could be Active or Inactive or New or Paused</td>\n<td><code>Filterable</code><br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>updatedDate<br /><code>Date-Time</code></td>\n<td>Date and time when the Cadence was last updated</td>\n<td><code>Readonly</code><br /> <code>Filterable</code><br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>createdDate<br /><code>Date-Time</code></td>\n<td>Date and time when the Cadence was created</td>\n<td><code>Readonly</code><br /> <code>Filterable</code><br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>completedCount<br /><code>Integer</code></td>\n<td>Number of prospects who have completed all the actions in the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>activeCount<br /><code>Integer</code></td>\n<td>Number of active prospects in the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>dueCount<br /><code>Integer</code></td>\n<td>Number of prospects in wait time in the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>prospectCount<br /><code>Integer</code></td>\n<td>Number of prospects assigned to the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>touchcount<br /><code>Integer</code></td>\n<td>Number of touches in the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>emailTouchCount<br /><code>Integer</code></td>\n<td>Number of email touches in the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>templateActiveCount<br /><code>Integer</code></td>\n<td>Number of active email templates in the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>isPassedEmailTouch<br /><code>String</code></td>\n<td>Whether the scheduled date and time of an Email touch has passed in a Cadence. If passed then value could be 'passedDateTime’</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>callTouchDueCount<br /><code>Integer</code></td>\n<td>Number of pending prospects in a Call touch of the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>emailTouchDueCount<br /><code>Integer</code></td>\n<td>Number of pending prospects in an Email touch of the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>linkedinTouchDueCount<br /><code>Integer</code></td>\n<td>Number of pending prospects in a LinkedIn touch of the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>othersTouchDueCount<br /><code>Integer</code></td>\n<td>Number of pending prospects in a Social touch of the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>textTouchDueCount<br /><code>Integer</code></td>\n<td>Number of pending prospects in Text touch of the Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>outcome<br /><code>Array of Objects</code></td>\n<td>Outcomes of each touch type in the Cadence</td>\n<td><code>Readonly</code><br /> <code>IncludableAssociation</code></td>\n</tr>\n<tr>\n<td>engagementScore<br /><code>Array of Objects</code></td>\n<td>Cadence Engagement Score</td>\n<td><code>Readonly</code><br /> <code>IncludableAssociation</code></td>\n</tr>\n<tr>\n<td>createduser<br /><code>Array of Objects</code></td>\n<td>Owner of the Cadence</td>\n<td><code>Filterable</code><br /> <code>Sortable</code><br /> <code>IncludableAssociation</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"81d43660-590a-41fa-a1fe-6ad305c2e6ab","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Cadence Categories","item":[{"name":"Cadence Category List","id":"ce57e196-6fc2-4fe1-8f49-9bf0e5245776","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadenceCategories","description":"<p>To retrieve a list of Cadence Categories available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadenceCategories"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"471b3b4d-b98c-43b2-a14a-d3aa256b8de9","name":"Cadence Category List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/cadencecategories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 06:28:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Cadence Category Testing\",\n            \"description\": \"Cadence Category Testing\",\n            \"type\": \"cadence\",\n            \"active\": true,\n            \"createdDateTime\": \"2021-12-28T10:22:11Z\",\n            \"updatedDateTime\": \"2021-12-28T10:22:11Z\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Cadence Category Testing-1\",\n            \"description\": \"Cadence Category Testing-1\",\n            \"type\": \"cadence\",\n            \"active\": true,\n            \"createdDateTime\": \"2021-12-28T10:23:00Z\",\n            \"updatedDateTime\": \"2021-12-28T10:23:00Z\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"ce57e196-6fc2-4fe1-8f49-9bf0e5245776"},{"name":"Cadence Category","id":"8bd1503c-2c25-4763-aca0-f9d043e68aea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadencecategories/:id","description":"<p>To retrieve a specific Cadence Category based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadencecategories",":id"],"host":["https"],"query":[],"variable":[{"id":"f523cf21-b057-44ee-9cb3-1d5ac79a740e","type":"any","value":null,"key":"id"}]}},"response":[{"id":"6d7112f6-dab2-4f74-a957-7de85c16aaa0","name":"Cadence Category","originalRequest":{"method":"GET","header":[],"url":"/api/v2/cadencecategories/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 06:32:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2,\n            \"name\": \"Cadence Category Testing-1\",\n            \"description\": \"Cadence Category Testing-1\",\n            \"type\": \"cadence\",\n            \"active\": true,\n            \"createdDateTime\": \"2021-12-28T10:23:00Z\",\n            \"updatedDateTime\": \"2021-12-28T10:23:00Z\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"8bd1503c-2c25-4763-aca0-f9d043e68aea"},{"name":"Cadence Category","id":"68c41014-65ff-4438-aa8a-00a2dff46330","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"Category testing\",\r\n    \"description\":\"Sales follow up\",\r\n    \"type\":\"cadence\",\r\n    \"active\":true\r\n}"},"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadenceCategories","description":"<p>To create a new Cadence Category in the Cadence application.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadenceCategories"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"5998fb95-5b78-40ef-83bf-1cbbd5a1107b","name":"Create Cadence category","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"Category testing\",\r\n    \"description\":\"Sales follow up\",\r\n    \"type\":\"cadence\",\r\n    \"active\":true\r\n}"},"url":"/api/v2/cadenceCategories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:07:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3,\n            \"name\": \"Category testing\",\n            \"description\": \"Sales follow up\",\n            \"type\": \"cadence\",\n            \"active\": true,\n            \"createdDateTime\": \"2022-01-03T05:45:47Z\",\n            \"updatedDateTime\": \"2022-01-03T05:45:47Z\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"68c41014-65ff-4438-aa8a-00a2dff46330"},{"name":"Cadence Category","id":"82ad99e7-67e4-4165-a067-39e188703b91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"Category testing\",\r\n    \"description\":\"Sales follow up\",\r\n    \"type\":\"cadence\",\r\n    \"active\":true\r\n}"},"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadenceCategories/:id","description":"<p>To edit and update an existing Cadence Category in the Cadence application.</p>\n<p>Updates the properties specified in the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadenceCategories",":id"],"host":["https"],"query":[],"variable":[{"id":"8d1ac15f-0868-48a0-b016-da2db02aac6e","type":"any","value":null,"key":"id"}]}},"response":[{"id":"1194559e-3bed-48ed-9533-af9e5af781d9","name":"Update Cadence Category","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"Category testing\",\r\n    \"description\":\"Sales follow up\",\r\n    \"type\":\"cadence\",\r\n    \"active\":false\r\n}"},"url":"/api/v2/cadenceCategories/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:21:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3,\n            \"name\": \"Category testing\",\n            \"description\": \"Sales follow up\",\n            \"type\": \"cadence\",\n            \"active\": false,\n            \"createdDateTime\": \"2022-01-03T05:45:47Z\",\n            \"updatedDateTime\": \"2022-01-03T05:45:47Z\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"82ad99e7-67e4-4165-a067-39e188703b91"},{"name":"Cadence Category","id":"9e68ba6a-f777-42f0-896f-1a99f5db334d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/cadenceCategories/:[id1,id2,id3]","description":"<p>To delete an existing Cadence Category.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","cadenceCategories",":[id1,id2,id3]"],"host":["https"],"query":[],"variable":[{"id":"bd425c2f-1b12-45c8-8ca9-88df46d4ab0c","type":"any","value":null,"key":"[id1,id2,id3]"}]}},"response":[{"id":"48e9b8a3-f0b1-4174-b061-84906fd2e11a","name":"Delete Cadence Categories","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/cadencesCategories/1,2,3"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:30:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"9e68ba6a-f777-42f0-896f-1a99f5db334d"}],"id":"3bdb5b69-63ae-4c94-8a2d-dd5afb94e0ac","description":"<p>Categorize the Cadence for easy and quick searching, assigning and  retrieval. The categories are Prospecting, Inbound, Outbound &amp; Follow ups.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary ID of the Cadence Category</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Name of the Cadence Category</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>description  <br /><code>String</code></td>\n<td>Description of the Cadence Category</td>\n<td>maximum 500 characters</td>\n</tr>\n<tr>\n<td>type  <br /><code>String</code></td>\n<td>Type of the Cadence Category. The values could be Cadence or Email Template</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>active  <br /><code>Boolean</code></td>\n<td>Status of the Cadence Category</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>updatedDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the Cadence Category was updated</td>\n<td><code>Readonly</code>  <br /> <code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Cadence Category was created</td>\n<td><code>Readonly</code>  <br /><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createduser<br /><code>Array of Objects</code></td>\n<td>Associated user of the category</td>\n<td></td>\n</tr>\n<tr>\n<td>cadence<br /><code>Array of Objects</code></td>\n<td>Associated cadence of the category</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3bdb5b69-63ae-4c94-8a2d-dd5afb94e0ac","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Call Dispositions","item":[{"name":"Call Disposition List","id":"1c7071b0-a7d7-489c-ac3e-4c60bf068c97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/callDispositions","description":"<p>To retrieve a list of Call Dispositions available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","callDispositions"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"71c77bb4-8a7e-453b-bda9-8d23dd8ce1d1","name":"Call Dispositions List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/callDispositions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:14:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1474,\n            \"createdUser\": null,\n            \"modifiedUser\": null,\n            \"name\": \"Call Disconnected\",\n            \"active\": true,\n            \"dispositionOrder\": 15,\n            \"reportOrder\": 15,\n            \"defaultFlag\": false,\n            \"enableForReport\": true,\n            \"positiveConnect\": false,\n            \"clickDialer\": false,\n            \"personalDialer\": false,\n            \"teamDialer\": false,\n            \"dialingAgent\": true,\n            \"badData\": false,\n            \"memberStage\": \"Attempted\",\n            \"defaultAction\": \"Move To Next Touch\",\n            \"createActivity\": true,\n            \"cadenceDisposition\": null,\n            \"requireFollowup\": false,\n            \"connect\": false,\n            \"trackOpportunities\": false,\n            \"outreachDispositionOutcome\": \"Not Answered\",\n            \"cadenceSentiment\": null,\n            \"callNotes\": null,\n            \"sentiment\": null,\n            \"leadStatus\": null,\n            \"leadSubStatus\": null,\n            \"contactStatus\": null,\n            \"csvStatus\": null,\n            \"rescheduleBasedOnCallAttempts\": false,\n            \"recordPdCalls\": false,\n            \"custom\": false,\n            \"cadenceOutcomeWeight\": 0,\n            \"createdDateTime\": \"2020-09-24T14:59:40Z\",\n            \"modifiedDateTime\": \"2020-09-24T14:59:40Z\",\n            \"contactSubStatus\": null,\n            \"notVisibleToUser\": false,\n            \"associations\": {}\n        },\n        {\n            \"id\": 1475,\n            \"createdUser\": null,\n            \"modifiedUser\": null,\n            \"name\": \"No Answer\",\n            \"active\": true,\n            \"dispositionOrder\": 13,\n            \"reportOrder\": 13,\n            \"defaultFlag\": false,\n            \"enableForReport\": true,\n            \"positiveConnect\": false,\n            \"clickDialer\": false,\n            \"personalDialer\": false,\n            \"teamDialer\": false,\n            \"dialingAgent\": true,\n            \"badData\": false,\n            \"memberStage\": \"Attempted\",\n            \"defaultAction\": \"Move To Next Touch\",\n            \"createActivity\": true,\n            \"cadenceDisposition\": null,\n            \"requireFollowup\": false,\n            \"connect\": false,\n            \"trackOpportunities\": false,\n            \"outreachDispositionOutcome\": \"Not Answered\",\n            \"cadenceSentiment\": null,\n            \"callNotes\": null,\n            \"sentiment\": null,\n            \"leadStatus\": null,\n            \"leadSubStatus\": null,\n            \"contactStatus\": null,\n            \"csvStatus\": null,\n            \"rescheduleBasedOnCallAttempts\": false,\n            \"recordPdCalls\": false,\n            \"custom\": false,\n            \"cadenceOutcomeWeight\": 0,\n            \"createdDateTime\": \"2020-09-24T14:59:40Z\",\n            \"modifiedDateTime\": \"2020-09-24T14:59:40Z\",\n            \"contactSubStatus\": null,\n            \"notVisibleToUser\": false,\n            \"associations\": {}\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 23,\n        \"limit\": 2,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"1c7071b0-a7d7-489c-ac3e-4c60bf068c97"},{"name":"Call Disposition","id":"caccb8cf-5003-41c2-bd24-e531f958330a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/callDispositions/:id","description":"<p>To retrieve a specific Call Disposition based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","callDispositions",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"351dbe32-8fc0-4f72-8906-001c4ce8b055","name":"Call Disposition","originalRequest":{"method":"GET","header":[],"url":"/api/v2/callDispositions/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:18:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1474,\n            \"createdUser\": null,\n            \"modifiedUser\": null,\n            \"name\": \"Call Disconnected\",\n            \"active\": true,\n            \"dispositionOrder\": 15,\n            \"reportOrder\": 15,\n            \"defaultFlag\": false,\n            \"enableForReport\": true,\n            \"positiveConnect\": false,\n            \"clickDialer\": false,\n            \"personalDialer\": false,\n            \"teamDialer\": false,\n            \"dialingAgent\": true,\n            \"badData\": false,\n            \"memberStage\": \"Attempted\",\n            \"defaultAction\": \"Move To Next Touch\",\n            \"createActivity\": true,\n            \"cadenceDisposition\": null,\n            \"requireFollowup\": false,\n            \"connect\": false,\n            \"trackOpportunities\": false,\n            \"outreachDispositionOutcome\": \"Not Answered\",\n            \"cadenceSentiment\": null,\n            \"callNotes\": null,\n            \"sentiment\": null,\n            \"leadStatus\": null,\n            \"leadSubStatus\": null,\n            \"contactStatus\": null,\n            \"csvStatus\": null,\n            \"rescheduleBasedOnCallAttempts\": false,\n            \"recordPdCalls\": false,\n            \"custom\": false,\n            \"cadenceOutcomeWeight\": 0,\n            \"createdDateTime\": \"2020-09-24T14:59:40Z\",\n            \"modifiedDateTime\": \"2020-09-24T14:59:40Z\",\n            \"contactSubStatus\": null,\n            \"notVisibleToUser\": false,\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"caccb8cf-5003-41c2-bd24-e531f958330a"}],"id":"a373fb3d-2ea0-450a-b96e-aae4dab3dc74","description":"<p>Call Result/Outcome of the connected calls.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Call Disposition ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Call disposition name</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>active  <br /><code>Boolean</code></td>\n<td>Flag to ensure whether the call disposition is active or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>dispositionOrder  <br /><code>Integer</code></td>\n<td>Disposition order of the call</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>reportOrder  <br /><code>Integer</code></td>\n<td>Report order of the call</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>defaultFlag  <br /><code>Boolean</code></td>\n<td>Whether the default flag is true or false</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>enableForReport  <br /><code>Boolean</code></td>\n<td>Whether the report have been enabled or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>positiveConnect  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is positive or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>clickDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition belongs to click dialer or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>personalDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition belongs to Flow Dialer or not</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>teamDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition belongs to Agent Assisted Dialer or not</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>dialingAgent  <br /><code>Boolean</code></td>\n<td>Whether the call disposition belongs to dialing agent or not</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>badData  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is bad data or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>memberStage  <br /><code>String</code></td>\n<td>Denotes the current stage of the prospect based on selected call disposition. Could be any of values’ Attempted, Replied, Opt-out, Do Not Contact, Bad Data , Not Interested, or Interested</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>defaultAction  <br /><code>String</code></td>\n<td>The default action of the corresponding call disposition</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>createActivity  <br /><code>Boolean</code></td>\n<td>Whether the call disposition have access to create activity or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>cadenceDisposition  <br /><code>String</code></td>\n<td>The cadence disposition of the call</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>requireFollowup  <br /><code>Boolean</code></td>\n<td>Whether the call disposition requires followup or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>connect  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs connect or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>trackOpportunities  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs track opportunities or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>outreachDispositionOutcome  <br /><code>String</code></td>\n<td>The outcome of the call outreach disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>cadenceSentiment  <br /><code>String</code></td>\n<td>The cadence sentiment of the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>callNotes  <br /><code>String</code></td>\n<td>The call notes of the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>sentiment  <br /><code>String</code></td>\n<td>The sentiment of the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>leadStatus  <br /><code>String</code></td>\n<td>The status of lead for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>leadSubStatus  <br /><code>String</code></td>\n<td>The sub-status of lead for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>contactStatus  <br /><code>String</code></td>\n<td>The contact status for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>csvStatus  <br /><code>String</code></td>\n<td>The csv status for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>rescheduleBasedOnCallAttempts  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs to be rescheduled based on the call attempts or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>recordPdCalls  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs to record the Flow Dialer calls or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>custom  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs to be custom or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>cadenceOutcomeWeight  <br /><code>Integer</code></td>\n<td>The cadence outcome weight of the call disposition.</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>createdDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the call disposition was created</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the call disposition was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>contactSubStatus  <br /><code>String</code></td>\n<td>The contact sub-status for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>notVisibleToUser  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is visible to user or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>aiEngine  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is belongs to AI Engine</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>aiSingleLineDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is belongs to AI Single Line Dialer</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>aiMultiLineDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is belongs to AI Multi Line Dialer</td>\n<td><code>Filterable</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser  <br /><code>Array of Objects</code></td>\n<td>ID of the user who created the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedUser  <br /><code>Array of Objects</code></td>\n<td>ID of the user who modified the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a373fb3d-2ea0-450a-b96e-aae4dab3dc74","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Email Template","item":[{"name":"Actions","item":[{"name":"Category List","id":"561a7bce-1c4b-4d90-89f7-b7e72fd4ed98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/emailTemplates/category","description":"<p>To retrieve a list of Email Template Categories.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","emailTemplates","category"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"8cac3ad1-7683-4c77-be5c-abd010c6c1a9","name":"Category list","originalRequest":{"method":"GET","header":[],"url":"/api/v2/emailTemplates/category"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:44:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 26344,\n            \"lookupName\": \"email_template_category\",\n            \"lookupValue\": \"inbound\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 1,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 4,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"561a7bce-1c4b-4d90-89f7-b7e72fd4ed98"},{"name":"Category","id":"67ae1030-5208-45e0-82f1-8a2904df5fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/emailTemplates/category/:id","description":"<p>To retrieve a specific Email Template Category based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","emailTemplates","category",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"2488895b-2e91-4da7-9e84-a756870daa67","name":"Category","originalRequest":{"method":"GET","header":[],"url":"/api/v2/emailTemplates/category/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:43:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 26344,\n            \"lookupName\": \"email_template_category\",\n            \"lookupValue\": \"inbound\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 1,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 4,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"67ae1030-5208-45e0-82f1-8a2904df5fb5"}],"id":"01885ddb-efec-43b5-8287-d35f508c88c3","description":"<p>You can perform the below actions under the Email Templates tab.</p>\n","_postman_id":"01885ddb-efec-43b5-8287-d35f508c88c3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Email Template List","id":"6d60fa62-fd90-413a-b84f-b7f847186a90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/emailTemplates","description":"<p>To retrieve a list of Email Templates available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","emailTemplates"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"5628976a-3b29-4cab-a4b6-29c0e0833f69","name":"Email template list","originalRequest":{"method":"GET","header":[],"url":"/api/v2/emailTemplates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:33:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 996,\n            \"description\": \"<p style=\\\"font-family:Verdana,Arial,sans-serif;font-size:14px !important;\\\"> ko</p><br/><br/><br><br>\",\n            \"subject\": \"me\",\n            \"createdDate\": \"2018-07-19T11:16:06Z\",\n            \"updatedDate\": \"2018-07-19T11:16:06Z\",\n            \"name\": \"you\",\n            \"emailTemplateType\": null,\n            \"convertedLinksContent\": \"ko<br/><br/><br><br>\",\n            \"addEmailSignatureFlag\": \"Y\",\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsClicked\": 0,\n            \"category\": null,\n            \"crmEmailTemplateId\": null,\n            \"emailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": 0,\n            \"status\": true,\n            \"sharedType\": \"none\",\n            \"sharedGroups\": [],\n            \"sent\": 0,\n            \"bounced\": 0,\n            \"opened\": 0,\n            \"replied\": 0,\n            \"linksClicked\": 0,\n            \"failed\": 0,\n            \"outComes\": {},\n            \"associations\": {\n                \"cadence\": [],\n                \"touch\": [],\n                \"attachment\": [],\n                \"tag\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 131,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"6d60fa62-fd90-413a-b84f-b7f847186a90"},{"name":"Email Template","id":"96b4795e-a536-4819-a6c2-b96bda1f10d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/emailTemplates/:id","description":"<p>To retrieve details of a specific Email Template based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","emailTemplates",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"2ef5f0af-150d-498e-af5a-498742aa5958","name":"Email template","originalRequest":{"method":"GET","header":[],"url":"/api/v2/emailTemplates/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:34:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 996,\n            \"description\": \"<p style=\\\"font-family:Verdana,Arial,sans-serif;font-size:14px !important;\\\"> ko</p><br/><br/><br><br>\",\n            \"subject\": \"me\",\n            \"createdDate\": \"2018-07-19T11:16:06Z\",\n            \"updatedDate\": \"2018-07-19T11:16:06Z\",\n            \"name\": \"you\",\n            \"emailTemplateType\": null,\n            \"convertedLinksContent\": \"ko<br/><br/><br><br>\",\n            \"addEmailSignatureFlag\": \"Y\",\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsClicked\": 0,\n            \"category\": null,\n            \"crmEmailTemplateId\": null,\n            \"emailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": 0,\n            \"status\": true,\n            \"sharedType\": \"none\",\n            \"sharedGroups\": [],\n            \"sent\": 0,\n            \"bounced\": 0,\n            \"opened\": 0,\n            \"replied\": 0,\n            \"linksClicked\": 0,\n            \"failed\": 0,\n            \"outComes\": {},\n            \"associations\": {\n                \"cadence\": [],\n                \"touch\": [],\n                \"attachment\": [],\n                \"tag\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 131,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"96b4795e-a536-4819-a6c2-b96bda1f10d1"},{"name":"Email Template","id":"45009115-b29a-4e28-852a-3f72ad19e3c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"testEmailTemplate\",\r\n    \"description\":\"desc\",\r\n    \"subject\":\"sub email tem\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/emailTemplates","description":"<p>To create a new Email Template.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","emailTemplates"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"b11c07be-9d81-4037-ab22-63ce9950a1d5","name":"Create  Email Template","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"testEmailTemplate\",\r\n    \"description\": \"desc\",\r\n    \"subject\": \"sub email tem\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/emailTemplates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:36:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6170,\n            \"description\": \"<span style=\\\"font-family:Arial,sans-serif;font-size:14px\\\">u\\ufffd\\u001c</span>\",\n            \"subject\": \"sub email tem\",\n            \"createdDate\": \"2020-12-30T11:36:19Z\",\n            \"updatedDate\": \"2020-12-30T11:36:19Z\",\n            \"name\": \"testEmailTemplate\",\n            \"emailTemplateType\": null,\n            \"convertedLinksContent\": \"u\\ufffd\\u001c\",\n            \"addEmailSignatureFlag\": \"Y\",\n            \"noOfEmailsSent\": null,\n            \"noOfEmailsOpened\": null,\n            \"noOfEmailsReplied\": null,\n            \"noOfEmailsClicked\": null,\n            \"category\": null,\n            \"crmEmailTemplateId\": null,\n            \"emailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": null,\n            \"status\": true,\n            \"sharedType\": \"none\",\n            \"sharedGroups\": null,\n            \"sent\": 0,\n            \"bounced\": 0,\n            \"opened\": 0,\n            \"replied\": 0,\n            \"linksClicked\": 0,\n            \"failed\": 0,\n            \"outComes\": {},\n            \"associations\": {\n                \"cadence\": [],\n                \"touch\": [],\n                \"attachment\": [],\n                \"tag\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"45009115-b29a-4e28-852a-3f72ad19e3c6"},{"name":"Email Template","id":"5520cbee-5998-4ae6-8ea7-592f214b9a78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"EMail test\",\r\n    \"subject\": \"test email\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/emailTemplates/:id","description":"<p>To edit and update an existing Email Template.</p>\n<p>Updates the properties specified in the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","emailTemplates",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"19caadf4-7293-42ca-9524-02f50b1f7a93","name":"Update  Email Template","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"EMail test\",\r\n    \"subject\": \"test email\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/emailTemplates/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:38:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6170,\n            \"description\": \"<span style=\\\"font-family:Arial,sans-serif;font-size:14px\\\">u\\ufffd\\u001c</span>\",\n            \"subject\": \"test email\",\n            \"createdDate\": \"2020-12-30T11:36:19Z\",\n            \"updatedDate\": \"2020-12-30T11:38:36Z\",\n            \"name\": \"EMail test\",\n            \"emailTemplateType\": null,\n            \"convertedLinksContent\": \"u\\ufffd\\u001c\",\n            \"addEmailSignatureFlag\": \"Y\",\n            \"noOfEmailsSent\": null,\n            \"noOfEmailsOpened\": null,\n            \"noOfEmailsReplied\": null,\n            \"noOfEmailsClicked\": null,\n            \"category\": null,\n            \"crmEmailTemplateId\": null,\n            \"emailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": null,\n            \"status\": true,\n            \"sharedType\": \"none\",\n            \"sharedGroups\": [],\n            \"sent\": 0,\n            \"bounced\": 0,\n            \"opened\": 0,\n            \"replied\": 0,\n            \"linksClicked\": 0,\n            \"failed\": 0,\n            \"outComes\": {},\n            \"associations\": {\n                \"cadence\": [],\n                \"touch\": [],\n                \"attachment\": [],\n                \"tag\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"5520cbee-5998-4ae6-8ea7-592f214b9a78"},{"name":"Email Template","id":"9d06580b-be27-45fe-8208-302385a6dee4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/emailTemplates/:id","description":"<p>To delete an existing Email Template.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","emailTemplates",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"3a4a5a1f-4da9-4cb1-bc39-a1c0aa8140a6","name":"Delete  Email Template","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/emailTemplates/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:39:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"9d06580b-be27-45fe-8208-302385a6dee4"}],"id":"471559ff-3379-4617-9085-fc1e24f8cbaf","description":"<p>Design your own Email Templates to use for business promotions. You can clone, edit, delete, and share templates across your entire organization.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary ID of the Email Template</td>\n<td><code>Filterable</code>  <br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>description  <br /><code>String</code></td>\n<td>Body/Content of the Email Template</td>\n<td><code>Filterable</code>  <br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>subject  <br /><code>String</code></td>\n<td>Subject of the Email Template</td>\n<td></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Email Template was created</td>\n<td><code>Readonly</code>  <br /> <code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>updatedDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Email Template was updated</td>\n<td><code>Readonly</code>  <br /> <code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Name of the Email Template</td>\n<td><code>Filterable</code>  <br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>emailTemplateType  <br /><code>String</code></td>\n<td>Type of the Email Template</td>\n<td></td>\n</tr>\n<tr>\n<td>convertedLinksContent  <br /><code>String</code></td>\n<td>HTML format of the Email Template description</td>\n<td></td>\n</tr>\n<tr>\n<td>addEmailSignatureFlag  <br /><code>String</code></td>\n<td>A flag to have email signature to be attached with Email Template. Values could be Y / N</td>\n<td></td>\n</tr>\n<tr>\n<td>category  <br /><code>String</code></td>\n<td>Category of the Email Template</td>\n<td></td>\n</tr>\n<tr>\n<td>crmEmailTemplateId  <br /><code>String</code></td>\n<td>CRM Email Template ID of the Email Template</td>\n<td></td>\n</tr>\n<tr>\n<td>emailTemplateIdentifier  <br /><code>String</code></td>\n<td>Identifier of the Email Template</td>\n<td></td>\n</tr>\n<tr>\n<td>touchSchedulerIdentifier  <br /><code>String</code></td>\n<td>Touch Scheduler Identifier of the Email Template</td>\n<td></td>\n</tr>\n<tr>\n<td>status  <br /><code>Boolean</code></td>\n<td>Status of the Email Template</td>\n<td><code>Filterable</code>  <br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>sharedType  <br /><code>String</code></td>\n<td>Shared Type of the Email Template</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>sharedGroups  <br /><code> Array of String</code></td>\n<td>Groups the Email Template is shared with</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>sent  <br /><code>Integer</code></td>\n<td>Number of emails sent with the corresponding email template</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>bounced  <br /><code>Integer</code></td>\n<td>Number of emails bounced with the corresponding email template</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>opened  <br /><code>Integer</code></td>\n<td>Number of emails opened with the corresponding email template</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>replied  <br /><code>Integer</code></td>\n<td>Number of emails replied with the corresponding email template</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>linksClicked  <br /><code>Integer</code></td>\n<td>Number of times the link in emails clicked with the corresponding email template</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>failed  <br /><code>Integer</code></td>\n<td>Number of emails failed to send with the corresponding email template</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>outComes  <br /><code>JSON</code></td>\n<td>Outcomes of emails attached with the corresponding email template</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createduser <br /><code>Array of Objects</code></td>\n<td>Associated user of the email template</td>\n<td></td>\n</tr>\n<tr>\n<td>cadence <br /><code>Array of Objects</code></td>\n<td>Associated cadence of the email template</td>\n<td></td>\n</tr>\n<tr>\n<td>touch <br /><code>Array of Objects</code></td>\n<td>Associated touch of the email template</td>\n<td></td>\n</tr>\n<tr>\n<td>attachment <br /><code>Array of Objects</code></td>\n<td>Associated attachment of the email template</td>\n<td></td>\n</tr>\n<tr>\n<td>tag <br /><code>Array of Objects</code></td>\n<td>The associated tag of the email template</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"471559ff-3379-4617-9085-fc1e24f8cbaf","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Fields","item":[{"name":"Field List","id":"468474da-1812-4f72-93eb-849411ef8bdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/fields","description":"<p>To retrieve a list of fields available across the tabs in the Cadence application.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","fields"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"fc5b4f0b-afa3-4332-93ba-cd5651e6789c","name":"Fields List","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":"https://{{koncert_cadence_api}}/api/v2/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 07:48:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 30098,\n            \"createdUser\": null,\n            \"modifiedUser\": null,\n            \"name\": \"firstEmailedDate\",\n            \"clFieldName\": \"first_emailed_date\",\n            \"mandatory\": true,\n            \"implicit\": true,\n            \"readonly\": true,\n            \"trucadence\": true,\n            \"powerdialer\": false,\n            \"hidden\": false,\n            \"maxLength\": null,\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\n            \"modifiedDateTime\": null,\n            \"label\": \"First Emailed Date\",\n            \"controlType\": \"date\",\n            \"dataType\": \"date\",\n            \"associations\": {\n                \"fieldMapping\": [\n                    {\n                        \"id\": 32167\n                    },\n                    {\n                        \"id\": 32195\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 46,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"468474da-1812-4f72-93eb-849411ef8bdd"},{"name":"Field","id":"e53690d3-1679-413f-9791-77c59e6e8009","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/fields/:id","description":"<p>To retrieve a specific field based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","fields",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"bf2e582e-939a-40e1-a9ae-cfe4018d4974","name":"Field","originalRequest":{"method":"GET","header":[],"url":"/api/v2/fields/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:04:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 30143,\n            \"createdUser\": null,\n            \"modifiedUser\": null,\n            \"name\": null,\n            \"clFieldName\": \"custom_numeric_1\",\n            \"mandatory\": false,\n            \"implicit\": false,\n            \"readonly\": false,\n            \"trucadence\": true,\n            \"powerdialer\": true,\n            \"hidden\": false,\n            \"maxLength\": 100,\n            \"createdDateTime\": \"2020-08-19T14:24:35Z\",\n            \"modifiedDateTime\": null,\n            \"label\": \"numericCF\",\n            \"controlType\": \"numeric\",\n            \"dataType\": \"numeric\",\n            \"associations\": {\n                \"fieldMapping\": [\n                    {\n                        \"id\": 32243\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"e53690d3-1679-413f-9791-77c59e6e8009"},{"name":"Third Party Fields","id":"0d3464f0-0450-407d-b323-9299b3b39d3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌/{{koncert_cadence_api}}/api/v2/fields/crm?recordType=Contact","description":"<p>To retrieve a list of fields associated with the Third party application.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","fields","crm"],"host":["https"],"query":[{"key":"recordType","value":"Contact"}],"variable":[]}},"response":[],"_postman_id":"0d3464f0-0450-407d-b323-9299b3b39d3a"},{"name":"Field","id":"eb8a7db0-74bf-4623-b27a-09864ad2cdd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"label\": \"API Custom Field-cy\",\r\n    \"controlType\": \"boolean\",\r\n    \"maxLength\": 10,\r\n    \"mandatory\": true,\r\n    \"readOnly\": true,\r\n    \"cadence\": true,\r\n    \"dialer\": true,\r\n    \"hidden\": false,\r\n    \"sortable\": true,\r\n    \"dialingAgentEditable\": true,\r\n    \"dialingAgentViewable\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/fields","description":"<p>To create a new field.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","fields"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"100f4758-86cd-45a0-bac2-8aec605c88ea","name":"Create Field","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"label\": \"API Custom Field-cy\",\r\n    \"controlType\": \"text\",\r\n    \"maxLength\": 10,\r\n    \"mandatory\": true,\r\n    \"readOnly\": true,\r\n    \"cadence\": true,\r\n    \"dialer\": true,\r\n    \"hidden\": false,\r\n    \"sortable\": true,\r\n    \"dialingAgentEditable\": true,\r\n    \"dialingAgentViewable\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{domain}}/api/v2/fields"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 58900,\n            \"name\": \"customVarchar13\",\n            \"mandatory\": true,\n            \"implicit\": false,\n            \"readonly\": true,\n            \"cadence\": true,\n            \"dialer\": true,\n            \"hidden\": false,\n            \"maxLength\": 10,\n            \"createdDateTime\": \"2022-01-25T12:41:53Z\",\n            \"modifiedDateTime\": \"2022-01-25T12:45:19Z\",\n            \"label\": \"API Custom Field-cy\",\n            \"controlType\": \"text\",\n            \"dataType\": \"text\",\n            \"sortable\": true,\n            \"dialingAgentEditable\": true,\n            \"dialingAgentViewable\": true,\n            \"associations\": {\n                \"createdUser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"modifiedUser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"eb8a7db0-74bf-4623-b27a-09864ad2cdd7"},{"name":"Field","id":"27980e61-bd4d-4ad6-990d-0157e0a34677","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"label\": \"API Custom Field-cy\",\r\n    \"controlType\": \"boolean\",\r\n    \"maxLength\": 10,\r\n    \"mandatory\": true,\r\n    \"readOnly\": true,\r\n    \"cadence\": true,\r\n    \"dialer\": true,\r\n    \"hidden\": false,\r\n    \"sortable\": true,\r\n    \"dialingAgentEditable\": true,\r\n    \"dialingAgentViewable\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/fields/:id","description":"<p>To edit and update an existing field information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","fields",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"2b0dad4a-8742-477d-9ad0-58db40677afb","name":"Update Field","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"label\":\"API Custom Field-cy\",\r\n    \"controlType\": \"text\",\r\n    \"maxLength\": 100,\r\n    \"mandatory\": false,\r\n    \"readOnly\": false,\r\n    \"cadence\": false,\r\n    \"dialer\": false,\r\n    \"hidden\": false,\r\n    \"sortable\": false,\r\n    \"dialingAgentEditable\": false,\r\n    \"dialingAgentViewable\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{domain}}/api/v2/fields"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 58900,\n            \"name\": \"customVarchar13\",\n            \"mandatory\": false,\n            \"implicit\": false,\n            \"readonly\": false,\n            \"cadence\": false,\n            \"dialer\": false,\n            \"hidden\": false,\n            \"maxLength\": 100,\n            \"createdDateTime\": \"2022-01-25T12:41:53Z\",\n            \"modifiedDateTime\": \"2022-01-25T12:45:19Z\",\n            \"label\": \"API Custom Field-cy\",\n            \"controlType\": \"text\",\n            \"dataType\": \"text\",\n            \"sortable\": false,\n            \"dialingAgentEditable\": false,\n            \"dialingAgentViewable\": false,\n            \"associations\": {\n                \"createdUser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"modifiedUser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"27980e61-bd4d-4ad6-990d-0157e0a34677"},{"name":"Field","id":"4c27b448-c373-4441-9415-169bd2f774f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/fields/:id","description":"<p>To delete an existing field.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","fields",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"03bec4f8-2de7-4028-a0c8-969bf5bb18f1","name":"Delete Field","originalRequest":{"method":"DELETE","header":[],"url":"http://{{domain}}/cl-trucadence-service/api/v2/fields/58533"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"4c27b448-c373-4441-9415-169bd2f774f3"}],"id":"9916a571-492c-438a-b63c-31dda0ac275b","description":"<p>Fields can be entered, marked, and selected across the Cadence application. It could be text, boolean, date, integer, timestamp, email, phone, numeric, textarea, dropdown and checkbox.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Field ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>cadence<br /><code>Boolean</code></td>\n<td>Whether this field can be used for Cadence</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>controlType<br /><code>enum</code></td>\n<td>Will be used in UI by the system to show the field data to Users. Allowed values are text, textarea, select, phone, numeric, date, timestamp, integer, boolean and email</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>createdDateTime<br /><code>Date-Time</code></td>\n<td>Date and time when the field was created</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>dataType<br /><code>enum</code></td>\n<td>Type of data this field should allow. Allowed values are text, boolean, date, integer, timestamp, email, phone, numeric, textarea and select</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>dialer<br /><code>Boolean</code></td>\n<td>Whether this field can be used for Dialers</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>hidden<br /><code>Boolean</code></td>\n<td>Fields marked as hidden will not be shown to Users in UI</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>implicit<br /><code>Boolean</code></td>\n<td>Will be false for the custom fields created using API and true for the fields created by system</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>label<br /><code>String</code></td>\n<td>Label of the field</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>mandatory<br /><code>Boolean</code></td>\n<td>Whether the field is mandatory or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>maxLength<br /><code>Integer</code></td>\n<td>Maximum number of characters allowed in a field</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedDateTime<br /><code>Date-Time</code></td>\n<td>Date and time when the field was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name<br /><code>String</code></td>\n<td>Name of the field</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>readonly<br /><code>Boolean</code></td>\n<td>Whether the field is read only or not</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>sortable<br /><code>Boolean</code></td>\n<td>Whether this field can be used for sorting or not in UI.  If True, then sorting is allowed and if False, then sorting is not allowed</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser<br /><code>Array of Objects</code></td>\n<td>ID of the user who created the field</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedUser<br /><code>Array of Objects</code></td>\n<td>ID of the user who modified the field</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>fieldDropdownValues<br /><code>Array of Objects</code></td>\n<td>Field dropdown values information associated with the field</td>\n<td></td>\n</tr>\n<tr>\n<td>fieldMappings<br /><code>Array of Objects</code></td>\n<td>Field mappings information associated with the field</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9916a571-492c-438a-b63c-31dda0ac275b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Field Dropdown","item":[{"name":"Field Dropdown List","id":"7688ea8a-4780-486a-8978-beeb0f74991a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/fieldDropdownValues","description":"<p>To retrieve the list of Field dropdown values.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","fieldDropdownValues"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"95e72eb4-7598-433a-ba3b-4b80977c19b5","name":"Field drop down List","originalRequest":{"method":"GET","header":[],"url":"http://{{domain}}/cl-trucadence-service/api/v2/fieldDropdownValues"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 421,\n            \"value\": \"value1\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 59759\n                    }\n                ],\n                \"fieldMappings\": [\n                    {\n                        \"id\": 71134\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 422,\n            \"value\": \"value2\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 59759\n                    }\n                ],\n                \"fieldMappings\": [\n                    {\n                        \"id\": 71134\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 423,\n            \"value\": \"value3\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 59759\n                    }\n                ],\n                \"fieldMappings\": [\n                    {\n                        \"id\": 71134\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 3,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"7688ea8a-4780-486a-8978-beeb0f74991a"},{"name":"Field Dropdown","id":"5d18a6bd-575f-4a96-ad7a-b97693137a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/fieldDropdownValues/:id","description":"<p>To retrieve a specific Field dropdown value based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","fieldDropdownValues",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"0e3dc004-9c52-4ec7-a569-0835e039626d","name":"Field drop down","originalRequest":{"method":"GET","header":[],"url":"http://{{domain}}/cl-trucadence-service/api/v2/fieldDropdownValues/421"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 421,\n            \"value\": \"value1\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 59759\n                    }\n                ],\n                \"fieldMappings\": [\n                    {\n                        \"id\": 71134\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"5d18a6bd-575f-4a96-ad7a-b97693137a33"}],"id":"8b0f4c36-9d2c-4457-8e82-6f0931af5a6b","description":"<p>If a field controlType is selected then it's mandatory to provide list of allowed values.</p>\n<p>Koncert validates the allowed value for the field using the Field drop down values.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>ID of the Field Dropdown</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>value  <br /><code>String</code></td>\n<td>Dropdown value of the field mapping</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>field  <br /><code>Array of Objects</code></td>\n<td>Field information associated with the field dropdown</td>\n<td></td>\n</tr>\n<tr>\n<td>fieldMappings  <br /><code>Array of Objects</code></td>\n<td>Field mappings information associated with the field dropdown values</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8b0f4c36-9d2c-4457-8e82-6f0931af5a6b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Field Mapping","item":[{"name":"Field Mapping List","id":"23db09ec-3283-4b7c-b279-fd0b5d90c31e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/fieldMappings","description":"<p>To retrieve a list of field mappings available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","fieldMappings"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"5f2eb820-6e21-4530-9958-c981b9ed9cc9","name":"Field Mapping List","originalRequest":{"method":"GET","header":[],"url":"http://{{domain}}/cl-trucadence-service/api/v2/fieldMappings"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 27812,\n            \"relationship\": null,\n            \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\",\n            \"syncRuleToTrucadence\": \"Use CRM data to update TruCadence only if the TruCadence field is empty\",\n            \"crmFieldName\": null,\n            \"crmReportFieldName\": null,\n            \"crmActivityReportFieldName\": null,\n            \"salesloftCustomField\": false,\n            \"mailmergeValueMandatory\": false,\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\n            \"modifiedDateTime\": null,\n            \"crmType\": \"salesforce\",\n            \"recordType\": \"Contact\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 27814\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 27821,\n            \"relationship\": null,\n            \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\",\n            \"syncRuleToTrucadence\": \"Use CRM data to update TruCadence only if the TruCadence field is empty\",\n            \"crmFieldName\": null,\n            \"crmReportFieldName\": null,\n            \"crmActivityReportFieldName\": null,\n            \"salesloftCustomField\": false,\n            \"mailmergeValueMandatory\": false,\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\n            \"modifiedDateTime\": null,\n            \"crmType\": \"salesforce\",\n            \"recordType\": \"Lead\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 27814\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 65,\n        \"limit\": 2,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"23db09ec-3283-4b7c-b279-fd0b5d90c31e"},{"name":"Field Mapping","id":"3b60233e-2721-43b4-83ae-fde60b19d704","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/fieldMappings/:id","description":"<p>To retrieve a specific field mapping based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","fieldMappings",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"7ad15023-99a7-41f8-8b1a-8a17e3b2cbb4","name":"Field Mapping","originalRequest":{"method":"GET","header":[],"url":"http://{{domain}}/cl-trucadence-service/api/v2/fieldMappings/71131"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 71131,\n            \"relationship\": null,\n            \"syncRuleFromTrucadence\": \"Do NOT update CRM\",\n            \"syncRuleToTrucadence\": \"Use CRM data to update TruCadence only if the TruCadence field is empty\",\n            \"crmFieldName\": null,\n            \"crmReportFieldName\": null,\n            \"crmActivityReportFieldName\": null,\n            \"salesloftCustomField\": false,\n            \"mailmergeValueMandatory\": false,\n            \"createdDateTime\": \"2022-02-02T13:22:31Z\",\n            \"modifiedDateTime\": \"2022-02-02T13:53:54Z\",\n            \"crmType\": \"salesforce\",\n            \"recordType\": \"Lead\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 53698\n                    }\n                ],\n                \"createdUser\": [\n                    {\n                        \"id\": 8380\n                    }\n                ],\n                \"modifiedUser\": [\n                    {\n                        \"id\": 8380\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"3b60233e-2721-43b4-83ae-fde60b19d704"}],"id":"367bf4e2-0db7-4bb9-8b0b-334fd9619b30","description":"<p>Field Mappings are used to map the any Cadence fields with CRM fields for synchronization. The information provided in Cadence will be updated in the CRM automatically and vice-versa.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Field Mapping ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>createdDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the field mapping was created</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmActivityReportFieldName  <br /><code>String</code></td>\n<td>CRM Activity Report Field name of the mapping</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmFieldName  <br /><code>String</code></td>\n<td>CRM Field name of the mapping</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>crmReportFieldName  <br /><code>String</code></td>\n<td>CRM Report Field name of the mapping</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmType  <br /><code>enum</code></td>\n<td>CRM type of the field mapping. Allowed values are hubspot, mscrmonpremise, mscrmstandard, netsuite, oracleondemand, outreach, salesforce, salesloft, standalone and zoho</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>mailmergeValueMandatory  <br /><code>Boolean</code></td>\n<td>Will be true for the fields created for mail merge and false for the non mail merge</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the field mapping was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>recordType  <br /><code>enum</code></td>\n<td>Record type of the field mapping. It could be Contact or Lead or Prospect</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>relationship  <br /><code>String</code></td>\n<td>Relationship of the field mapping</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>salesloftCustomField  <br /><code>Boolean</code></td>\n<td>Will be true for the fields created for salesloft and false for the non salesloft CRM type</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>syncRuleFromCadence  <br /><code>enum</code></td>\n<td>Sync rule to update the data into CRM from Cadence. Allowed values are <code>Use TruCadence data to update CRM</code>, <code>Use TruCadence data to update CRM only if CRM field is empty</code>, <code>Use most recent data from either system be used to update the other</code> and <code>Do NOT update CRM</code>.</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>syncRuleToCadence  <br /><code>enum</code></td>\n<td>Sync rule to update the data into Cadence from CRM. Allowed values are <code>Use CRM data to update TruCadence</code>, <code>Use CRM data to update TruCadence only if the TruCadence field is empty</code>, <code>Use most recent data from either system be used to update the other</code> and <code>Do NOT update TruCadence</code>.</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser  <br /><code>Array of Objects</code></td>\n<td>User who created the field mapping</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedUser  <br /><code>Array of Objects</code></td>\n<td>User who modified the field mapping</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>field  <br /><code>Array of Objects</code></td>\n<td>Field mappings information associated with the field</td>\n<td></td>\n</tr>\n<tr>\n<td>fieldDropdownValues  <br /><code>Array of Objects</code></td>\n<td>Field dropdown values information associated with the field mapping</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"367bf4e2-0db7-4bb9-8b0b-334fd9619b30","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Filter Criteria","item":[{"name":"Filter Criteria","id":"bd662a7c-768b-43a8-9edb-222a885e0d30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/filterCriterias/:id","description":"<p>To retrieve a specific filter based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"766f834a-4d9f-45db-8577-d39fce5422ff","id":"766f834a-4d9f-45db-8577-d39fce5422ff","name":"Filter Criteria","type":"folder"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","filterCriterias",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"3a55f8ba-2be4-4d86-b47d-9196a0d60616","name":"Filter Criteria","originalRequest":{"method":"GET","header":[],"url":"/api/v2/filterCriterias/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:39:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 55,\n            \"name\": \"group filter\",\n            \"moduleName\": \"prospects\",\n            \"sharedType\": \"none\",\n            \"logicalOperator\": \"OR\",\n            \"modifiedDate\": \"2020-09-07T16:01:22.222405\",\n            \"sharedUserIds\": null,\n            \"sharedGroups\": null,\n            \"associations\": {\n                \"criteria\": [\n                    {\n                        \"id\": 237\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"bd662a7c-768b-43a8-9edb-222a885e0d30"},{"name":"Filter Criteria List","id":"3c6d9341-ea04-45a4-8a05-a253691ed566","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/filterCriterias","description":"<p>To retrieve a list of filter criteria available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"766f834a-4d9f-45db-8577-d39fce5422ff","id":"766f834a-4d9f-45db-8577-d39fce5422ff","name":"Filter Criteria","type":"folder"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","filterCriterias"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"00a681cb-4284-421f-a868-e255f4ca4942","name":"Filter Criteria List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/filterCriterias"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:58:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 33,\n            \"name\": \"Filter test\",\n            \"moduleName\": \"prospects\",\n            \"sharedType\": \"none\",\n            \"logicalOperator\": \"AND\",\n            \"modifiedDate\": \"2020-09-30T07:48:38.562\",\n            \"sharedUserIds\": [\n                5411\n            ],\n            \"sharedGroups\": null,\n            \"associations\": {\n                \"criteria\": [\n                    {\n                        \"id\": 224\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        },\n        \n        {\n            \"id\": 55,\n            \"name\": \"group filter\",\n            \"moduleName\": \"prospects\",\n            \"sharedType\": \"none\",\n            \"logicalOperator\": \"OR\",\n            \"modifiedDate\": \"2020-09-07T16:01:22.222405\",\n            \"sharedUserIds\": null,\n            \"sharedGroups\": null,\n            \"associations\": {\n                \"criteria\": [\n                    {\n                        \"id\": 237\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n        \n    ],\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"3c6d9341-ea04-45a4-8a05-a253691ed566"},{"name":"Filter Criteria","id":"19b0bf1f-cc9d-43f3-ae64-9df1d28c7104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"filter by contact name\",\r\n    \"logicalOperator\": \"AND\",\r\n    \"filterCriteria\": [\r\n        {\r\n          \r\n            \"operator\": \"!=\",\r\n            \"fields\": {\r\n                \"id\": 35120\r\n            },\r\n            \"criteriaValue\": [\r\n                \"a\"\r\n            ]\r\n        }\r\n    ],\r\n    \"sharedType\": \"none\",\r\n    \"sharedGroups\": [],\r\n    \"sharedUserIds\": [],\r\n    \"moduleName\": \"prospects\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/filterCriterias","description":"<p>To add a new filter criteria.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"766f834a-4d9f-45db-8577-d39fce5422ff","id":"766f834a-4d9f-45db-8577-d39fce5422ff","name":"Filter Criteria","type":"folder"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","filterCriterias"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"36777a4b-e7a5-4420-88ee-a0b8c5d0352c","name":"Add Filter Criteria","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"filter by contact name\",\r\n    \"logicalOperator\": \"AND\",\r\n    \"filterCriteria\": [\r\n        {\r\n          \r\n            \"operator\": \"!=\",\r\n            \"fields\": {\r\n                \"id\": 35120\r\n            },\r\n            \"criteriaValue\": [\r\n                \"a\"\r\n            ]\r\n        }\r\n    ],\r\n    \"sharedType\": \"none\",\r\n    \"sharedGroups\": [],\r\n    \"sharedUserIds\": [],\r\n    \"moduleName\": \"prospects\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/filterCriterias"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:17:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 261,\n            \"name\": \"filter by contact name\",\n            \"moduleName\": \"prospects\",\n            \"sharedType\": \"none\",\n            \"logicalOperator\": \"AND\",\n            \"modifiedDate\": \"2020-12-30T09:17:11\",\n            \"sharedUserIds\": [\n                7424\n            ],\n            \"sharedGroups\": null,\n            \"associations\": {\n                \"criteria\": [\n                    {\n                        \"id\": 746\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"19b0bf1f-cc9d-43f3-ae64-9df1d28c7104"},{"name":"Filter Criteria","id":"9edfbccd-0502-40c0-88fc-889ae2219461","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"filter by name contains 'a' \",\r\n    \"logicalOperator\": \"AND\",\r\n    \"filterCriteria\": [\r\n        {\r\n            \"operator\": \"=\",\r\n            \"fields\": {\r\n                \"id\": 35120\r\n            },\r\n            \"criteriaValue\": [\r\n                \"b\"\r\n            ]\r\n        }\r\n    ],\r\n    \"sharedType\": \"allUsers\",\r\n    \"sharedGroups\": [\r\n       \r\n    ],\r\n    \"sharedUserIds\": [],\r\n    \"moduleName\": \"prospects\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/filterCriterias/:id","description":"<p>To edit and update an existing filter criteria details.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"766f834a-4d9f-45db-8577-d39fce5422ff","id":"766f834a-4d9f-45db-8577-d39fce5422ff","name":"Filter Criteria","type":"folder"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","filterCriterias",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"6dc218e6-ac80-4d6a-889c-0035b1512a34","name":"Edit Filter Criteria ","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"filter by name contains 'a' \",\r\n    \"logicalOperator\": \"AND\",\r\n    \"filterCriteria\": [\r\n        {\r\n            \"operator\": \"=\",\r\n            \"fields\": {\r\n                \"id\": 35120\r\n            },\r\n            \"criteriaValue\": [\r\n                \"b\"\r\n            ]\r\n        }\r\n    ],\r\n    \"sharedType\": \"allUsers\",\r\n    \"sharedGroups\": [\r\n       \r\n    ],\r\n    \"sharedUserIds\": [],\r\n    \"moduleName\": \"prospects\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/filterCriterias/96"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:42:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 96,\n            \"name\": \"filter by name contains 'a' \",\n            \"moduleName\": \"prospects\",\n            \"sharedType\": \"allUsers\",\n            \"logicalOperator\": \"AND\",\n            \"modifiedDate\": \"2020-12-30T09:42:29\",\n            \"sharedUserIds\": [\n                7662,\n                7844,\n                7951,\n                7660,\n                7432,\n                7423,\n                7910,\n                7661,\n                7424,\n                7431\n            ],\n            \"sharedGroups\": [],\n            \"associations\": {\n                \"criteria\": [\n                    {\n                        \"id\": 749\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"9edfbccd-0502-40c0-88fc-889ae2219461"},{"name":"Filter Criteria","id":"fb693347-dd62-4bb0-aefe-a614f372939c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/filterCriterias/:id","description":"<p>To delete an existing filter criteria.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"766f834a-4d9f-45db-8577-d39fce5422ff","id":"766f834a-4d9f-45db-8577-d39fce5422ff","name":"Filter Criteria","type":"folder"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","filterCriterias",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"fcdef145-2137-4542-af68-4b941d77ca81","name":"Delete Filter Criteria","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/filterCriterias/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:50:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"fb693347-dd62-4bb0-aefe-a614f372939c"}],"id":"766f834a-4d9f-45db-8577-d39fce5422ff","description":"<p>Filter with preset criteria retrieves prospects that match the criteria.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Fiter ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name<br /><code>String</code></td>\n<td>Name of the filter</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>moduleName<br /><code>String</code></td>\n<td>Module name of the filter</td>\n<td></td>\n</tr>\n<tr>\n<td>sharedType<br /><code>String</code></td>\n<td>Shared type of the filter. Could be any of the  following 'none' or 'allUsers' or 'specificGroupOfUsers' or specificGroupOfTeams'</td>\n<td></td>\n</tr>\n<tr>\n<td>logicalOperator<br /><code>String</code></td>\n<td>Operator denotes if the filter has more than 2 criteria</td>\n<td></td>\n</tr>\n<tr>\n<td>modifiedDate<br /><code>Date-Time</code></td>\n<td>Date and time when the filter was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>sharedGroups<br /><code>String array</code></td>\n<td>Name of the shared teams</td>\n<td></td>\n</tr>\n<tr>\n<td>sharedUserIds<br /><code>Integer array</code></td>\n<td>Shared users ID's</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filterCriteria<br /><code>Array of Objects</code></td>\n<td>Filter criteria information asssociated with the filter info</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"10b1f8f1-58c1-4284-a4cc-f01a54ff59f8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"625ba1c2-da8b-400e-b519-982cc89f9033","type":"text/javascript","exec":[""]}}],"_postman_id":"766f834a-4d9f-45db-8577-d39fce5422ff"},{"name":"Home page dashboard","item":[{"name":"Overall Stats","id":"4182dcad-bb60-409c-a70e-8997b3743889","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/dashboards/overallstats","description":"<p>To retrieve overall statistics for the touches (Emails, Calls and Texts).</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","dashboards","overallstats"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"31c7e9c7-5944-4032-bb62-eeaa3be2ed89","name":"Over all stats","originalRequest":{"method":"GET","header":[],"url":"/api/v2/dashboards/overallstats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 14:18:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"EmailStats\",\n            \"sent\": 50,\n            \"opened\": 13,\n            \"clicked\": 1,\n            \"replied\": 5,\n            \"bounced\": 49\n        },\n        {\n            \"name\": \"CallStats\",\n            \"positiveConversation\": 10,\n            \"others\": 77,\n            \"badData\": 13\n        },\n        {\n            \"name\": \"TextStats\",\n            \"sent\": 0,\n            \"received\": 0\n        }\n    ]\n}"}],"_postman_id":"4182dcad-bb60-409c-a70e-8997b3743889"},{"name":"Activity Info","id":"4fb85899-c1a3-42cf-b1e2-7c194ab1b8f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/dashboards/activityInfo","description":"<p>To retrieve an Activity Information on the analysis of Prospects, Cadences, and Templates.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","dashboards","activityInfo"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"958a90f1-57d0-4d63-8fc3-eb92e8e372f4","name":"Activity Info","originalRequest":{"method":"GET","header":[],"url":"/api/v2/dashboards/activityInfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 14:36:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"Edwin Antony\",\n            \"calls\": 112,\n            \"callConnect\": 99,\n            \"conversations\": 99,\n            \"ratePercent\": 88\n        },\n        {\n            \"name\": \"Edward\",\n            \"calls\": 3,\n            \"callConnect\": 3,\n            \"conversations\": 3,\n            \"ratePercent\": 100\n        },\n        {\n            \"name\": \"Jeff\",\n            \"calls\": 2,\n            \"callConnect\": 2,\n            \"conversations\": 2,\n            \"ratePercent\": 100\n        }\n    ]\n}"}],"_postman_id":"4fb85899-c1a3-42cf-b1e2-7c194ab1b8f7"},{"name":"Activity Metrics","id":"b07d4eef-bd7f-418e-9e80-8316541b187c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/dashboards/activityMetrics","description":"<p>To retrieve an activity metrics for Emails, Calls, Social and LinkedIn touches.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","dashboards","activityMetrics"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"e899ce74-80f3-45f0-93da-9f1fac82c846","name":"Activity Metrics","originalRequest":{"method":"GET","header":[],"url":"/api/v2/dashboards/activityMetrics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 15:04:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"activityMetrics\": [\n                {\n                    \"date\": \"2020-12-20\",\n                    \"email\": \"0\",\n                    \"call\": \"0\",\n                    \"text\": \"0\",\n                    \"others\": \"0\"\n                },\n                {\n                    \"date\": \"2020-12-21\",\n                    \"email\": \"0\",\n                    \"call\": \"0\",\n                    \"text\": \"0\",\n                    \"others\": \"0\"\n                },\n                {\n                    \"date\": \"2020-12-22\",\n                    \"email\": \"3\",\n                    \"call\": \"1\",\n                    \"text\": \"0\",\n                    \"others\": \"1\"\n                },\n                {\n                    \"date\": \"2020-12-23\",\n                    \"email\": \"7\",\n                    \"call\": \"0\",\n                    \"text\": \"0\",\n                    \"others\": \"0\"\n                },\n                {\n                    \"date\": \"2020-12-24\",\n                    \"email\": \"3\",\n                    \"call\": \"0\",\n                    \"text\": \"0\",\n                    \"others\": \"0\"\n                },\n                {\n                    \"date\": \"2020-12-25\",\n                    \"email\": \"0\",\n                    \"call\": \"0\",\n                    \"text\": \"0\",\n                    \"others\": \"0\"\n                },\n                {\n                    \"date\": \"2020-12-26\",\n                    \"email\": \"0\",\n                    \"call\": \"1\",\n                    \"text\": \"0\",\n                    \"others\": \"0\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"b07d4eef-bd7f-418e-9e80-8316541b187c"},{"name":"Dials Metrics","id":"3c655574-2a2c-44af-8dd3-0eda5af0c301","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/dashboards/dialsMetrics","description":"<p>To retrieve the metrics for the dialing session (dials made, valid connects and Talk time).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","dashboards","dialsMetrics"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"1f438b34-a69e-45d2-92f9-2b5f0c0c9886","name":"Dials Metrics","originalRequest":{"method":"GET","header":[],"url":"/api/v2/dashboards/dialsMetrics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 16:06:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"userId\": 6717,\n            \"userName\": \"Edwin Antony\",\n            \"dials\": 46\n        },\n        {\n            \"userId\": 6723,\n            \"userName\": \"Jeff\",\n            \"dials\": 5\n        },\n        {\n            \"userId\": 6719,\n            \"userName\": \"Edward\",\n            \"dials\": 3\n        }\n    ]\n}"}],"_postman_id":"3c655574-2a2c-44af-8dd3-0eda5af0c301"}],"id":"0dbc9c6b-d30c-4a94-adf4-0305a1b4f79c","description":"<p>Dashboard provides both statistical and graphical displays of overall statistics, activity information, activity metrics, and future tasks.</p>\n","_postman_id":"0dbc9c6b-d30c-4a94-adf4-0305a1b4f79c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Image","item":[{"name":"Image","id":"517d9ece-48f7-4af0-a585-6839bf9b20ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/C:/Users/Sarath/Pictures/photo-1501686962565-1350ab98237f.jpg"}]},"url":"https:‌//{{koncert_cadence_api}}/api/v2/emails/images","description":"<p>To upload a new image into the Template.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","emails","images"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"bf0707c2-2edb-4716-b52e-40b5e47ac650","name":"Upload Image","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/C:/Users/Sarath/Pictures/photo-1501686962565-1350ab98237f.jpg"}]},"url":"/api/v2/emails/images"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:18:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"fileName\": \"1891_5411_2020-12-30T11:18:28_photo-1501686962565-1350ab98237f.jpg\",\n    \"uploaded\": 1,\n    \"url\": \"/public/emails/images?fileName=8D574512B2CF8DE0B1653ED0C6BDC3A2CD72EF9C93AE00AE218F2065AC2B0BCCBBC26A39870EFA94B6B5A0131AB610575F8BD1FD90A487AF3515F1C7E42458FC18C00F7B3EBACDEB\"\n}"}],"_postman_id":"517d9ece-48f7-4af0-a585-6839bf9b20ae"},{"name":"Image","id":"da5139c1-8f61-44cc-b23a-437f9f3d250d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌/{{koncert_cadence_api}}/api/v2/public/emails/images?fileName=8D574512B2CF8DE0B1653ED0C6BDC3A2CD72EF9C93AE00AE218F2065AC2B0BCCBBC26A39870EFA94B6B5A0131AB610575F8BD1FD90A487AF3515F1C7E42458FC18C00F7B3EBACDEB","description":"<p>To retrieve and view a specific image used in the Template.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","public","emails","images"],"host":["https"],"query":[{"key":"fileName","value":"8D574512B2CF8DE0B1653ED0C6BDC3A2CD72EF9C93AE00AE218F2065AC2B0BCCBBC26A39870EFA94B6B5A0131AB610575F8BD1FD90A487AF3515F1C7E42458FC18C00F7B3EBACDEB"}],"variable":[]}},"response":[{"id":"59da1ee4-47a8-4a47-8b9b-6fed2dd2bbc3","name":"View Image","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{sub-domain}}/api/v2/public/emails/images?fileName=8D574512B2CF8DE0B1653ED0C6BDC3A2CD72EF9C93AE00AE218F2065AC2B0BCCBBC26A39870EFA94B6B5A0131AB610575F8BD1FD90A487AF3515F1C7E42458FC18C00F7B3EBACDEB","host":["{{sub-domain}}"],"path":["api","v2","public","emails","images"],"query":[{"key":"fileName","value":"8D574512B2CF8DE0B1653ED0C6BDC3A2CD72EF9C93AE00AE218F2065AC2B0BCCBBC26A39870EFA94B6B5A0131AB610575F8BD1FD90A487AF3515F1C7E42458FC18C00F7B3EBACDEB"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"da5139c1-8f61-44cc-b23a-437f9f3d250d"}],"id":"2e21ca09-4ddd-4c82-8fa3-eb5e6ec6be6c","description":"<p>An image could be a company logo or business presentation image that can be utilized as a prospecting tool in the Email Templates.</p>\n","_postman_id":"2e21ca09-4ddd-4c82-8fa3-eb5e6ec6be6c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Mailings","item":[{"name":"Mailings List","id":"3bb1a779-b0f9-4798-993f-5949321df982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/cadence/v2/mailings","description":"<p>To retrieve a list of mailings.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["cadence","v2","mailings"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"cd31d1c9-a31d-4728-a487-62633d74f609","name":"Get Mailings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_cadence_api}}/cadence/v2/mailings","protocol":"https","host":["{{koncert_cadence_api}}"],"path":["cadence","v2","mailings"],"query":[{"key":"id","value":"352032","disabled":true}]}},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 352031,\n        \"toAddress\": \"rvenkatesan@gembrill.com\",\n        \"sentFlag\": true,\n        \"sentDatetime\": \"2018-09-10T04:00:06\",\n        \"bouncedFlag\": null,\n        \"bouncedReason\": null,\n        \"bouncedDatetime\": null,\n        \"openedCount\": null,\n        \"openedDatetime\": null,\n        \"linkClickedCount\": null,\n        \"linkClickedDatetime\": null,\n        \"crmSyncFlag\": false,\n        \"repliedFlag\": null,\n        \"repliedMsg\": null,\n        \"title\": \"Sales Manager\",\n        \"emailBody\": \"ff<br/><br/><p style=\\\"font-family:Verdana,Arial,sans-serif;font-size:14px\\\">Thanks & Regards<br />\\nSarath </p>\",\n        \"emailSubject\": \"ghg\",\n        \"repliedDateTime\": null,\n        \"emailThreadId\": \"AdRIu2ay+CoeIdf9QNm85x1yy9w0jg==\",\n        \"ccAddress\": \"\",\n        \"bccAddress\": \"\",\n        \"emailBodyWithoutTracking\": \"{}\",\n        \"fromAddress\": \"smathi@gembrill.com\"\n    }\n]"}],"_postman_id":"3bb1a779-b0f9-4798-993f-5949321df982"},{"name":"Mailing","id":"44ae33ec-26b1-4fb8-b483-9e6817a6c011","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/mailings/:id","description":"<p>To retrieve a specific mailing based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","mailings",":id"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"description":{"content":"<p>Mailing id</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"8ab68948-122e-4432-acb7-a64b0f46159c","name":"Get Mailings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://developer.clclient.com/cl-trucadence-service/mailings/:id","protocol":"https","host":["developer","clclient","com"],"path":["cl-trucadence-service","mailings",":id"],"query":[{"key":"id","value":"352032","disabled":true}],"variable":[{"key":"id","value":"{id}","description":"Mailing Id"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 352031,\n        \"toAddress\": \"rvenkatesan@gembrill.com\",\n        \"sentFlag\": true,\n        \"sentDatetime\": \"2018-09-10T04:00:06\",\n        \"bouncedFlag\": null,\n        \"bouncedReason\": null,\n        \"bouncedDatetime\": null,\n        \"openedCount\": null,\n        \"openedDatetime\": null,\n        \"linkClickedCount\": null,\n        \"linkClickedDatetime\": null,\n        \"crmSyncFlag\": false,\n        \"repliedFlag\": null,\n        \"repliedMsg\": null,\n        \"title\": \"Sales Manager\",\n        \"emailBody\": \"ff<br/><br/><p style=\\\"font-family:Verdana,Arial,sans-serif;font-size:14px\\\">Thanks & Regards<br />\\nSarath </p>\",\n        \"emailSubject\": \"ghg\",\n        \"repliedDateTime\": null,\n        \"emailThreadId\": \"AdRIu2ay+CoeIdf9QNm85x1yy9w0jg==\",\n        \"ccAddress\": \"\",\n        \"bccAddress\": \"\",\n        \"emailBodyWithoutTracking\": \"{}\",\n        \"fromAddress\": \"smathi@gembrill.com\"\n    }\n]"}],"_postman_id":"44ae33ec-26b1-4fb8-b483-9e6817a6c011"},{"name":"Scheduled Email","id":"f9fea3f9-f770-4fd5-b3f7-73aff2622412","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_cadence_api}}/cadence/v2/mailings/:id/cancel","description":"<p>To delete/cancel a scheduled email.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Mailing ID</td>\n<td><code>Readonly</code><br /><code>Mandatory</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>User<br /><code>Array of Objects</code></td>\n<td>User who sent the email</td>\n<td><code>Filterable</code><br /><code>Mandatory</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["cadence","v2","mailings",":id","cancel"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"id":"a9b06d9f-ce15-463c-8c93-0d604579f722","description":{"content":"<p>Mailing id</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"6cb9a986-5efb-4d23-afd9-841da77a6252","name":"Cancel a scheduled email","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_cadence_api}}/cadence/v2/mailings/:id/cancel?filter[user][id]={id}","protocol":"https","host":["{{koncert_cadence_api}}"],"path":["cadence","v2","mailings",":id","cancel"],"query":[{"key":"filter[user][id]","value":"{id}"}],"variable":[{"key":"id","value":"{id}","description":"Mailing id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"f9fea3f9-f770-4fd5-b3f7-73aff2622412"}],"id":"ca6df13f-0aec-4514-b82b-95516508c443","description":"<p>Email repository where the history of email activities and the metrics of email outcomes can be viewed. The Compose Email feature helps to compose and send an instant email to the prospect.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Mailing ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>headerId<br /><code>String</code></td>\n<td>Header ID of the mail</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>emailServerEmailUid<br /><code>String</code></td>\n<td>Mail server ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>toAddress<br /><code>String</code></td>\n<td>Prospect's email address</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>sentDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the email was sent</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>sentFlag<br /><code>Boolean</code></td>\n<td>Flag to ensure whether the email is send or not</td>\n<td></td>\n</tr>\n<tr>\n<td>bouncedFlag<br /><code>Boolean</code></td>\n<td>Flag to ensure whether the email is bounced or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>bouncedReason<br /><code>String</code></td>\n<td>Reason for email bounce</td>\n<td><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>bouncedDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the email was bounced</td>\n<td><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>openedDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the email was opened</td>\n<td><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>linkClickedDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the link in the email was clicked</td>\n<td><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmSyncFlag<br /><code>Boolean</code></td>\n<td>Flag to ensure whether the CRM Sync is enabled or not</td>\n<td></td>\n</tr>\n<tr>\n<td>repliedFlag<br /><code>Boolean</code></td>\n<td>Flag to ensure whether the email is replied or not</td>\n<td><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>repliedMsg<br /><code>String</code></td>\n<td>Reply email content</td>\n<td></td>\n</tr>\n<tr>\n<td>contactName<br /><code>String</code></td>\n<td>Name of the prospect</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>accountName<br /><code>String</code></td>\n<td>Account name of the prospect</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>title<br /><code>String</code></td>\n<td>Title of the prospect</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>emailBody<br /><code>String</code></td>\n<td>Content of the email sent to the prospect</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>phone<br /><code>String</code></td>\n<td>Prospect's phone number</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmId<br /><code>String</code></td>\n<td>CRM ID of the prospect</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>memberId<br /><code>Integer</code></td>\n<td>Prospect ID</td>\n<td><code>Readonly</code><br /><code>Filterable</code></td>\n</tr>\n<tr>\n<td>emailSubject<br /><code>String</code></td>\n<td>Subject of the email</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>emailThreadId<br /><code>String</code></td>\n<td>Email thread ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>repliedDateTime<br /><code>Date-Time</code></td>\n<td>Date and time when the reply mail was received</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>touchStepNo<br /><code>Integer</code></td>\n<td>Touch number in the cadence</td>\n<td><code>Readonly</code><br /><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>ccAddress<br /><code>String</code></td>\n<td>Cc email addres</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>bccAddress<br /><code>String</code></td>\n<td>Bcc email address</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>emailBodyWithoutTracking<br /><code>String</code></td>\n<td>Email content</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>fromAddress<br /><code>String</code></td>\n<td>User email address</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>attachments<br /><code>Json</code></td>\n<td>Email attachments</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>clEmailUid<br /><code>String</code></td>\n<td>Identify which email the prospect has replied</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>repliedCount<br /><code>Integer</code></td>\n<td>Number of replied mails received from the prospects</td>\n<td><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>status<br /><code>String</code></td>\n<td>Mail status - <code>Sent, Replied</code></td>\n<td><code>Filterable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>startDate<br /><code>Date-Time</code></td>\n<td>Start date</td>\n<td><code>Filterable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>endDate<br /><code>Date-Time</code></td>\n<td>End date</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>prospectEmailHistory<br /><code>Json</code></td>\n<td>Prospect email history</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser<br /><code>Array of Objects</code></td>\n<td>Owner of the Sync log</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>Cadence<br /><code>Array of Objects</code></td>\n<td>cadence</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>EmailTemplate<br /><code>Array of Objects</code></td>\n<td>emailTemplate</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ca6df13f-0aec-4514-b82b-95516508c443","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Metadata","item":[{"name":"Metadata","id":"b66d07bd-99f6-46c8-91f5-4d85b173f617","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/metadata?type={{type of metadata}}","description":"<p>To retrieve data by Activity Fields, Fields or Users.</p>\n<p>Retrieval of data by type 'users' will be based on the below scenarios:</p>\n<ol>\n<li><p>If the logged-in user has admin privileges, the user can retrieve the data of all users across the organization.<br /><br /></p>\n</li>\n<li><p>If the logged-in user has manager privileges, the user can retrieve the data of his team members.<br /><br /></p>\n</li>\n<li><p>If the logged-in user has no additional role, the data of the logged-in user will only be retrieved.</p>\n</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","metadata"],"host":["{{koncert_cadence_api}}"],"query":[{"description":{"content":"<p>(String)Supported values are <code>fields|activity-fields|users</code></p>\n","type":"text/plain"},"key":"type","value":"{{type of metadata}}"}],"variable":[]}},"response":[],"_postman_id":"b66d07bd-99f6-46c8-91f5-4d85b173f617"}],"id":"4274a61c-6c61-4ead-9363-2f1050c9b468","description":"<p>This API is used to retrieve data of following types:</p>\n<ol>\n<li>Activity Fields</li>\n<li>Fields</li>\n<li>Users</li>\n</ol>\n","_postman_id":"4274a61c-6c61-4ead-9363-2f1050c9b468","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Notifications","item":[{"name":"Notification List","id":"4198a042-ff46-46bb-8c49-725378148360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/notifications","description":"<p>To retrieve a list of Notifications available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","notifications"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"d61d0c23-8b51-40e4-8681-0054c5c2e0da","name":"Notifications List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:02:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2620,\n            \"outcome\": \"Sent\",\n            \"touchType\": \"email\",\n            \"unreadStatus\": \"Y\",\n            \"stepNumber\": 3,\n            \"createdDate\": \"2020-11-09T13:45:05Z\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 6282\n                    }\n                ],\n                \"cadence\": [\n                    {\n                        \"id\": 3959\n                    }\n                ],\n                \"prospect\": [\n                    {\n                        \"id\": 174718\n                    }\n                ],\n                \"emailtemplate\": [\n                    {\n                        \"id\": 4338\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 90,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"4198a042-ff46-46bb-8c49-725378148360"},{"name":"Mark As Read","id":"d77a13e5-bd22-4035-8b44-aaf16749dbdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/notifications/:id","description":"<p>To mark an unread notification as Read.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","notifications",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"6ceff2ca-dc54-4d68-b9b8-e72598fad01e","name":"Mark As Read","originalRequest":{"method":"PUT","header":[],"url":"/api/v2/notifications/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:18:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"d77a13e5-bd22-4035-8b44-aaf16749dbdb"},{"name":"Mark All As Read","id":"3994c06b-0ec0-4ade-8338-ef098575ce7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/notifications/markAllAsRead","description":"<p>To mark all the unread notifications as Read, at once.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","notifications","markAllAsRead"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"7e7794e9-b8b6-4efa-bfb2-5f1ee2b40693","name":"Mark All as Read","originalRequest":{"method":"PUT","header":[],"url":"/api/v2/notifications/markAllAsRead"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Set-Cookie","value":"JSESSIONID=p8QO7KyWEUsbgOProgFQEdxrsorqV-h2duxfahgl.gbrws-03; path=/cl-trucadence-service/api/v2/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:21:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"3994c06b-0ec0-4ade-8338-ef098575ce7f"}],"id":"85c39336-7754-423d-aaf8-6601324be006","description":"<p>Notify the user when a touch is complete or when it needs their attention.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Notification ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>outcome<br /><code>String</code></td>\n<td>Outcome of the Touch type for which notification enabled</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>touchType<br /><code>String</code></td>\n<td>Touch type enabled for notification</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>unreadStatus<br /><code>character</code></td>\n<td>Unread notification status</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>stepNumber<br /><code>Integer</code></td>\n<td>Touch number in a Cadence</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>createdDate<br /><code>Date-Time</code></td>\n<td>Date and time when the notification was created</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createduser<br /><code>Array of Objects</code></td>\n<td>User asssociated with the notification</td>\n<td></td>\n</tr>\n<tr>\n<td>prospect<br /><code>Array of Objects</code></td>\n<td>Prospect asssociated with the notification</td>\n<td></td>\n</tr>\n<tr>\n<td>cadence<br /><code>Array of Objects</code></td>\n<td>Cadence asssociated with the notification</td>\n<td></td>\n</tr>\n<tr>\n<td>emailTemplate<br /><code>Array of Objects</code></td>\n<td>Email Template asssociated with the notification</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"85c39336-7754-423d-aaf8-6601324be006","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Outcome","item":[{"name":"Outcome List","id":"9e0a875d-af9d-45ee-a887-1151669393a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/outcomes","description":"<p>To retrieve a list of touch outcomes.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","outcomes"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"4ac3c04f-704e-4be0-aaca-51d15ce864c5","name":"Outcome List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/outcomes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Set-Cookie","value":"sid=JppvtmHtjdw2rb5Mx2Mp0H6_TgkKWq9Xf3Ox2A5e.gbrws-12; path=/cl-trucadence-service/api/v2/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 15:52:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3888,\n            \"name\": \"Opened\",\n            \"touchType\": \"EMAIL\",\n            \"showOnMetrics\": true,\n            \"memberStage\": \"Attempted\",\n            \"defaultAction\": \"Exit Cadence\",\n            \"memberStageId\": null,\n            \"isActive\": \"Y\",\n            \"isInterested\": \"N\",\n            \"isBadData\": \"Y\",\n            \"productType\": null,\n            \"xIsActive\": null,\n            \"xShowOnMetrics\": null,\n            \"isInterestedOrBadData\": null,\n            \"createActivity\": true,\n            \"associations\": {}\n        },\n        {\n            \"id\": 3889,\n            \"name\": \"Sent\",\n            \"touchType\": \"EMAIL\",\n            \"showOnMetrics\": true,\n            \"memberStage\": \"Interested\",\n            \"defaultAction\": \"No Action\",\n            \"memberStageId\": null,\n            \"isActive\": \"N\",\n            \"isInterested\": \"N\",\n            \"isBadData\": \"Y\",\n            \"productType\": null,\n            \"xIsActive\": null,\n            \"xShowOnMetrics\": null,\n            \"isInterestedOrBadData\": null,\n            \"createActivity\": true,\n            \"associations\": {}\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 14,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"9e0a875d-af9d-45ee-a887-1151669393a4"},{"name":"Outcome","id":"9e2a43e3-71b4-4d12-9c0a-9001682946a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>To retrieve a specific outcome based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"9e2a43e3-71b4-4d12-9c0a-9001682946a9"}],"id":"61124765-3702-4922-98a4-d40cfedc41e9","description":"<p>Result/Outcome of the touch execution.</p>\n","_postman_id":"61124765-3702-4922-98a4-d40cfedc41e9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Prospect ","item":[{"name":"Actions","item":[{"name":"Assign Prospects to a Cadence","id":"e40d591e-56e2-49ab-ae33-c85ace0224f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id/assignToCadence/:cadenceId","description":"<p>Assign one or more prospects to a Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id","assignToCadence",":cadenceId"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"},{"type":"any","value":null,"key":"cadenceId"}]}},"response":[{"id":"6ab33acc-8b12-45bd-96b2-49592e09e60f","name":"Assign Prospects to Cadence","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/assignToCadence/{cadenceId}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:00:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 197790,\n            \"assigned\": true\n        }\n    ]\n}"}],"_postman_id":"e40d591e-56e2-49ab-ae33-c85ace0224f5"},{"name":"Pause Prospect(s)","id":"e2a973fc-55df-4637-b30e-660ff9aea4b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"resumeDate\":\"2020-12-31\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id/pause","description":"<p>To pause one or more prospects activity in a Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id","pause"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"504ec64d-4157-4588-9cb7-63af8acb5461","name":"Pause multi Prospect(s)","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"resumeDate\":\"2020-12-31\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/pause"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 197553,\n            \"isPaused\": true,\n            \"message\": \"Prospect paused successfully\"\n        },\n        {\n            \"id\": 197554,\n            \"isPaused\": true,\n            \"message\": \"Prospect paused successfully\"\n        }\n        ,{\n            \"id\": 197555,\n            \"isPaused\": true,\n            \"message\": \"Prospect paused successfully\"\n        }\n    ]\n}"},{"id":"d61fea86-e6a9-4e2e-ba41-2a2c2d8d478c","name":"Pause Prospect(s)","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"resumeDate\":\"2020-12-31\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/pause"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:08:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 197553,\n            \"isPaused\": true,\n            \"message\": \"Prospect paused successfully\"\n        }\n    ]\n}"}],"_postman_id":"e2a973fc-55df-4637-b30e-660ff9aea4b8"},{"name":"Move Prospects to Another Cadence","id":"51860592-3de0-40b3-b4a8-39c310d210cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"resumeDate\":\"2020-12-31\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id/moveToCadence/:cadenceId","description":"<p>To move one or more prospects from one Cadence to another Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id","moveToCadence",":cadenceId"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"},{"type":"any","value":null,"key":"cadenceId"}]}},"response":[{"id":"c010b505-d915-4e61-9ef6-0b8408880be2","name":"Assign Prospects to Another Cadence","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"resumeDate\":\"2020-12-31\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/moveToCadence/{cadenceId}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:15:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 197553,\n            \"isMoved\": true\n        }\n    ]\n}"}],"_postman_id":"51860592-3de0-40b3-b4a8-39c310d210cd"},{"name":"Resume Prospect(s)","id":"bc2e97e2-499f-438e-91b5-f4a36411e7ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"resumeDate\":\"2020-12-31\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id/resume","description":"<p>To resume the paused prospects in a Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id","resume"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"62980407-5b0a-4589-8706-8e6b27a520ef","name":"Resume multiple Prospect(s)","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"resumeDate\":\"2020-12-31\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id1}{id2}/resume"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 197553,\n            \"isResumed\": true,\n            \"message\": \"Prospect resumed successfully\"\n        }, {\n            \"id\": 197554,\n            \"isResumed\": true,\n            \"message\": \"Prospect resumed successfully\"\n        }\n    ]\n}"},{"id":"767ca820-cadf-416f-9073-b2ea1b1bcbac","name":"Resume Prospect(s)","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"resumeDate\":\"2020-12-31\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/resume"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:11:17 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 197553,\n            \"isResumed\": true,\n            \"message\": \"Prospect resumed successfully\"\n        }\n    ]\n}"}],"_postman_id":"bc2e97e2-499f-438e-91b5-f4a36411e7ad"},{"name":"Skip Touch","id":"5bace47c-e059-4b80-b536-cd283675c700","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prospectsIds\": \"197553-1\",\r\n    \"cadence\": {\r\n        \"id\": 3172\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/skipTouch","description":"<p>To skip the prospect from the current touch and move to next touch in the same Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects","skipTouch"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"102f2cc4-95fc-46d1-b217-f3ff84bd60a1","name":"SkipTouch for cadance","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prospectsIds\": \"197553-1\",\r\n    \"cadence\": {\r\n        \"id\": 3172\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_cadence_api}}/api/v2/prospects/skipTouch","protocol":"https","host":["{{koncert_cadence_api}}"],"path":["api","v2","prospects","skipTouch"],"query":[{"key":"id","value":"156006","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:34:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"5bace47c-e059-4b80-b536-cd283675c700"},{"name":"Snooze Follow Up","id":"ab7cd84d-1908-462e-907b-ab5c33134748","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prospectsIds\": \"197553-1\",\r\n    \"cadence\": {\r\n        \"id\": 3172\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id/snooze","description":"<p>To snooze the follow up call to a future date.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id","snooze"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"2115ebc0-2e76-496a-b75d-93931dd78ab9","name":"Snooze Follow Up","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prospectsIds\": \"197553-1\",\r\n    \"cadence\": {\r\n        \"id\": 3172\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/snooze"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"ab7cd84d-1908-462e-907b-ab5c33134748"},{"name":"Prospect Activity List","id":"98f2a4bb-cb88-46b1-9385-b4fb74141097","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id/activities","description":"<p>To retrieve the list of activities made on the prospect.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id","activities"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"621243ca-6954-4950-a779-8fb042a1f4f5","name":"Prospect Activity List","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/activities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:03:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 712790,\n      \"touchType\": \"\",\n      \"actionType\": \"UPDATE\",\n      \"cadenceName\": null,\n      \"actionChanges\": \"FirstName update\",\n      \"subject\": \"\",\n      \"textContent\": \"\",\n      \"emailContent\": \"\",\n      \"importedFileName\": \"\",\n      \"duration\": \"45 mins\",\n      \"activityDatetime\": \"2020-12-30T08:18:07Z\",\n      \"touchStepNo\": null,\n      \"personName\": \"john lo\",\n      \"outcome\": \"\",\n      \"outcomeComments\": \"\",\n      \"nextTouch\": \"\",\n      \"userName\": \"SarathkumarUserAdmin\",\n      \"expandBtn\": \"\",\n      \"emailTemplateName\": null,\n      \"emailTouchType\": \"\",\n      \"linkedinTouchType\": null,\n      \"linkedinNextTouchType\": null,\n      \"otherCurrentTouchSourceId\": 0,\n      \"otherNextTouchSourceId\": 0,\n      \"memberTaskNotes\": null,\n      \"memberTaskSubject\": null,\n      \"currentTouchEmailsForReview\": \"\",\n      \"customizedEmailTouchInfo\": \"\",\n      \"actionIcon\": \"fa-edit\",\n      \"associations\": {\n        \"user\": [\n          {\n            \"id\": 5411\n          }\n        ],\n        \"cadence\": [\n          {\n            \"id\": 0\n          }\n        ]\n      }\n    },\n    {\n      \"id\": 695990,\n      \"touchType\": \"CALL\",\n      \"actionType\": \"EXIT CADENCE\",\n      \"cadenceName\": \"ah\",\n      \"actionChanges\": \"SYSTEM-AUTO FALLTHROUGH-EXIT CADENCE\",\n      \"subject\": \"\",\n      \"textContent\": \"\",\n      \"emailContent\": \"\",\n      \"importedFileName\": \"\",\n      \"duration\": \"7 days\",\n      \"activityDatetime\": \"2020-12-23T06:52:08Z\",\n      \"touchStepNo\": \"2\",\n      \"personName\": \"john lo\",\n      \"outcome\": \"\",\n      \"outcomeComments\": \"\",\n      \"nextTouch\": \"\",\n      \"userName\": \"SarathkumarUserAdmin\",\n      \"expandBtn\": \"\",\n      \"emailTemplateName\": null,\n      \"emailTouchType\": \"\",\n      \"linkedinTouchType\": null,\n      \"linkedinNextTouchType\": null,\n      \"otherCurrentTouchSourceId\": 0,\n      \"otherNextTouchSourceId\": 0,\n      \"memberTaskNotes\": null,\n      \"memberTaskSubject\": null,\n      \"currentTouchEmailsForReview\": \"Auto\",\n      \"customizedEmailTouchInfo\": \"(Auto)\",\n      \"actionIcon\": \"fa-phone\",\n      \"associations\": {\n        \"user\": [\n          {\n            \"id\": 5411\n          }\n        ],\n        \"cadence\": [\n          {\n            \"id\": 2605\n          }\n        ]\n      }\n    }\n  ],\n  \"paging\": {\n    \"totalCount\": 15,\n    \"limit\": 25,\n    \"offset\": 0\n  }\n}"}],"_postman_id":"98f2a4bb-cb88-46b1-9385-b4fb74141097"},{"name":"Start Power Dialing","id":"b2ab0c29-8d07-4269-9671-6b4398111140","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prospectsIds\": \"197553-1\",\r\n    \"cadence\": {\r\n        \"id\": 3172\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/startPowerDialing","description":"<p>To move the prospects in Call Touch to the Koncert portal for dialing.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects","startPowerDialing"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"4d931c0b-e8ba-4d84-b899-b9f6cc12886b","name":"Start Power Dialing","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prospectsIds\": \"197553-1\",\r\n    \"cadence\": {\r\n        \"id\": 3172\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/startPowerDialing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:47:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"b2ab0c29-8d07-4269-9671-6b4398111140"},{"name":"Complete Touch","id":"f8666421-f7a9-4196-aff7-63a6900003f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"touchType\":\"linkedin\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id/completeTouch","description":"<p>To execute/complete the Social/LinkedIn touch the prospect assigned with. Prospect will be moved to next touch or exit from the Cadence, based on the action specified for the touch outcome.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id","completeTouch"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"a66ce494-1a12-465d-a69f-d31bd5d8285e","name":"Complete Touch","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"touchType\":\"linkedin\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/completeTouch"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:10:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n    \n}"}],"_postman_id":"f8666421-f7a9-4196-aff7-63a6900003f8"},{"name":"Exit Prospect From Cadence","id":"65be94e2-498d-41d9-b414-029c8a51b639","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id/exit","description":"<p>To remove the prospect from the Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id","exit"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"dcdb416a-3d86-459d-863e-54e9eb34ff03","name":"Exit Prospect From Cadence","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}/exit","protocol":"https","host":["{{koncert_cadence_api}}"],"path":["api","v2","prospects","{id}","exit"],"query":[{"key":"id","value":"156006","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 09:17:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 197790,\n            \"isExit\": true\n        }\n    ]\n}"}],"_postman_id":"65be94e2-498d-41d9-b414-029c8a51b639"}],"id":"b9b900a0-078b-43d0-802c-a551b50c429e","description":"<p>You can perform the below actions under the Prospects tab.</p>\n","_postman_id":"b9b900a0-078b-43d0-802c-a551b50c429e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"CSV Import","item":[{"name":"Upload CSV","id":"2c8ee29d-1555-4d55-b019-72c678fc9180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","contentType":"multipart/form-data","src":"/C:/tmp/Contacts_List - Copy (1).csv"}]},"url":"https://{{koncert_cadence_api}}/api/v2/imports/uploadFiles","description":"<p>To import a CSV file with a list of prospects.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","imports","uploadFiles"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"232ba9fd-0fb7-4112-9fce-213a18276c61","name":"Upload CSV","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","contentType":"multipart/form-data","src":"/C:/tmp/Contacts_List - Copy (1).csv"}]},"url":"https://{{koncert_cadence_api}}/api/v2/imports/uploadFiles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 05 May 2021 13:40:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"jhTi....400\",\n            \"name\": \"Contacts_List.csv\",\n            \"headerContents\": [\n                \"Account Name\",\n                \"Contact Name\",\n                \"Phone\",\n                \"Title\",\n                \"Email\"\n            ],\n            \"csvRecords\": [\n                {\n                    \"Account Name\": \"Microsoft Corp\",\n                    \"Email\": \"user1@hotmail.com\",\n                    \"Contact Name\": \"Micahel Clark\",\n                    \"Phone\": \"800-000-1112\",\n                    \"Title\": \"QA\"\n                },\n                {\n                    \"Account Name\": \"Expedia\",\n                    \"Email\": \"user1@yahoo.com\",\n                    \"Contact Name\": \"Sean Connery\",\n                    \"Phone\": \"800-000-1113\",\n                    \"Title\": \"QA\"\n                },\n                {\n                    \"Account Name\": \"Comcast\",\n                    \"Email\": \"user2@yahoo.com\",\n                    \"Contact Name\": \"Sarah Jones\",\n                    \"Phone\": \"800-000-1114\",\n                    \"Title\": \"QA\"\n                }\n            ],\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 1111\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"2c8ee29d-1555-4d55-b019-72c678fc9180"},{"name":"Import CSV","id":"9876dcc4-2526-439a-9cbc-cb1d0b057bb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"fileId\": \"jhTi....400\",\r\n\t\"userListFieldMappings\": [\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Account Name\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 102\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Contact Name\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 103\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Phone\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 104\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Title\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 105\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Email\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 106\r\n\t\t\t}\r\n\t\t}\r\n\t],\r\n\t\"tag\": {\r\n\t\t\"id\": 2222\r\n\t},\r\n\t\"user\": {\r\n\t\t\"id\": 1111\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/imports/","description":"<p>To map the columns in the CSV file with the Koncert fields and upload the prospects into the Cadence application.</p>\n<p><strong>Request Body info</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"fileId\": {{The file id received in response of uploaded CSV file using Upload CSV API}},\n  \"userListFieldMappings\": [\n    {\n      \"csvFieldName\": {{CSV file header/filed name}},\n      \"fields\": {\n        \"id\": {{One of the field id to which this CSV header should be mapped}}\n      }\n    },\n    {\n      \"csvFieldName\": {{CSV file header/filed name}},\n      \"fields\": {\n        \"id\": {{One of the field id to which this CSV header should be mapped}}\n      }\n    }\n  ],\n  \"tag\": {\n    \"id\": {{Any tag id to assign to the uploaded prospects}}\n  },\n  \"user\": {\n    \"id\": {{Any user id to be owner of the uploaded prospects}}\n  }\n}\n</code></pre><p><strong>ⓘ</strong> <code>tag</code> and <code>user</code> are optional</p>\n<p><strong>ⓘ</strong> Use <code>Fields</code> API to get the available fields and it's corresponding id's.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","imports",""],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"81e3dfdc-4de0-4fac-95fb-2077fb6b2f02","name":"Import CSV","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"fileId\": \"jhTi....400\",\r\n\t\"userListFieldMappings\": [\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Account Name\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 102\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Contact Name\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 102\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Phone\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 103\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Title\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 104\r\n\t\t\t}\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"csvFieldName\": \"Email\",\r\n\t\t\t\"fields\": {\r\n\t\t\t\t\"id\": 105\r\n\t\t\t}\r\n\t\t}\r\n\t],\r\n\t\"tag\": {\r\n\t\t\"id\": 2222\r\n\t},\r\n\t\"user\": {\r\n\t\t\"id\": 1111\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/imports/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 05 May 2021 13:53:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"reportName\": \"Contacts_List.csv\",\n            \"recordsAvailable\": 1,\n            \"recordsImported\": 1,\n            \"duplicateCount\": 0,\n            \"reportError\": \"\",\n            \"missingColumnDetails\": {},\n            \"additionalFilterDetails\": {},\n            \"columnStatuses\": [\n                {\n                    \"columnName\": \"Company\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"Contact\",\n                    \"columnType\": \"Required\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"Title\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"City\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Missing\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"State\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Missing\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"Phone\",\n                    \"columnType\": \"Required\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"Y\"\n                },\n                {\n                    \"columnName\": \"Email\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"9876dcc4-2526-439a-9cbc-cb1d0b057bb7"}],"id":"9abc7033-ea81-46af-a58f-1fe3fcad5698","description":"<p>Cadence API supports uploading of <strong>bulk prospects</strong></p>\n<p><strong>Step 1 (Import CSV API):</strong> Import a CSV file.</p>\n<p><strong>Step 2 (Map and Upload CSV API):</strong> Map and upload the prospects in the CSV file imported in <em>Step 1</em>.</p>\n","_postman_id":"9abc7033-ea81-46af-a58f-1fe3fcad5698","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Custom API","item":[{"name":"Prospect List Search By Org","id":"1371d2eb-8c0e-490b-94ae-6e5f8f187ae2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/prospects//list/searchByOrg?filter[crmId]=:[{id},{id}]","description":"<p>Search and filter prospects by CRM ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects","","list","searchByOrg"],"host":["{{koncert_cadence_api}}"],"query":[{"key":"filter[crmId]","value":":[{id},{id}]"}],"variable":[]}},"response":[{"id":"d0f5efc9-2416-4eff-a5f3-87007f40d617","name":"Prospect List Search By Org","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_cadence_api}}/api/v2/prospects//list/searchByOrg?filter[crmId]=:[{id},{id}]","protocol":"https","host":["{{koncert_cadence_api}}"],"path":["api","v2","prospects","","list","searchByOrg"],"query":[{"key":"filter[crmId]","value":":[{id},{id}]"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 197498,\n            \"createdDate\": \"2020-12-20T16:10:03Z\",\n            \"updatedDate\": \"2021-02-08T15:16:58Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"Brb Crystal River Resort 12\",\n            \"contactName\": \"Brb Resort\",\n            \"firstName\": \"Brb\",\n            \"lastName\": \"Resort\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(970) 477-8126\",\n            \"title\": \"CSV Import\",\n            \"emailId\": null,\n            \"source\": null,\n            \"crmId\": \"crmgenkey_447cab6f-30da-3b94-8866-b81fdab6c4ec\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": \"Colorado\",\n            \"city\": \"Carbondale\",\n            \"sfReportName\": \"50 prospects_new.csv\",\n            \"extension\": null,\n            \"memberStatus\": \"COMPLETED\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": null,\n            \"currentTouchEnteredDatetime\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": \"(303) 440-8013\",\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"MST\",\n            \"optoutFlag\": \"false\",\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": \"2021-01-18T17:29:06Z\",\n            \"lastDialedDate\": \"2021-01-24T19:52:02Z\",\n            \"callCounter\": 9,\n            \"lastTalkerCallOutcome\": \"Left VM\",\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"accountId\": 452,\n            \"duedate\": null,\n            \"lastTouchDateTime\": \"2021-02-08T15:16:58Z\",\n            \"currentTouchType\": null,\n            \"customBoolean1\": \"false\",\n            \"customBoolean2\": \"false\",\n            \"customBoolean3\": \"false\",\n            \"customBoolean4\": \"false\",\n            \"customBoolean5\": \"false\",\n            \"linkedinUrl\": null,\n            \"crmAccountId\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": \"MST\",\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextOutcome\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"pausedBy\": null,\n            \"pausedDatetime\": null,\n            \"timezonePhone\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": \"EMAIL\",\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": \"different name\",\n            \"callEngagementScore\": 70,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 5226\n                    }\n                ],\n                \"tag\": [],\n                \"cadence\": []\n            }\n        },\n        {\n            \"id\": 240936,\n            \"createdDate\": \"2021-05-10T12:49:34Z\",\n            \"updatedDate\": \"2021-05-10T12:49:34Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"Brb Crystal River Resort 12\",\n            \"contactName\": \"Brb Crystal River Resort\",\n            \"firstName\": \"Brb\",\n            \"lastName\": \"Resort\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(970) 477-8126\",\n            \"title\": \"CSV Import\",\n            \"emailId\": null,\n            \"source\": null,\n            \"crmId\": \"crmgenkey_447cab6f-30da-3b94-8866-b81fdab6c4ec\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": \"Colorado\",\n            \"city\": \"Carbondale\",\n            \"sfReportName\": \"50 prospects_new.csv\",\n            \"extension\": null,\n            \"memberStatus\": \"NEW\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": null,\n            \"currentTouchEnteredDatetime\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"MST\",\n            \"optoutFlag\": \"false\",\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"accountId\": 452,\n            \"duedate\": null,\n            \"lastTouchDateTime\": null,\n            \"currentTouchType\": null,\n            \"customBoolean1\": \"false\",\n            \"customBoolean2\": \"false\",\n            \"customBoolean3\": \"false\",\n            \"customBoolean4\": \"false\",\n            \"customBoolean5\": \"false\",\n            \"linkedinUrl\": null,\n            \"crmAccountId\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextOutcome\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"pausedBy\": null,\n            \"pausedDatetime\": null,\n            \"timezonePhone\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": null,\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": null,\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 5226\n                    }\n                ],\n                \"tag\": [],\n                \"cadence\": []\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"1371d2eb-8c0e-490b-94ae-6e5f8f187ae2"}],"id":"356bce52-3b6d-45a7-b00f-1159fc9fc662","_postman_id":"356bce52-3b6d-45a7-b00f-1159fc9fc662","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Prospect List","id":"ae1f0b09-3ac2-41e5-893f-3d1dae3bde4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/prospects","description":"<p>To retrieve a list of prospects available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"92a6b26d-cf27-46d2-9944-56a9de8de560","name":"Prospects List","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/prospects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:00:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 193017,\n            \"createdDate\": \"2020-11-18T10:51:02Z\",\n            \"updatedDate\": \"2020-12-18T07:33:41.780Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"David\",\n            \"contactName\": \"sarath1 kumar\",\n            \"firstName\": \"sarath1\",\n            \"lastName\": \"kumar\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(603) 386-0304\",\n            \"title\": \"test til00\",\n            \"email\": null,\n            \"source\": null,\n            \"crmId\": \"crmgenkey_2c7241d5-dad9-314f-82ad-c35e3537c1a2\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": \"TN\",\n            \"city\": \"Chennai\",\n            \"sfReportName\": \"David.csv\",\n            \"extension\": null,\n            \"memberStatus\": \"COMPLETED\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": 0,\n            \"currentTouchEnteredDatetime\": \"2020-12-18T07:33:41.100Z\",\n            \"customInteger1\": 2,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": \"2020-12-21\",\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": 2,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"EST\",\n            \"optoutFlag\": false,\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"product\": null,\n            \"due\": null,\n            \"duedate\": null,\n            \"lastActivityDatetime\": \"2020-12-18T18:41:55Z\",\n            \"lastTouchDateTime\": \"2020-12-18T18:41:55Z\",\n            \"currentTouchType\": null,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"linkedinUrl\": null,\n            \"crmAccountId\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextOutcome\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"pausedBy\": null,\n            \"pausedDatetime\": null,\n            \"timezonePhone\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": \"EMAIL\",\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": null,\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"nextTouch\": null,\n            \"fromEmail\": \"tkarpagam@gembrill.com\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ],\n                \"tag\": [],\n                \"account\": [\n                    {\n                        \"id\": 2998\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 1008,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"ae1f0b09-3ac2-41e5-893f-3d1dae3bde4a"},{"name":"Prospect","id":"cc555ee7-114e-4db7-beef-0518cd2c91b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/prospects/:id","description":"<p>To retrieve a specific prospect based on ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","prospects",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"3f3fa69a-d63c-450a-8201-898d718bcd38","name":"Prospect","originalRequest":{"method":"GET","header":[],"url":"/api/v2/prospects/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:09:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 193017,\n            \"createdDate\": \"2020-11-18T10:51:02Z\",\n            \"updatedDate\": \"2020-12-18T07:33:41.780Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"David\",\n            \"contactName\": \"sarath1 kumar\",\n            \"firstName\": \"sarath1\",\n            \"lastName\": \"kumar\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(603) 386-0304\",\n            \"title\": \"test til00\",\n            \"email\": null,\n            \"source\": null,\n            \"crmId\": \"crmgenkey_2c7241d5-dad9-314f-82ad-c35e3537c1a2\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": \"TN\",\n            \"city\": \"Chennai\",\n            \"sfReportName\": \"David.csv\",\n            \"extension\": null,\n            \"memberStatus\": \"COMPLETED\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": 0,\n            \"currentTouchEnteredDatetime\": \"2020-12-18T07:33:41.100Z\",\n            \"customInteger1\": 2,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": \"2020-12-21\",\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": 2,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"EST\",\n            \"optoutFlag\": false,\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"product\": null,\n            \"due\": null,\n            \"duedate\": null,\n            \"lastActivityDatetime\": \"2020-12-18T18:41:55Z\",\n            \"lastTouchDateTime\": \"2020-12-18T18:41:55Z\",\n            \"currentTouchType\": null,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"linkedinUrl\": null,\n            \"crmAccountId\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextOutcome\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"pausedBy\": null,\n            \"pausedDatetime\": null,\n            \"timezonePhone\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": \"EMAIL\",\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": null,\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"nextTouch\": null,\n            \"fromEmail\": \"tkarpagam@gembrill.com\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ],\n                \"tag\": [],\n                \"account\": [\n                    {\n                        \"id\": 2998\n                    }\n                ]\n            },\n            \"lastSyncDatetime\": null,\n            \"localTime\": {\n                \"timezone\": \"EST5EDT\",\n                \"observesDST\": \"Y\",\n                \"prospectLocalTime\": \"03:09 AM EST\",\n                \"latitude\": \"42.761000\",\n                \"longitude\": \"-71.463400\"\n            },\n            \"stats\": {\n                \"emailCount\": \"0\",\n                \"callCount\": \"0\",\n                \"otherCount\": \"0\",\n                \"textLinkedinCount\": \"0\"\n            },\n            \"pendingActivites\": [],\n            \"pendingEmails\": []\n        }\n    ]\n}"}],"_postman_id":"cc555ee7-114e-4db7-beef-0518cd2c91b6"},{"name":"Prospect","id":"104f244d-084f-486d-a645-04a6fe0f91db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"firstName\": \"john\",\r\n        \"lastName\": \"peter\",\r\n        \"account\": {\r\n            \"id\": 15081\r\n        },\r\n        \"email\": \"john@gmail.com\",\r\n        \"phone\": 8682002279,\r\n        \"tag\": [\r\n            {\r\n                \"id\": 1075\r\n            }\r\n        ]\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects","description":"<p>To create/add a new prospect in the Cadence application.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"3bab1558-14d0-4f7a-93d7-dd355881fa13","name":"Create Prospect","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"firstName\": \"john \",\r\n        \"lastName\": \"petter\",\r\n        \"account\": {\r\n            \"name\": \"xioe\"\r\n        },\r\n        \"phone\": \"3025674567\",\r\n        \"email\": \"john13@gmail.com\"\r\n    },\r\n    {\r\n        \"firstName\": \"john \",\r\n        \"lastName\": \"petter12\",\r\n        \"account\": {\r\n            \"name\": \"xioe\"\r\n        },\r\n        \"phone\": \"3025634567\",\r\n        \"email\": \"john12@gmail.com\"\r\n    },\r\n    {\r\n        \"firstName\": \"benz \",\r\n        \"lastName\": \"lp2\",\r\n        \"account\": {\r\n            \"name\": \"xioe\"\r\n        },\r\n        \"phone\": \"60345678909\",\r\n        \"email\": \"john12@gmail.com\"\r\n    },\r\n    {\r\n        \"firstName\": \"benz \",\r\n        \"lastName\": \"lp2\",\r\n        \"account\": {\r\n            \"name\": \"xioe\"\r\n        },\r\n        \"phone\": \"60345678909\",\r\n        \"email\": \"john12@gmail.com\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:33:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"status\": \"success\",\n            \"id\": 242167,\n            \"createdDate\": \"2021-07-05T17:29:51Z\",\n            \"updatedDate\": \"2021-07-05T17:29:51Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"xioe\",\n            \"contactName\": \"john  petter\",\n            \"firstName\": \"john\",\n            \"lastName\": \"petter\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(302) 567-4567\",\n            \"title\": null,\n            \"email\": \"john13@gmail.com\",\n            \"source\": null,\n            \"crmId\": \"crmgenkey_59733c67-b8c2-3f48-a355-9580cdb16aae\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": null,\n            \"city\": null,\n            \"sfReportName\": null,\n            \"extension\": null,\n            \"memberStatus\": \"NEW\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": 0,\n            \"currentTouchEnteredDatetime\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"\\\"EST\\\"\",\n            \"optoutFlag\": false,\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"dueAt\": null,\n            \"lastTouchDateTime\": null,\n            \"currentTouchType\": null,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"crmAccountId\": null,\n            \"linkedinUrl\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"lastTextOutcome\": null,\n            \"timezonePhone\": null,\n            \"pausedDatetime\": null,\n            \"pausedBy\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": null,\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": null,\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"cadenceOutcomeWeight\": 0,\n            \"customDate10\": null,\n            \"customDate11\": null,\n            \"customDate12\": null,\n            \"customDate13\": null,\n            \"customDate14\": null,\n            \"customDate15\": null,\n            \"customDate16\": null,\n            \"customDate17\": null,\n            \"customDate18\": null,\n            \"customDate19\": null,\n            \"customDate20\": null,\n            \"customDate6\": null,\n            \"customDate7\": null,\n            \"customDate8\": null,\n            \"customDate9\": null,\n            \"customPhone10\": null,\n            \"customPhone11\": null,\n            \"customPhone12\": null,\n            \"customPhone13\": null,\n            \"customPhone14\": null,\n            \"customPhone15\": null,\n            \"customPhone16\": null,\n            \"customPhone17\": null,\n            \"customPhone18\": null,\n            \"customPhone19\": null,\n            \"customPhone6\": null,\n            \"customPhone7\": null,\n            \"customPhone8\": null,\n            \"customPhone9\": null,\n            \"customVarchar21\": null,\n            \"customVarchar22\": null,\n            \"customVarchar23\": null,\n            \"customVarchar24\": null,\n            \"customVarchar25\": null,\n            \"customVarchar26\": null,\n            \"customVarchar27\": null,\n            \"customVarchar28\": null,\n            \"customVarchar29\": null,\n            \"customVarchar30\": null,\n            \"customVarchar31\": null,\n            \"customVarchar32\": null,\n            \"customVarchar33\": null,\n            \"customVarchar34\": null,\n            \"customVarchar35\": null,\n            \"customVarchar36\": null,\n            \"customVarchar37\": null,\n            \"customVarchar38\": null,\n            \"customVarchar39\": null,\n            \"customVarchar40\": null,\n            \"customVarchar41\": null,\n            \"customVarchar42\": null,\n            \"customVarchar43\": null,\n            \"customVarchar44\": null,\n            \"customVarchar45\": null,\n            \"customVarchar46\": null,\n            \"customVarchar47\": null,\n            \"customVarchar48\": null,\n            \"customVarchar49\": null,\n            \"customVarchar50\": null,\n            \"extensionCustomPhone6\": null,\n            \"extensionCustomPhone7\": null,\n            \"timezoneCustomPhone10\": null,\n            \"timezoneCustomPhone11\": null,\n            \"timezoneCustomPhone12\": null,\n            \"timezoneCustomPhone13\": null,\n            \"timezoneCustomPhone14\": null,\n            \"timezoneCustomPhone15\": null,\n            \"timezoneCustomPhone16\": null,\n            \"timezoneCustomPhone17\": null,\n            \"timezoneCustomPhone18\": null,\n            \"timezoneCustomPhone19\": null,\n            \"timezoneCustomPhone6\": null,\n            \"timezoneCustomPhone7\": null,\n            \"timezoneCustomPhone8\": null,\n            \"timezoneCustomPhone9\": null,\n            \"touchid\": null,\n            \"dueat\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"tag\": [],\n                \"account\": [\n                    {\n                        \"id\": 11454\n                    }\n                ]\n            },\n            \"lastSyncDatetime\": null,\n            \"localTime\": {},\n            \"stats\": {\n                \"emailCount\": \"0\",\n                \"callCount\": \"0\",\n                \"otherCount\": \"0\",\n                \"linkedinCount\": \"0\",\n                \"textCount\": \"0\"\n            },\n            \"pendingActivites\": [],\n            \"pendingEmails\": []\n        },\n        {\n            \"status\": \"success\",\n            \"id\": 242168,\n            \"createdDate\": \"2021-07-05T17:29:52Z\",\n            \"updatedDate\": \"2021-07-05T17:29:52Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"xioe\",\n            \"contactName\": \"john  petter12\",\n            \"firstName\": \"john\",\n            \"lastName\": \"petter12\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(302) 563-4567\",\n            \"title\": null,\n            \"email\": \"john12@gmail.com\",\n            \"source\": null,\n            \"crmId\": \"crmgenkey_4b3f7324-a4fc-31ac-a79a-93f9321aa5a1\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": null,\n            \"city\": null,\n            \"sfReportName\": null,\n            \"extension\": null,\n            \"memberStatus\": \"NEW\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": 0,\n            \"currentTouchEnteredDatetime\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"\\\"EST\\\"\",\n            \"optoutFlag\": false,\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"dueAt\": null,\n            \"lastTouchDateTime\": null,\n            \"currentTouchType\": null,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"crmAccountId\": null,\n            \"linkedinUrl\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"lastTextOutcome\": null,\n            \"timezonePhone\": null,\n            \"pausedDatetime\": null,\n            \"pausedBy\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": null,\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": null,\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"cadenceOutcomeWeight\": 0,\n            \"customDate10\": null,\n            \"customDate11\": null,\n            \"customDate12\": null,\n            \"customDate13\": null,\n            \"customDate14\": null,\n            \"customDate15\": null,\n            \"customDate16\": null,\n            \"customDate17\": null,\n            \"customDate18\": null,\n            \"customDate19\": null,\n            \"customDate20\": null,\n            \"customDate6\": null,\n            \"customDate7\": null,\n            \"customDate8\": null,\n            \"customDate9\": null,\n            \"customPhone10\": null,\n            \"customPhone11\": null,\n            \"customPhone12\": null,\n            \"customPhone13\": null,\n            \"customPhone14\": null,\n            \"customPhone15\": null,\n            \"customPhone16\": null,\n            \"customPhone17\": null,\n            \"customPhone18\": null,\n            \"customPhone19\": null,\n            \"customPhone6\": null,\n            \"customPhone7\": null,\n            \"customPhone8\": null,\n            \"customPhone9\": null,\n            \"customVarchar21\": null,\n            \"customVarchar22\": null,\n            \"customVarchar23\": null,\n            \"customVarchar24\": null,\n            \"customVarchar25\": null,\n            \"customVarchar26\": null,\n            \"customVarchar27\": null,\n            \"customVarchar28\": null,\n            \"customVarchar29\": null,\n            \"customVarchar30\": null,\n            \"customVarchar31\": null,\n            \"customVarchar32\": null,\n            \"customVarchar33\": null,\n            \"customVarchar34\": null,\n            \"customVarchar35\": null,\n            \"customVarchar36\": null,\n            \"customVarchar37\": null,\n            \"customVarchar38\": null,\n            \"customVarchar39\": null,\n            \"customVarchar40\": null,\n            \"customVarchar41\": null,\n            \"customVarchar42\": null,\n            \"customVarchar43\": null,\n            \"customVarchar44\": null,\n            \"customVarchar45\": null,\n            \"customVarchar46\": null,\n            \"customVarchar47\": null,\n            \"customVarchar48\": null,\n            \"customVarchar49\": null,\n            \"customVarchar50\": null,\n            \"extensionCustomPhone6\": null,\n            \"extensionCustomPhone7\": null,\n            \"timezoneCustomPhone10\": null,\n            \"timezoneCustomPhone11\": null,\n            \"timezoneCustomPhone12\": null,\n            \"timezoneCustomPhone13\": null,\n            \"timezoneCustomPhone14\": null,\n            \"timezoneCustomPhone15\": null,\n            \"timezoneCustomPhone16\": null,\n            \"timezoneCustomPhone17\": null,\n            \"timezoneCustomPhone18\": null,\n            \"timezoneCustomPhone19\": null,\n            \"timezoneCustomPhone6\": null,\n            \"timezoneCustomPhone7\": null,\n            \"timezoneCustomPhone8\": null,\n            \"timezoneCustomPhone9\": null,\n            \"touchid\": null,\n            \"dueat\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"tag\": [],\n                \"account\": [\n                    {\n                        \"id\": 11454\n                    }\n                ]\n            },\n            \"lastSyncDatetime\": null,\n            \"localTime\": {},\n            \"stats\": {\n                \"emailCount\": \"0\",\n                \"callCount\": \"0\",\n                \"otherCount\": \"0\",\n                \"linkedinCount\": \"0\",\n                \"textCount\": \"0\"\n            },\n            \"pendingActivites\": [],\n            \"pendingEmails\": []\n        },\n        {\n            \"status\": \"error\",\n            \"reason\": \"duplicate\",\n            \"id\": 242168,\n            \"createdDate\": \"2021-07-05T17:29:52Z\",\n            \"updatedDate\": \"2021-07-05T17:29:52Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"xioe\",\n            \"contactName\": \"john  petter12\",\n            \"firstName\": \"john\",\n            \"lastName\": \"petter12\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(302) 563-4567\",\n            \"title\": null,\n            \"email\": \"john12@gmail.com\",\n            \"source\": null,\n            \"crmId\": \"crmgenkey_4b3f7324-a4fc-31ac-a79a-93f9321aa5a1\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": null,\n            \"city\": null,\n            \"sfReportName\": null,\n            \"extension\": null,\n            \"memberStatus\": \"NEW\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": 0,\n            \"currentTouchEnteredDatetime\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"\\\"EST\\\"\",\n            \"optoutFlag\": false,\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"dueAt\": null,\n            \"lastTouchDateTime\": null,\n            \"currentTouchType\": null,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"crmAccountId\": null,\n            \"linkedinUrl\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"lastTextOutcome\": null,\n            \"timezonePhone\": null,\n            \"pausedDatetime\": null,\n            \"pausedBy\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": null,\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": null,\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"cadenceOutcomeWeight\": 0,\n            \"customDate10\": null,\n            \"customDate11\": null,\n            \"customDate12\": null,\n            \"customDate13\": null,\n            \"customDate14\": null,\n            \"customDate15\": null,\n            \"customDate16\": null,\n            \"customDate17\": null,\n            \"customDate18\": null,\n            \"customDate19\": null,\n            \"customDate20\": null,\n            \"customDate6\": null,\n            \"customDate7\": null,\n            \"customDate8\": null,\n            \"customDate9\": null,\n            \"customPhone10\": null,\n            \"customPhone11\": null,\n            \"customPhone12\": null,\n            \"customPhone13\": null,\n            \"customPhone14\": null,\n            \"customPhone15\": null,\n            \"customPhone16\": null,\n            \"customPhone17\": null,\n            \"customPhone18\": null,\n            \"customPhone19\": null,\n            \"customPhone6\": null,\n            \"customPhone7\": null,\n            \"customPhone8\": null,\n            \"customPhone9\": null,\n            \"customVarchar21\": null,\n            \"customVarchar22\": null,\n            \"customVarchar23\": null,\n            \"customVarchar24\": null,\n            \"customVarchar25\": null,\n            \"customVarchar26\": null,\n            \"customVarchar27\": null,\n            \"customVarchar28\": null,\n            \"customVarchar29\": null,\n            \"customVarchar30\": null,\n            \"customVarchar31\": null,\n            \"customVarchar32\": null,\n            \"customVarchar33\": null,\n            \"customVarchar34\": null,\n            \"customVarchar35\": null,\n            \"customVarchar36\": null,\n            \"customVarchar37\": null,\n            \"customVarchar38\": null,\n            \"customVarchar39\": null,\n            \"customVarchar40\": null,\n            \"customVarchar41\": null,\n            \"customVarchar42\": null,\n            \"customVarchar43\": null,\n            \"customVarchar44\": null,\n            \"customVarchar45\": null,\n            \"customVarchar46\": null,\n            \"customVarchar47\": null,\n            \"customVarchar48\": null,\n            \"customVarchar49\": null,\n            \"customVarchar50\": null,\n            \"extensionCustomPhone6\": null,\n            \"extensionCustomPhone7\": null,\n            \"timezoneCustomPhone10\": null,\n            \"timezoneCustomPhone11\": null,\n            \"timezoneCustomPhone12\": null,\n            \"timezoneCustomPhone13\": null,\n            \"timezoneCustomPhone14\": null,\n            \"timezoneCustomPhone15\": null,\n            \"timezoneCustomPhone16\": null,\n            \"timezoneCustomPhone17\": null,\n            \"timezoneCustomPhone18\": null,\n            \"timezoneCustomPhone19\": null,\n            \"timezoneCustomPhone6\": null,\n            \"timezoneCustomPhone7\": null,\n            \"timezoneCustomPhone8\": null,\n            \"timezoneCustomPhone9\": null,\n            \"touchid\": null,\n            \"dueat\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"tag\": [],\n                \"account\": [\n                    {\n                        \"id\": 11454\n                    }\n                ]\n            },\n            \"lastSyncDatetime\": null,\n            \"localTime\": {},\n            \"stats\": {\n                \"emailCount\": \"0\",\n                \"callCount\": \"0\",\n                \"otherCount\": \"0\",\n                \"linkedinCount\": \"0\",\n                \"textCount\": \"0\"\n            },\n            \"pendingActivites\": [],\n            \"pendingEmails\": []\n        },\n        {\n            \"status\": \"error\",\n            \"reason\": \"duplicate\",\n            \"id\": 242168,\n            \"createdDate\": \"2021-07-05T17:29:52Z\",\n            \"updatedDate\": \"2021-07-05T17:29:52Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"xioe\",\n            \"contactName\": \"john  petter12\",\n            \"firstName\": \"john\",\n            \"lastName\": \"petter12\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(302) 563-4567\",\n            \"title\": null,\n            \"email\": \"john12@gmail.com\",\n            \"source\": null,\n            \"crmId\": \"crmgenkey_4b3f7324-a4fc-31ac-a79a-93f9321aa5a1\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": null,\n            \"city\": null,\n            \"sfReportName\": null,\n            \"extension\": null,\n            \"memberStatus\": \"NEW\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": 0,\n            \"currentTouchEnteredDatetime\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"\\\"EST\\\"\",\n            \"optoutFlag\": false,\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"dueAt\": null,\n            \"lastTouchDateTime\": null,\n            \"currentTouchType\": null,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"crmAccountId\": null,\n            \"linkedinUrl\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"lastTextOutcome\": null,\n            \"timezonePhone\": null,\n            \"pausedDatetime\": null,\n            \"pausedBy\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": null,\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": null,\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"cadenceOutcomeWeight\": 0,\n            \"customDate10\": null,\n            \"customDate11\": null,\n            \"customDate12\": null,\n            \"customDate13\": null,\n            \"customDate14\": null,\n            \"customDate15\": null,\n            \"customDate16\": null,\n            \"customDate17\": null,\n            \"customDate18\": null,\n            \"customDate19\": null,\n            \"customDate20\": null,\n            \"customDate6\": null,\n            \"customDate7\": null,\n            \"customDate8\": null,\n            \"customDate9\": null,\n            \"customPhone10\": null,\n            \"customPhone11\": null,\n            \"customPhone12\": null,\n            \"customPhone13\": null,\n            \"customPhone14\": null,\n            \"customPhone15\": null,\n            \"customPhone16\": null,\n            \"customPhone17\": null,\n            \"customPhone18\": null,\n            \"customPhone19\": null,\n            \"customPhone6\": null,\n            \"customPhone7\": null,\n            \"customPhone8\": null,\n            \"customPhone9\": null,\n            \"customVarchar21\": null,\n            \"customVarchar22\": null,\n            \"customVarchar23\": null,\n            \"customVarchar24\": null,\n            \"customVarchar25\": null,\n            \"customVarchar26\": null,\n            \"customVarchar27\": null,\n            \"customVarchar28\": null,\n            \"customVarchar29\": null,\n            \"customVarchar30\": null,\n            \"customVarchar31\": null,\n            \"customVarchar32\": null,\n            \"customVarchar33\": null,\n            \"customVarchar34\": null,\n            \"customVarchar35\": null,\n            \"customVarchar36\": null,\n            \"customVarchar37\": null,\n            \"customVarchar38\": null,\n            \"customVarchar39\": null,\n            \"customVarchar40\": null,\n            \"customVarchar41\": null,\n            \"customVarchar42\": null,\n            \"customVarchar43\": null,\n            \"customVarchar44\": null,\n            \"customVarchar45\": null,\n            \"customVarchar46\": null,\n            \"customVarchar47\": null,\n            \"customVarchar48\": null,\n            \"customVarchar49\": null,\n            \"customVarchar50\": null,\n            \"extensionCustomPhone6\": null,\n            \"extensionCustomPhone7\": null,\n            \"timezoneCustomPhone10\": null,\n            \"timezoneCustomPhone11\": null,\n            \"timezoneCustomPhone12\": null,\n            \"timezoneCustomPhone13\": null,\n            \"timezoneCustomPhone14\": null,\n            \"timezoneCustomPhone15\": null,\n            \"timezoneCustomPhone16\": null,\n            \"timezoneCustomPhone17\": null,\n            \"timezoneCustomPhone18\": null,\n            \"timezoneCustomPhone19\": null,\n            \"timezoneCustomPhone6\": null,\n            \"timezoneCustomPhone7\": null,\n            \"timezoneCustomPhone8\": null,\n            \"timezoneCustomPhone9\": null,\n            \"touchid\": null,\n            \"dueat\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"tag\": [],\n                \"account\": [\n                    {\n                        \"id\": 11454\n                    }\n                ]\n            },\n            \"lastSyncDatetime\": null,\n            \"localTime\": {},\n            \"stats\": {\n                \"emailCount\": \"0\",\n                \"callCount\": \"0\",\n                \"otherCount\": \"0\",\n                \"linkedinCount\": \"0\",\n                \"textCount\": \"0\"\n            },\n            \"pendingActivites\": [],\n            \"pendingEmails\": []\n        }\n    ]\n}"}],"_postman_id":"104f244d-084f-486d-a645-04a6fe0f91db"},{"name":"Prospect","id":"2a222bf8-7d39-41a3-9181-116a2cfb32c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\":\"john\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id","description":"<p>To update an existing prospect in the Cadence application.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"53ca9fab-770e-4f55-8dc5-5a1686ddd4a4","name":"Update Prospect","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\":\"john\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:18:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 193018,\n            \"createdDate\": \"2020-11-18T10:51:02Z\",\n            \"updatedDate\": \"2020-12-30T08:18:07Z\",\n            \"emailTouchOutcome\": null,\n            \"callTouchOutcome\": null,\n            \"otherTouchOutcome\": null,\n            \"accountName\": \"David\",\n            \"contactName\": \"john lo\",\n            \"firstName\": \"john\",\n            \"lastName\": \"lo\",\n            \"recordType\": \"Contact\",\n            \"phone\": \"(603) 386-0304\",\n            \"title\": null,\n            \"email\": \"david2@gmail.com\",\n            \"source\": null,\n            \"crmId\": \"crmgenkey_da20ee01-c3a0-347a-8ce1-79da1f084f11\",\n            \"campaignName\": null,\n            \"touchType\": null,\n            \"state\": \"TN\",\n            \"city\": \"Chennai\",\n            \"sfReportName\": \"David.csv\",\n            \"extension\": null,\n            \"memberStatus\": \"COMPLETED\",\n            \"currentTouchStatus\": null,\n            \"currentTouchId\": 0,\n            \"currentTouchEnteredDatetime\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": \"2020-11-30\",\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"timezone\": \"EST\",\n            \"optoutFlag\": false,\n            \"optoutDatetime\": null,\n            \"memberStage\": null,\n            \"subject\": null,\n            \"activityId\": null,\n            \"firstDialedDate\": null,\n            \"lastDialedDate\": null,\n            \"callCounter\": 0,\n            \"lastTalkerCallOutcome\": null,\n            \"lastDaCallOutcome\": null,\n            \"emailCounter\": 0,\n            \"firstEmailedDate\": null,\n            \"lastEmailedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"product\": null,\n            \"due\": null,\n            \"duedate\": null,\n            \"lastActivityDatetime\": \"2020-12-30T08:18:07Z\",\n            \"lastTouchDateTime\": \"2020-12-23T06:52:08Z\",\n            \"currentTouchType\": null,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"linkedinUrl\": null,\n            \"crmAccountId\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"firstTextedDate\": null,\n            \"lastTextOutcome\": null,\n            \"lastTextedDate\": null,\n            \"textCounter\": 0,\n            \"pausedBy\": null,\n            \"pausedDatetime\": null,\n            \"timezonePhone\": null,\n            \"leadScore\": null,\n            \"activityComments\": null,\n            \"nextEmailSendDatetime\": null,\n            \"pausedEndDatetime\": null,\n            \"lastTouch\": \"LINKEDIN\",\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"tag\": null,\n            \"callEngagementScore\": 0,\n            \"emailEngagementScore\": 0,\n            \"linkedinEngagementScore\": 0,\n            \"textEngagementScore\": 0,\n            \"totalEngagementScore\": 0,\n            \"otherEngagementScore\": 0,\n            \"nextTouch\": null,\n            \"fromEmail\": \"tkarpagam@gembrill.com\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ],\n                \"tag\": [],\n                \"account\": [\n                    {\n                        \"id\": 2998\n                    }\n                ]\n            },\n            \"lastSyncDatetime\": null,\n            \"localTime\": {\n                \"timezone\": \"EST5EDT\",\n                \"observesDST\": \"Y\",\n                \"prospectLocalTime\": \"03:18 AM EST\",\n                \"latitude\": \"42.761000\",\n                \"longitude\": \"-71.463400\"\n            },\n            \"stats\": {\n                \"emailCount\": \"0\",\n                \"callCount\": \"0\",\n                \"otherCount\": \"0\",\n                \"textLinkedinCount\": \"0\"\n            },\n            \"pendingActivites\": [],\n            \"pendingEmails\": []\n        }\n    ]\n}"}],"_postman_id":"2a222bf8-7d39-41a3-9181-116a2cfb32c9"},{"name":"Prospect","id":"e4dde11f-6b6a-4d4d-9212-d09ed9f20556","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/prospects/:id","description":"<p>To delete an existing prospect from Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","prospects",":id"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"d394f23b-2eba-476a-a090-126d9aaeffce","name":"Delete Prospect","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/prospects/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 08:13:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"e4dde11f-6b6a-4d4d-9212-d09ed9f20556"}],"id":"42b06d07-101d-4c17-883e-bc70cc1455a7","description":"<p>Prospect could be a contact or lead to be approached for business and converted to a Customer.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accountName<br /><code>String</code></td>\n<td>Name of the company associated to the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>contactName<br /><code>String</code></td>\n<td>Name of the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>callTouchOutcome<br /><code>String</code></td>\n<td>Outcome of the call made to the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>city<br /><code>String</code></td>\n<td>Prospect's city of residence</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>crmId<br /><code>String</code></td>\n<td>Prospect CRM ID</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>createdDate<br /><code>Date-Time</code></td>\n<td>Date and time when the prospect was created</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>customInteger1<br /><code>Integer</code></td>\n<td>The value of the prospect’s 1st custom field</td>\n<td><code>Filterable</code><br /><code>Readonly</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>customInteger2<br /><code>Integer</code></td>\n<td>The value of the prospect’s 2nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customInteger3<br /><code>Integer</code></td>\n<td>The value of the prospect’s 3rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customInteger4<br /><code>Integer</code></td>\n<td>The value of the prospect’s 4th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customInteger5<br /><code>Integer</code></td>\n<td>The value of the prospect’s 5th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>callEngagementScore<br /><code>Integer</code></td>\n<td>Call Engagement Score of the prospect</td>\n<td></td>\n</tr>\n<tr>\n<td>currentTouchStatus<br /><code>String</code></td>\n<td>Prospect's current touch status</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>currentTouchId<br /><code>Long</code></td>\n<td>Prospect's current Touch ID</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>currentTouchEnteredDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the prospect was entered to the current touch</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>customDate1<br /><code>date</code></td>\n<td>The value of the prospect’s first custom date field</td>\n<td><code>Filterable</code><br /><code>Readonly</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>customDate2<br /><code>date</code></td>\n<td>The value of the prospect’s 2nd custom date field</td>\n<td></td>\n</tr>\n<tr>\n<td>customDate3<br /><code>date</code></td>\n<td>The value of the prospect’s 3rd custom date field</td>\n<td></td>\n</tr>\n<tr>\n<td>customDate4<br /><code>date</code></td>\n<td>The value of the prospect’s 4th custom date field</td>\n<td></td>\n</tr>\n<tr>\n<td>customDate5<br /><code>date</code></td>\n<td>The value of the prospect’s 5th custom date field</td>\n<td></td>\n</tr>\n<tr>\n<td>customTimestamp1<br /><code>Date-Time</code></td>\n<td>The value of the prospect’s first custom date and time field</td>\n<td><code>Filterable</code><br /><code>Readonly</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>customTimestamp2<br /><code>Date-Time</code></td>\n<td>The value of the prospect’s 2nd custom date and time field</td>\n<td></td>\n</tr>\n<tr>\n<td>customTimestamp3<br /><code>Date-Time</code></td>\n<td>The value of the prospect’s 3rd custom date and time field</td>\n<td></td>\n</tr>\n<tr>\n<td>customTimestamp4<br /><code>Date-Time</code></td>\n<td>The value of the prospect’s 4th custom date and time field</td>\n<td></td>\n</tr>\n<tr>\n<td>customTimestamp5<br /><code>Date-Time</code></td>\n<td>The value of the prospect’s 5th custom date and time field</td>\n<td></td>\n</tr>\n<tr>\n<td>customTimestamp6<br /><code>Date-Time</code></td>\n<td>The value of the prospect’s 6th custom date and time field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar1<br /><code>String</code></td>\n<td>The value of the prospect’s first custom field</td>\n<td><code>Filterable</code><br /><code>Readonly</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>customVarchar2<br /><code>String</code></td>\n<td>The value of the prospect’s 2nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar3<br /><code>String</code></td>\n<td>The value of the prospect’s 3rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar4<br /><code>String</code></td>\n<td>The value of the prospect’s 4th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar5<br /><code>String</code></td>\n<td>The value of the prospect’s 5th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar6<br /><code>String</code></td>\n<td>The value of the prospect’s 6th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar7<br /><code>String</code></td>\n<td>The value of the prospect’s 7th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar8<br /><code>String</code></td>\n<td>The value of the prospect’s 8th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar9<br /><code>String</code></td>\n<td>The value of the prospect’s 9th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar10<br /><code>String</code></td>\n<td>The value of the prospect’s 10th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar11<br /><code>String</code></td>\n<td>The value of the prospect’s 11th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar12<br /><code>String</code></td>\n<td>The value of the prospect’s 12th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar13<br /><code>String</code></td>\n<td>The value of the prospect’s 13th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar14<br /><code>String</code></td>\n<td>The value of the prospect’s 14th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar15<br /><code>String</code></td>\n<td>The value of the prospect’s 15th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar16<br /><code>String</code></td>\n<td>The value of the prospect’s 16th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar17<br /><code>String</code></td>\n<td>The value of the prospect’s 17th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar18<br /><code>String</code></td>\n<td>The value of the prospect’s 18th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar19<br /><code>String</code></td>\n<td>The value of the prospect’s 19th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar20<br /><code>String</code></td>\n<td>The value of the prospect’s 20th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar21<br /><code>String</code></td>\n<td>The value of the prospect’s 21st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar22<br /><code>String</code></td>\n<td>The value of the prospect’s 22nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar23<br /><code>String</code></td>\n<td>The value of the prospect’s 23rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar24<br /><code>String</code></td>\n<td>The value of the prospect’s 24th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar25<br /><code>String</code></td>\n<td>The value of the prospect’s 25th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar26<br /><code>String</code></td>\n<td>The value of the prospect’s 26th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar27<br /><code>String</code></td>\n<td>The value of the prospect’s 27th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar28<br /><code>String</code></td>\n<td>The value of the prospect’s 28th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar29<br /><code>String</code></td>\n<td>The value of the prospect’s 29th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar30<br /><code>String</code></td>\n<td>The value of the prospect’s 30th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar31<br /><code>String</code></td>\n<td>The value of the prospect’s 31st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar32<br /><code>String</code></td>\n<td>The value of the prospect’s 32nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar33<br /><code>String</code></td>\n<td>The value of the prospect’s 33rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar34<br /><code>String</code></td>\n<td>The value of the prospect’s 34th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar35<br /><code>String</code></td>\n<td>The value of the prospect’s 35th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar36<br /><code>String</code></td>\n<td>The value of the prospect’s 36th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar37<br /><code>String</code></td>\n<td>The value of the prospect’s 37th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar38<br /><code>String</code></td>\n<td>The value of the prospect’s 38th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar39<br /><code>String</code></td>\n<td>The value of the prospect’s 39th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar40<br /><code>String</code></td>\n<td>The value of the prospect’s 40th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar41<br /><code>String</code></td>\n<td>The value of the prospect’s 41st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar42<br /><code>String</code></td>\n<td>The value of the prospect’s 42nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar43<br /><code>String</code></td>\n<td>The value of the prospect’s 43rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar44<br /><code>String</code></td>\n<td>The value of the prospect’s 44th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar45<br /><code>String</code></td>\n<td>The value of the prospect’s 45th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar46<br /><code>String</code></td>\n<td>The value of the prospect’s 46th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar47<br /><code>String</code></td>\n<td>The value of the prospect’s 47th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar48<br /><code>String</code></td>\n<td>The value of the prospect’s 48th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar49<br /><code>String</code></td>\n<td>The value of the prospect’s 49th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar50<br /><code>String</code></td>\n<td>The value of the prospect’s 50th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar51<br /><code>String</code></td>\n<td>The value of the prospect’s 51st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar52<br /><code>String</code></td>\n<td>The value of the prospect’s 52nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar53<br /><code>String</code></td>\n<td>The value of the prospect’s 53rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar54<br /><code>String</code></td>\n<td>The value of the prospect’s 54th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar55<br /><code>String</code></td>\n<td>The value of the prospect’s 55th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar56<br /><code>String</code></td>\n<td>The value of the prospect’s 56th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar57<br /><code>String</code></td>\n<td>The value of the prospect’s 57th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar58<br /><code>String</code></td>\n<td>The value of the prospect’s 58th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar59<br /><code>String</code></td>\n<td>The value of the prospect’s 59th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar60<br /><code>String</code></td>\n<td>The value of the prospect’s 60th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar61<br /><code>String</code></td>\n<td>The value of the prospect’s 61st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar62<br /><code>String</code></td>\n<td>The value of the prospect’s 62nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar63<br /><code>String</code></td>\n<td>The value of the prospect’s 63rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar64<br /><code>String</code></td>\n<td>The value of the prospect’s 64th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar65<br /><code>String</code></td>\n<td>The value of the prospect’s 65th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar66<br /><code>String</code></td>\n<td>The value of the prospect’s 66th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar67<br /><code>String</code></td>\n<td>The value of the prospect’s 67th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar68<br /><code>String</code></td>\n<td>The value of the prospect’s 68th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar69<br /><code>String</code></td>\n<td>The value of the prospect’s 69th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar70<br /><code>String</code></td>\n<td>The value of the prospect’s 70th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar71<br /><code>String</code></td>\n<td>The value of the prospect’s 71st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar72<br /><code>String</code></td>\n<td>The value of the prospect’s 72nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar73<br /><code>String</code></td>\n<td>The value of the prospect’s 73rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar74<br /><code>String</code></td>\n<td>The value of the prospect’s 74th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar75<br /><code>String</code></td>\n<td>The value of the prospect’s 75th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar76<br /><code>String</code></td>\n<td>The value of the prospect’s 76th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar77<br /><code>String</code></td>\n<td>The value of the prospect’s 77th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar78<br /><code>String</code></td>\n<td>The value of the prospect’s 78th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar79<br /><code>String</code></td>\n<td>The value of the prospect’s 79th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar80<br /><code>String</code></td>\n<td>The value of the prospect’s 80th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar81<br /><code>String</code></td>\n<td>The value of the prospect’s 81st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar82<br /><code>String</code></td>\n<td>The value of the prospect’s 82nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar83<br /><code>String</code></td>\n<td>The value of the prospect’s 83rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar84<br /><code>String</code></td>\n<td>The value of the prospect’s 84th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar85<br /><code>String</code></td>\n<td>The value of the prospect’s 85th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar86<br /><code>String</code></td>\n<td>The value of the prospect’s 86th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar87<br /><code>String</code></td>\n<td>The value of the prospect’s 87th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar88<br /><code>String</code></td>\n<td>The value of the prospect’s 88th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar89<br /><code>String</code></td>\n<td>The value of the prospect’s 89th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar90<br /><code>String</code></td>\n<td>The value of the prospect’s 90th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar91<br /><code>String</code></td>\n<td>The value of the prospect’s 91st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar92<br /><code>String</code></td>\n<td>The value of the prospect’s 92nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar93<br /><code>String</code></td>\n<td>The value of the prospect’s 93rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar94<br /><code>String</code></td>\n<td>The value of the prospect’s 94th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar95<br /><code>String</code></td>\n<td>The value of the prospect’s 95th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar96<br /><code>String</code></td>\n<td>The value of the prospect’s 96th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar97<br /><code>String</code></td>\n<td>The value of the prospect’s 97th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar98<br /><code>String</code></td>\n<td>The value of the prospect’s 98th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar99<br /><code>String</code></td>\n<td>The value of the prospect’s 99th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar100<br /><code>String</code></td>\n<td>The value of the prospect’s 100th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar101<br /><code>String</code></td>\n<td>The value of the prospect’s 101st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar102<br /><code>String</code></td>\n<td>The value of the prospect’s 102nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar103<br /><code>String</code></td>\n<td>The value of the prospect’s 103rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar104<br /><code>String</code></td>\n<td>The value of the prospect’s 104th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar105<br /><code>String</code></td>\n<td>The value of the prospect’s 105th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar106<br /><code>String</code></td>\n<td>The value of the prospect’s 106th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar107<br /><code>String</code></td>\n<td>The value of the prospect’s 107th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar108<br /><code>String</code></td>\n<td>The value of the prospect’s 108th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar109<br /><code>String</code></td>\n<td>The value of the prospect’s 109th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar110<br /><code>String</code></td>\n<td>The value of the prospect’s 110th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar111<br /><code>String</code></td>\n<td>The value of the prospect’s 111st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar112<br /><code>String</code></td>\n<td>The value of the prospect’s 112nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar113<br /><code>String</code></td>\n<td>The value of the prospect’s 113rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar114<br /><code>String</code></td>\n<td>The value of the prospect’s 114th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar115<br /><code>String</code></td>\n<td>The value of the prospect’s 115th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar116<br /><code>String</code></td>\n<td>The value of the prospect’s 116th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar117<br /><code>String</code></td>\n<td>The value of the prospect’s 117th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar118<br /><code>String</code></td>\n<td>The value of the prospect’s 118th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar119<br /><code>String</code></td>\n<td>The value of the prospect’s 119th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar120<br /><code>String</code></td>\n<td>The value of the prospect’s 120th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar121<br /><code>String</code></td>\n<td>The value of the prospect’s 121st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar122<br /><code>String</code></td>\n<td>The value of the prospect’s 122nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar123<br /><code>String</code></td>\n<td>The value of the prospect’s 123rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar124<br /><code>String</code></td>\n<td>The value of the prospect’s 124th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar125<br /><code>String</code></td>\n<td>The value of the prospect’s 125th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar126<br /><code>String</code></td>\n<td>The value of the prospect’s 126th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar127<br /><code>String</code></td>\n<td>The value of the prospect’s 127th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar128<br /><code>String</code></td>\n<td>The value of the prospect’s 128th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar129<br /><code>String</code></td>\n<td>The value of the prospect’s 129th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar130<br /><code>String</code></td>\n<td>The value of the prospect’s 130th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar131<br /><code>String</code></td>\n<td>The value of the prospect’s 131st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar132<br /><code>String</code></td>\n<td>The value of the prospect’s 132nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar133<br /><code>String</code></td>\n<td>The value of the prospect’s 133rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar134<br /><code>String</code></td>\n<td>The value of the prospect’s 134th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar135<br /><code>String</code></td>\n<td>The value of the prospect’s 135th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar136<br /><code>String</code></td>\n<td>The value of the prospect’s 136th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar137<br /><code>String</code></td>\n<td>The value of the prospect’s 137th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar138<br /><code>String</code></td>\n<td>The value of the prospect’s 138th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar139<br /><code>String</code></td>\n<td>The value of the prospect’s 139th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar140<br /><code>String</code></td>\n<td>The value of the prospect’s 140th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar141<br /><code>String</code></td>\n<td>The value of the prospect’s 141st custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar142<br /><code>String</code></td>\n<td>The value of the prospect’s 142nd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar143<br /><code>String</code></td>\n<td>The value of the prospect’s 143rd custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar144<br /><code>String</code></td>\n<td>The value of the prospect’s 144th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar145<br /><code>String</code></td>\n<td>The value of the prospect’s 145th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar146<br /><code>String</code></td>\n<td>The value of the prospect’s 146th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar147<br /><code>String</code></td>\n<td>The value of the prospect’s 147th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar148<br /><code>String</code></td>\n<td>The value of the prospect’s 148th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar149<br /><code>String</code></td>\n<td>The value of the prospect’s 149th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customVarchar150<br /><code>String</code></td>\n<td>The value of the prospect’s 150th custom field</td>\n<td></td>\n</tr>\n<tr>\n<td>customPhone1<br /><code>String</code></td>\n<td>The value of the prospect’s first custom phone field</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>customPhone2<br /><code>String</code></td>\n<td>The value of the prospect’s 2nd custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>customPhone3<br /><code>String</code></td>\n<td>The value of the prospect’s 3rd custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>customPhone4<br /><code>String</code></td>\n<td>The value of the prospect’s 4th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>customPhone5<br /><code>String</code></td>\n<td>The value of the prospect’s 5th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>customNumeric1<br /><code>String</code></td>\n<td>The value of the prospect’s first custom numeric field</td>\n<td></td>\n</tr>\n<tr>\n<td>customNumeric2<br /><code>String</code></td>\n<td>The value of the prospect’s 2nd custom numeric field</td>\n<td></td>\n</tr>\n<tr>\n<td>customNumeric3<br /><code>String</code></td>\n<td>The value of the prospect’s 3rd custom numeric field</td>\n<td></td>\n</tr>\n<tr>\n<td>customNumeric4<br /><code>String</code></td>\n<td>The value of the prospect’s 4th custom numeric field</td>\n<td></td>\n</tr>\n<tr>\n<td>customNumeric5<br /><code>String</code></td>\n<td>The value of the prospect’s 5th custom numeric field</td>\n<td></td>\n</tr>\n<tr>\n<td>campaignName<br /><code>String</code></td>\n<td>Name of the campaign the prospect is associated with</td>\n<td></td>\n</tr>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Prospect id<br /><code>Readonly</code></td>\n<td></td>\n</tr>\n<tr>\n<td>emailTouchOutcome<br /><code>String</code></td>\n<td>Outcome of the email sent to the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>extension<br /><code>String</code></td>\n<td>Extension number of the prospect</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>email<br /><code>String</code></td>\n<td>Prospect's Email ID</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>firstName<br /><code>String</code></td>\n<td>First name of the prospect</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>firstTextedDate<br /><code>Date-Time</code></td>\n<td>Date and time when you first texted the prospect</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>lastName<br /><code>String</code></td>\n<td>Last name of the prospect</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>lastTextedDate<br /><code>date time</code></td>\n<td>Date and time when you last texted the prospect</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>lastTextOutcome<br /><code>String</code></td>\n<td>Outcome of the last text sent to the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>linkedinEngagementScore<br /><code>Integer</code></td>\n<td>LinkedIn Engagement Score of the prospect</td>\n<td></td>\n</tr>\n<tr>\n<td>optoutFlag<br /><code>Boolean</code></td>\n<td>Represents whether the prospect is currently opted out from further communications or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>optoutDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the prospect was opted out</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>otherEngagementScore<br /><code>Integer</code></td>\n<td>Social Engagement Score of the prospect</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>otherTouchOutcome<br /><code>String</code></td>\n<td>Outcome of the social touch executed for the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>phone<br /><code>String</code></td>\n<td>Prospect's phone number</td>\n<td><code>Filterable</code><br />'Sortable`</td>\n</tr>\n<tr>\n<td>pausedDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the prospect was paused</td>\n<td>'Readonly`</td>\n</tr>\n<tr>\n<td>pausedBy<br /><code>String</code></td>\n<td>Name of the user who paused the prospect</td>\n<td>'Readonly`</td>\n</tr>\n<tr>\n<td>recordType<br /><code>String</code></td>\n<td>Record type of the prospect. Could be Contact or Lead</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>state<br /><code>String</code></td>\n<td>Prospect's state of residence</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>sfReportName<br /><code>String</code></td>\n<td>CRM report name</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>title<br /><code>String</code></td>\n<td>Title of the prospect</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone1<br /><code>String</code></td>\n<td>The value of the prospect’s first custom phone field</td>\n<td><code>Filterable</code><br /><code>Sortable</code><br /><code>Readonly</code></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone2<br /><code>String</code></td>\n<td>The value of the prospect’s 2nd custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone3<br /><code>String</code></td>\n<td>The value of the prospect’s 3rd custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone4<br /><code>String</code></td>\n<td>The value of the prospect’s 4th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone5<br /><code>String</code></td>\n<td>The value of the prospect’s 5th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone6<br /><code>String</code></td>\n<td>The value of the prospect’s 6th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone7<br /><code>String</code></td>\n<td>The value of the prospect’s 7th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone8<br /><code>String</code></td>\n<td>The value of the prospect’s 8th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone9<br /><code>String</code></td>\n<td>The value of the prospect’s 9th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezoneCustomPhone10<br /><code>String</code></td>\n<td>The value of the prospect’s 10th custom phone field</td>\n<td></td>\n</tr>\n<tr>\n<td>timezone<br /><code>String</code></td>\n<td>Prospect's timezone</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>totalEngagementScore<br /><code>Integer</code></td>\n<td>Total Engagement Score of the prospect</td>\n<td></td>\n</tr>\n<tr>\n<td>updatedDate<br /><code>Date-Time</code></td>\n<td>Date and time when the prospect data was last updated</td>\n<td><code>Filterable</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser<br /><code>Array of Objects</code></td>\n<td>User who uploaded the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>Tag<br /><code>Array of Objects</code></td>\n<td>Tag associated with the prospect</td>\n<td></td>\n</tr>\n<tr>\n<td>Account<br /><code>Array of Objects</code></td>\n<td>Name of the account the prospect associated with</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>Cadence<br /><code>Array of Objects</code></td>\n<td>Name of the Cadence the prospect associated with</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>Touch<br /><code>Array of Objects</code></td>\n<td>Touch type the prospect assigned to</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>Task<br /><code>Array of Objects</code></td>\n<td>Tasks associated with the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>Notes<br /><code>Array of Objects</code></td>\n<td>Notes associated with the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"42b06d07-101d-4c17-883e-bc70cc1455a7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Public","item":[{"name":"Get user CRM access token","id":"57f930fc-aaa5-4e70-a629-4437d138f624","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"57f930fc-aaa5-4e70-a629-4437d138f624"}],"id":"800b3f14-3b5c-4242-a5e4-6c3131d47821","_postman_id":"800b3f14-3b5c-4242-a5e4-6c3131d47821","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Reports","item":[{"name":"Actions","item":[{"name":"Export Excel Data","id":"0e1084d3-c930-49a4-a4cd-f1d84c98b5d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌/{{koncert_cadence_api}}/api/v2/reports/getExcelData?{showByEachUser}&{startDate}&{endDate}&{logicalVariable}&{[selectedUserIds]}&{[cadenceIds]}","description":"<p>To export the report details in Excel format.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","reports","getExcelData"],"host":["https"],"query":[{"description":{"content":"<p>Shows the stats by user</p>\n","type":"text/plain"},"key":"{showByEachUser}","value":null},{"description":{"content":"<p>Date from which the report information has to be retrieved</p>\n","type":"text/plain"},"key":"{startDate}","value":null},{"description":{"content":"<p>Date until which the report information has to be retrieved</p>\n","type":"text/plain"},"key":"{endDate}","value":null},{"description":{"content":"<p>Date variable</p>\n","type":"text/plain"},"key":"{logicalVariable}","value":null},{"description":{"content":"<p>ID of the user (Talker)</p>\n","type":"text/plain"},"key":"{[selectedUserIds]}","value":null},{"description":{"content":"<p>ID of the Cadence</p>\n","type":"text/plain"},"key":"{[cadenceIds]}","value":null}],"variable":[]}},"response":[{"id":"4ba96676-4311-4ef9-91cf-2a45079bd4ef","name":"Export Excel Data","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v2/reports/getExcelData?{showByEachUser}&{startDate}&{endDate}&{logicalVariable}&{[selectedUserIds]}&[cadenceIds]","path":["api","v2","reports","getExcelData"],"query":[{"key":"{showByEachUser}","value":null},{"key":"{startDate}","value":null},{"key":"{endDate}","value":null},{"key":"{logicalVariable}","value":null},{"key":"{[selectedUserIds]}","value":null},{"key":"[cadenceIds]","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"raw","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Disposition","value":"attachment; filename=excelReport.xls"},{"key":"Date","value":"Wed, 30 Dec 2020 11:03:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/vnd.ms-excel"}],"cookie":[],"responseTime":null,"body":"Excel sheet will be response"}],"_postman_id":"0e1084d3-c930-49a4-a4cd-f1d84c98b5d8"},{"name":"Export CSV Data","id":"19b16888-0062-42fa-8e5a-3bbd41ce4454","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌/{{koncert_cadence_api}}/api/v2/reports/getCSVData?{showByEachUser}&{startDate}&{endDate}&{logicalVariable}&{[selectedUserIds]}&[cadenceIds]","description":"<p>To export the report details as a 'CSV' file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","reports","getCSVData"],"host":["https"],"query":[{"key":"{showByEachUser}","value":null},{"key":"{startDate}","value":null},{"key":"{endDate}","value":null},{"key":"{logicalVariable}","value":null},{"key":"{[selectedUserIds]}","value":null},{"key":"[cadenceIds]","value":null}],"variable":[]}},"response":[{"id":"1b85a05e-6339-421c-86c2-912a124b1ff7","name":"Export CSV Data","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v2/reports/getCSVData?{showByEachUser}&{startDate}&{endDate}&{logicalVariable}&{[selectedUserIds]}&[cadenceIds]","path":["api","v2","reports","getCSVData"],"query":[{"key":"{showByEachUser}","value":null},{"key":"{startDate}","value":null},{"key":"{endDate}","value":null},{"key":"{logicalVariable}","value":null},{"key":"{[selectedUserIds]}","value":null},{"key":"[cadenceIds]","value":null}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"plain","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:06:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"WWW-Authenticate","value":"Bearer error=\"invalid_token\", error_description=\"Bearer token is malformed\", error_uri=\"https://tools.ietf.org/html/rfc6750#section-3.1\""},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"CSV file will be downloaded"}],"_postman_id":"19b16888-0062-42fa-8e5a-3bbd41ce4454"}],"id":"a9f6cd0b-d2ea-4be4-b586-a33e24b6f82e","description":"<p>You can perform the below actions under the Reports tab.</p>\n","_postman_id":"a9f6cd0b-d2ea-4be4-b586-a33e24b6f82e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Report List","id":"6efdf542-4ac2-4fd3-bd86-1d34fa8e4a30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/reports/getSavedReports","description":"<p>To retrieve all the saved reports available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","reports","getSavedReports"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"ab17be7a-57dc-4b9b-9b34-44454178bf71","name":"Reports List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/reports/getSavedReports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:51:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 37,\n            \"reportName\": \"test\",\n            \"selectedUserIds\": \"7431\",\n            \"selectedUserDisplayNames\": \"API Client Admin\",\n            \"dateRangeLogicalVariable\": \"Custom\",\n            \"startDate\": \"10/01/2020\",\n            \"endDate\": \"12/31/2020\",\n            \"selectedCadenceIds\": \"\",\n            \"eachUser\": true\n        },\n        {\n            \"id\": 43,\n            \"reportName\": \"test2\",\n            \"selectedUserIds\": \"7431\",\n            \"selectedUserDisplayNames\": \"API Client Admin\",\n            \"dateRangeLogicalVariable\": \"Last Week\",\n            \"startDate\": \"09/27/2020\",\n            \"endDate\": \"10/03/2020\",\n            \"selectedCadenceIds\": \"3749,3750\",\n            \"eachUser\": false\n        },\n        {\n            \"id\": 48,\n            \"reportName\": \"report1 none\",\n            \"selectedUserIds\": \"\",\n            \"selectedUserDisplayNames\": \"\",\n            \"dateRangeLogicalVariable\": \"Current Week\",\n            \"startDate\": \"11/01/2020\",\n            \"endDate\": \"11/07/2020\",\n            \"selectedCadenceIds\": \"\",\n            \"eachUser\": false\n        },\n        {\n            \"id\": 77,\n            \"reportName\": \"test 212 new123 34 t\",\n            \"selectedUserIds\": \"5710,6575,6282\",\n            \"selectedUserDisplayNames\": \"Kate Kane,Cara Danvers,Oliver Queen\",\n            \"dateRangeLogicalVariable\": \"Last Quarter\",\n            \"startDate\": \"07/01/2020\",\n            \"endDate\": \"09/30/2020\",\n            \"selectedCadenceIds\": \"3547,3679,3477\",\n            \"eachUser\": true\n        }\n    ]\n}"}],"_postman_id":"6efdf542-4ac2-4fd3-bd86-1d34fa8e4a30"},{"name":"Cadence Params","id":"3296a6d4-0e9d-4c87-936b-ecdaf1353697","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/reports/getCadenceParams","description":"<p>To retrieve the report that was applied with filters like date range, Cadence and user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","reports","getCadenceParams"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"98aac218-d1fc-4ebb-adbf-23137e85f7af","name":"Cadence Params","originalRequest":{"method":"GET","header":[],"url":"/api/v2/reports/getCadenceParams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:57:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 586,\n            \"selectedUserIds\": \"7432, 7662\",\n            \"selectedUserDisplayNames\": \"API Client Admin\",\n            \"dateRangeLogicalVariable\": \"Last Quarter\",\n            \"startDate\": \"07/01/2020\",\n            \"endDate\": \"09/30/2020\",\n            \"selectedCadenceIds\": \"4191\",\n            \"selectedGroupName\": null,\n            \"eachUser\": false\n        }\n    ]\n}"}],"_postman_id":"3296a6d4-0e9d-4c87-936b-ecdaf1353697"},{"name":"Overall Reports","id":"70a80f77-1a36-474a-aef4-d53077a1313f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌/{{koncert_cadence_api}}/api/v2/reports?{showByEachUser}&{startDate}&{endDate}&{logicalVariable}&{[selectedUserIds]}&[cadenceIds]","description":"<p>To retrieve the overall report information which includes userView, prospectView, touchView, callView and emailView.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","reports"],"host":["https"],"query":[{"key":"{showByEachUser}","value":null},{"key":"{startDate}","value":null},{"key":"{endDate}","value":null},{"key":"{logicalVariable}","value":null},{"key":"{[selectedUserIds]}","value":null},{"key":"[cadenceIds]","value":null}],"variable":[]}},"response":[{"id":"ac9bab82-63f7-45cc-88e0-bb38455f7da4","name":"Over All Reports","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v2/reports/api/v2/reports?{showByEachUser}&{startDate}&{endDate}&{logicalVariable}&{[selectedUserIds]}&[cadenceIds]","path":["api","v2","reports","api","v2","reports"],"query":[{"key":"{showByEachUser}","value":null},{"key":"{startDate}","value":null},{"key":"{endDate}","value":null},{"key":"{logicalVariable}","value":null},{"key":"{[selectedUserIds]}","value":null},{"key":"[cadenceIds]","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:21:42 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"metaData\": {\n                \"touchtype\": \"Touch Type\",\n                \"no_of_emails_bounced\": \"Bounced\",\n                \"no_of_emails_failed\": \"Failed\",\n                \"no_of_emails_links_clicked\": \"Links Clicked\",\n                \"no_of_emails_opened\": \"Opened\",\n                \"no_of_emails_optout\": \"Opt-out\",\n                \"no_of_text_replied\": \"Received\",\n                \"no_of_emails_replied\": \"Replied\",\n                \"no_of_emails_sent\": \"Sent\",\n                \"no_of_text_sent\": \"Sent\",\n                \"cd1\": \"Qualified Lead\",\n                \"cd2\": \"Meeting Scheduled\",\n                \"cd3\": \"Got Referral\",\n                \"cd5\": \"Follow up\",\n                \"cd10\": \"TD ONLY\",\n                \"cd11\": \"PD ONLY\",\n                \"cd12\": \"CD ONLY\",\n                \"cd4\": \"Not Interested\",\n                \"cd6\": \"Not a Decision Maker\",\n                \"cd7\": \"Call Issue\",\n                \"cd8\": \"Other\",\n                \"cd9\": \"Left VM\",\n                \"stage1\": \"Attempted\",\n                \"stage2\": \"Interested\",\n                \"stage3\": \"Not Interested\",\n                \"stage4\": \"Bad Data\",\n                \"stage5\": \"Do Not Contact\",\n                \"stage6\": \"Opt-out\",\n                \"stage7\": \"Replied\",\n                \"prospect_assigned\": \"Assigned\",\n                \"calls_made\": \"Calls Made\",\n                \"emails_sent\": \"Emails Sent\",\n                \"texts_sent\": \"Texts Sent\"\n            },\n            \"emailView\": [\n                {\n                    \"Replied\": 0,\n                    \"Sent\": 0,\n                    \"Bounced\": 0,\n                    \"Opened\": 0,\n                    \"Links Clicked\": 0,\n                    \"Failed\": 0,\n                    \"Opt-out\": 0\n                }\n            ],\n            \"callView\": [\n                {\n                    \"Qualified Lead\": 0,\n                    \"Meeting Scheduled\": 0,\n                    \"Got Referral\": 0,\n                    \"Follow up\": 0,\n                    \"TD ONLY\": 0,\n                    \"PD ONLY\": 0,\n                    \"CD ONLY\": 0,\n                    \"Not Interested\": 0,\n                    \"Not a Decision Maker\": 0,\n                    \"Call Issue\": 0,\n                    \"Other\": 0,\n                    \"Left VM\": 0\n                }\n            ],\n            \"textView\": [\n                {\n                    \"Sent\": 0,\n                    \"Received\": 0\n                }\n            ],\n            \"prospectView\": [\n                {\n                    \"Attempted\": 0,\n                    \"Interested\": 0,\n                    \"Not Interested\": 0,\n                    \"Bad Data\": 0,\n                    \"Do Not Contact\": 0,\n                    \"Opt-out\": 0,\n                    \"Replied\": 0\n                }\n            ],\n            \"userView\": [\n                {\n                    \"Assigned\": 0,\n                    \"Calls Made\": 0,\n                    \"Emails Sent\": 0,\n                    \"Texts Sent\": 0\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"70a80f77-1a36-474a-aef4-d53077a1313f"}],"id":"04e6b92c-28fb-407d-9385-2e98ee48a72a","description":"<p>Displays activity metrics of the user and the activities performed on prospects, call, email, touches, Cadences, and Templates.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>showByUser <br /><code>Boolean</code></td>\n<td>Shows the stats by user</td>\n<td><code>QueryParam</code></td>\n</tr>\n<tr>\n<td>startDate <br /><code>Date-Time</code></td>\n<td>Date from which the report information has to be retrieved</td>\n<td><code>QueryParam</code></td>\n</tr>\n<tr>\n<td>endDate <br /><code>Date-Time</code></td>\n<td>Date until which the report information has to be retrieved</td>\n<td><code>QueryParam</code></td>\n</tr>\n<tr>\n<td>talkerIds <br /><code>Integer Array</code></td>\n<td>ID of the user (Talker)</td>\n<td><code>QueryParam</code></td>\n</tr>\n<tr>\n<td>cadenceIds <br /><code>Integer Array</code></td>\n<td>ID of the Cadence</td>\n<td><code>QueryParam</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"04e6b92c-28fb-407d-9385-2e98ee48a72a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Schedule","item":[{"name":"Schedule List","id":"ba1dc87c-2bef-48ab-8a1e-a3e4adc28a1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/schedules","description":"<p>To retrieve a list of Schedules available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","schedules"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"b0a00257-633a-4f3c-b4d0-3709efaa2f73","name":"Schedule list","originalRequest":{"method":"GET","header":[],"url":"/api/v2/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:49:41 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 376,\n            \"timezone\": \"America/New_York\",\n            \"name\": \"java\",\n            \"sharedGroups\": [\n                5411\n            ],\n            \"touchType\": \"EMAIL\",\n            \"excludeHolidays\": false,\n            \"useProspectTimezone\": false,\n            \"createdUser\": 5411,\n            \"createdDate\": \"2018-07-26T11:51:24Z\",\n            \"sharedType\": \"none\",\n            \"includeWeekends\": false,\n            \"associations\": {\n                \"touchExecutionTimeSlot\": [\n                    {\n                        \"id\": 12682\n                    },\n                    {\n                        \"id\": 12683\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 53,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"ba1dc87c-2bef-48ab-8a1e-a3e4adc28a1a"},{"name":"Schedule","id":"c4fff7a8-8d6c-4d4d-a0a5-f353e5cb1448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/schedules/:id","description":"<p>To retrieve a specific Schedule based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","schedules",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"b1339475-f6c4-48d4-b249-7a45760c17e8","name":"Snippet","originalRequest":{"method":"GET","header":[],"url":"/api/v2/schedules/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:51:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 376,\n            \"timezone\": \"America/New_York\",\n            \"name\": \"java\",\n            \"sharedGroups\": [\n                5411\n            ],\n            \"touchType\": \"EMAIL\",\n            \"excludeHolidays\": false,\n            \"useProspectTimezone\": false,\n            \"createdUser\": 5411,\n            \"createdDate\": \"2018-07-26T11:51:24Z\",\n            \"sharedType\": \"none\",\n            \"includeWeekends\": false,\n            \"associations\": {\n                \"touchExecutionTimeSlot\": [\n                    {\n                        \"id\": 12682\n                    },\n                    {\n                        \"id\": 12683\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 53,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"c4fff7a8-8d6c-4d4d-a0a5-f353e5cb1448"},{"name":"Schedule","id":"06a88072-81a0-4375-b4b2-d30ed013564a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"name\":\"schedule test\",\r\n   \"timezone\":\"EST\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/schedules","description":"<p>To create a new Schedule.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","schedules"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"179c5721-2c6b-48ab-b3dc-9f2ae8cc073f","name":"Create schedule","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"name\":\"schedule test\",\r\n   \"timezone\":\"EST\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:53:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1933,\n            \"timezone\": \"America/New_York\",\n            \"name\": \"schedule test\",\n            \"sharedGroups\": null,\n            \"touchType\": \"EMAIL\",\n            \"excludeHolidays\": false,\n            \"useProspectTimezone\": false,\n            \"createdUser\": 5411,\n            \"createdDate\": \"2020-12-30T11:53:09Z\",\n            \"sharedType\": \"none\",\n            \"includeWeekends\": false,\n            \"associations\": {\n                \"touchExecutionTimeSlot\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"06a88072-81a0-4375-b4b2-d30ed013564a"},{"name":"Schedule","id":"0436bf82-11bb-4ccc-bc32-58fce2c5d527","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"testSchedule767\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/schedules/1933","description":"<p>To edit and update an existing Schedule information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","schedules","1933"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"32b19826-fcb8-467d-bca6-ddbbe3c3a68b","name":"Update schedule","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"testSchedule767\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{sub-domain}}/api/v2/schedules/1933"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:54:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1933,\n            \"timezone\": \"America/New_York\",\n            \"name\": \"testSchedule767\",\n            \"sharedGroups\": null,\n            \"touchType\": \"EMAIL\",\n            \"excludeHolidays\": false,\n            \"useProspectTimezone\": false,\n            \"createdUser\": 5411,\n            \"createdDate\": \"2020-12-30T11:53:09Z\",\n            \"sharedType\": \"none\",\n            \"includeWeekends\": false,\n            \"associations\": {\n                \"touchExecutionTimeSlot\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"0436bf82-11bb-4ccc-bc32-58fce2c5d527"},{"name":"Schedule","id":"0d31bc52-fae9-4ae8-a774-ff6495f70e4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/schedules/:id","description":"<p>To delete an existing Schedule from the Cadence application.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","schedules",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"b0c01da3-83b0-4457-b723-08f9223ebe03","name":"Delete schedule","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/schedules/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:55:23 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"0d31bc52-fae9-4ae8-a774-ff6495f70e4d"}],"id":"47d3188a-e942-4f75-9c30-925447b75137","description":"<p>Emails can be scheduled and send automatically to the prospects (assigned to the Cadence with Email touch) without any human intervention, based on the time zone selected.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary ID of the Schedule Timeslot</td>\n<td><code>Filterable</code> <br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>weekday  <br /><code>Integer</code></td>\n<td>Accepts value from 0 to 6 represents days of week. E.g 0 for Monday</td>\n<td></td>\n</tr>\n<tr>\n<td>timeslot  <br /><code>Integer</code></td>\n<td>Accepts value from 1 to 48 represents time of the days. E.g 1 for 12 AM to 12 : 30 AM</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>touchExecutionSchedule <br /><code>Array of Objects</code></td>\n<td>Associated Schedule of the Schedule Timeslot</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d4ead9e8-628a-46b6-b52e-82e1868cb0d2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"35e45928-259e-4aad-9d22-f1ff400ac351","type":"text/javascript","exec":[""]}}],"_postman_id":"47d3188a-e942-4f75-9c30-925447b75137","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Settings","item":[{"name":"Actions","item":[{"name":"Gmail OAuth Call Back","id":"5c50b54b-4019-455b-b258-d7ad2a80a49f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https:‌/{{koncert_cadence_api}}/api/v2/settings/email/oauth?{code}&{error}&{state}","description":"<p>To check whether or not the authentication for the 'Gmail OAuth' server type has been validated for Email communication.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","email","oauth"],"host":["https"],"query":[{"key":"{code}","value":null},{"key":"{error}","value":null},{"key":"{state}","value":null}],"variable":[]}},"response":[{"id":"9f661937-a2b9-4015-892e-4a9fc9c3acb8","name":"Gmail OAuth Call Back","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v2/settings/email/oauth?{code}&{error}&{state}","path":["api","v2","settings","email","oauth"],"query":[{"key":"{code}","value":null},{"key":"{error}","value":null},{"key":"{state}","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 18:03:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"5c50b54b-4019-455b-b258-d7ad2a80a49f"}],"id":"42fb257b-5734-4534-99de-683a35573799","description":"<p>You can perform the below actions under the Settings tab.</p>\n","_postman_id":"42fb257b-5734-4534-99de-683a35573799","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Sync Settings List","id":"6aa5ce58-8569-496e-99f9-cd6fcde8a11a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncSettings","description":"<p>To retrieve a list of synchronization settings available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncSettings"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"a238837d-249b-4437-9b37-f177854f5802","name":"SyncSettings List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/settings/syncSettings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:41:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 245,\n            \"allowedApiLimit24hours\": 5000,\n            \"syncFrequencyMinutes\": 5,\n            \"crmAdminUserId\": 89,\n            \"crmLoginName\": \"tom@mission.com\",\n            \"allowSyncFromMultitouchToCrm\": true,\n            \"allowSyncFromCrmToMultitouch\": true,\n            \"updateMultitouchUponCrmUpdate\": true,\n            \"updateCrmUponMultitouchUpdate\": true,\n            \"deleteMultitouchUponCrmDelete\": false,\n            \"isBatchUpdatesAllowed\": true,\n            \"maximumNoOfRecordsAllowedPerBatch\": 200,\n            \"noOfApiUsed24hours\": 0,\n            \"lastMemberUpdatesSyncedToCrmDatetime\": \"2020-12-28T13:54:26Z\",\n            \"lastMemberUpdatesSyncedFromCrmDatetime\": \"2020-12-28T13:54:24Z\",\n            \"lastMemberDeletesSyncedFromCrmDatetime\": \"2018-08-30T06:56:37Z\",\n            \"accessToken\": \"False\",\n            \"refreshToken\": \"\",\n            \"lastSyncedDatetime\": \"2020-12-28T13:54:26Z\",\n            \"createCrmActivityUponMultitouchActivity\": true,\n            \"password\": null,\n            \"lastActivitySyncedToCrmDatetime\": \"2020-12-28T13:54:24Z\"\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"6aa5ce58-8569-496e-99f9-cd6fcde8a11a"},{"name":"Sync From CRM Workflow List","id":"b10748fa-2113-4c1e-87d6-d726539a6972","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncFromCrmWorkflows","description":"<p>To retrieve a list of workflows to synchronize data from CRM.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncFromCrmWorkflows"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"3b656513-8107-42ea-a249-1d91714621e1","name":"sync From Crm Workflows","originalRequest":{"method":"GET","header":[],"url":"/api/v2/settings/syncFromCrmWorkflows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:44:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 335,\n            \"logicalOperator\": \"OR\",\n            \"recordType\": \"contact\",\n            \"action\": \"MOVE_TO_ANOTHER_CADENCE\",\n            \"movedToMultiTouchId\": 2286,\n            \"associations\": {\n                \"criteria\": [\n                    {\n                        \"id\": 434\n                    },\n                    {\n                        \"id\": 435\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 336,\n            \"logicalOperator\": \"OR\",\n            \"recordType\": \"lead\",\n            \"action\": \"EXIT_CADENCE\",\n            \"movedToMultiTouchId\": 0,\n            \"associations\": {\n                \"criteria\": [\n                    {\n                        \"id\": 437\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"b10748fa-2113-4c1e-87d6-d726539a6972"},{"name":"Sync From CRM Workflows","id":"440a7d2b-ae46-4a53-b6de-590b9c4f4888","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncFromCrmWorkflows/:id","description":"<p>To retrieve a specific workflow to synchronize data from CRM based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncFromCrmWorkflows",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"538e2ddb-4d22-4e8b-bd0d-7c5c963b22e4","name":"sync From Crm Workflows","originalRequest":{"method":"GET","header":[],"url":"/api/v2/settings/syncFromCrmWorkflows/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:49:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 335,\n            \"logicalOperator\": \"OR\",\n            \"recordType\": \"contact\",\n            \"action\": \"MOVE_TO_ANOTHER_CADENCE\",\n            \"movedToMultiTouchId\": 2286,\n            \"associations\": {\n                \"criteria\": [\n                    {\n                        \"id\": 434\n                    },\n                    {\n                        \"id\": 435\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"440a7d2b-ae46-4a53-b6de-590b9c4f4888"},{"name":"Sync From CRM Workflow Criteria List","id":"2bf2c4eb-c1cb-4de2-b0cf-538fcb18fdce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncFromCrmWorkflowCriteras","description":"<p>To retrieve a list of criteria that synchronizes data from CRM.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncFromCrmWorkflowCriteras"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"2cc3a65f-3f17-4ad8-b9db-00c5d6557025","name":"sync From CrmWorkflow Criteras","originalRequest":{"method":"GET","header":[],"url":"/api/v2/settings/syncFromCrmWorkflowCriteras"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:10:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 434,\n            \"clFieldName\": \"contact_name\",\n            \"operator\": \"contains\",\n            \"value\": \"krishna\",\n            \"associations\": {\n                \"workflow\": [\n                    {\n                        \"id\": 335\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 435,\n            \"clFieldName\": \"first_name\",\n            \"operator\": \"contains\",\n            \"value\": \"kk\",\n            \"associations\": {\n                \"workflow\": [\n                    {\n                        \"id\": 335\n                    }\n                ]\n            }\n        }\n        \n    ],\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"2bf2c4eb-c1cb-4de2-b0cf-538fcb18fdce"},{"name":"Sync From CRM Workflow Criteria","id":"6b7966c6-0fa4-4627-9468-d65e5bfef61c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncFromCrmWorkflowCriteras/:id","description":"<p>To retrieve a specific criteria that synchronizes data from CRM based on id.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncFromCrmWorkflowCriteras",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"b8c579bf-7684-42c6-ad27-8ae994502aba","name":"Sync From CrmWorkflow Criteras","originalRequest":{"method":"GET","header":[],"url":"/api/v2/settings/syncFromCrmWorkflowCriteras/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:13:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 434,\n            \"clFieldName\": \"contact_name\",\n            \"operator\": \"contains\",\n            \"value\": \"krishna\",\n            \"associations\": {\n                \"workflow\": [\n                    {\n                        \"id\": 335\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"6b7966c6-0fa4-4627-9468-d65e5bfef61c"},{"name":"User Settings","id":"c2786dc6-f1cc-4e0f-9891-f220c6a8b6f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/user","description":"<p>To retrieve the user setting details.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","user"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"746bbd63-66c1-44fb-8520-9d557727345f","name":"User settings","originalRequest":{"method":"GET","header":[],"url":"/api/v2/settings/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:17:01 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"perDayUserLimit\": 500,\n            \"perDayUsed\": 0,\n            \"noOfEmailAttemptsPerDay\": 1000,\n            \"timeGapBetween2EmailAttempts\": \"1 minutes\",\n            \"checkCalllistRecordsDuplicates\": true,\n            \"checkDuplicatesBasedOn\": \"USER_LEVEL\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 89\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"c2786dc6-f1cc-4e0f-9891-f220c6a8b6f9"},{"name":"Outcomes","id":"be9c59e3-30dd-41cb-8b45-cb88c9c0a71f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"showOnMetrics\":true,\r\n    \"memberStageId\":32111,\r\n    \"defaultAction\":\"Move To Next Touch\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/filterCriterias","description":"<p>To edit and update outcome details.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","filterCriterias"],"host":["https"],"query":[],"variable":[]}},"response":[],"_postman_id":"be9c59e3-30dd-41cb-8b45-cb88c9c0a71f"},{"name":"Field Mappings","id":"51a3626e-5fdd-44ee-8427-a7b0ac7586a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"syncFields\":\r\n    [\r\n  {\r\n    \"id\": 28060,\r\n    \"crmFieldName\": \"CL_Call_Counter__c\",\r\n    \"syncRuleFromTrucadence\": \"Use TruCadence data to update CRM only if CRM field is empty\",\r\n    \"syncRuleToTrucadence\": \"Do NOT update TruCadence\",\r\n    \"recordType\":\"contact\"\r\n  },\r\n  {\r\n    \"id\": 28062,\r\n    \"crmFieldName\": \"MailingCity\",\r\n    \"syncRuleFromTrucadence\": \"Use TruCadence data to update CRM\",\r\n    \"syncRuleToTrucadence\": \"Use CRM data to update TruCadence only if the TruCadence field is empty\",\r\n    \"recordType\":\"contact\"\r\n  }\r\n]\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/fieldMappings","description":"<p>To edit and update the field mappings.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","fieldMappings"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"a2e1eeda-6ca7-4f2c-a651-1a7e0bd96aea","name":"Edit FieldMappings","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"syncFields\":\r\n    [\r\n  {\r\n    \"id\": 28060,\r\n    \"crmFieldName\": \"CL_Call_Counter__c\",\r\n    \"syncRuleFromTrucadence\": \"Use TruCadence data to update CRM only if CRM field is empty\",\r\n    \"syncRuleToTrucadence\": \"Do NOT update TruCadence\",\r\n    \"recordType\":\"contact\"\r\n  },\r\n  {\r\n    \"id\": 28062,\r\n    \"crmFieldName\": \"MailingCity\",\r\n    \"syncRuleFromTrucadence\": \"Use TruCadence data to update CRM\",\r\n    \"syncRuleToTrucadence\": \"Use CRM data to update TruCadence only if the TruCadence field is empty\",\r\n    \"recordType\":\"contact\"\r\n  }\r\n]\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/settings/fieldMappings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 17:11:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 28060,\n            \"createdUserId\": null,\n            \"modifiedUserId\": 89,\n            \"relationship\": null,\n            \"syncRuleFromTrucadence\": \"Use TruCadence data to update CRM only if CRM field is empty\",\n            \"syncRuleToTrucadence\": \"Do NOT update TruCadence\",\n            \"crmFieldName\": \"CL_Call_Counter__c\",\n            \"crmReportFieldName\": \"Contact.CLDR__Active_Contacts__c\",\n            \"crmActivityReportFieldName\": \"Contact.CLDR__Active_Contacts__c\",\n            \"salesloftCustomField\": false,\n            \"mailmergeValueMandatory\": false,\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\n            \"modifiedDateTime\": \"2020-12-30T17:11:58Z\",\n            \"crmType\": \"salesforce\",\n            \"recordType\": \"Contact\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 27940\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 28062,\n            \"createdUserId\": null,\n            \"modifiedUserId\": 89,\n            \"relationship\": null,\n            \"syncRuleFromTrucadence\": \"Use TruCadence data to update CRM\",\n            \"syncRuleToTrucadence\": \"Use CRM data to update TruCadence only if the TruCadence field is empty\",\n            \"crmFieldName\": \"MailingCity\",\n            \"crmReportFieldName\": null,\n            \"crmActivityReportFieldName\": null,\n            \"salesloftCustomField\": false,\n            \"mailmergeValueMandatory\": false,\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\n            \"modifiedDateTime\": \"2020-12-30T17:11:58Z\",\n            \"crmType\": \"salesforce\",\n            \"recordType\": \"Contact\",\n            \"associations\": {\n                \"field\": [\n                    {\n                        \"id\": 27942\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"51a3626e-5fdd-44ee-8427-a7b0ac7586a3"},{"name":"Activity Data Mapping","id":"73ea89fc-a638-4bda-85a4-7c95e511378e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/activityDataFields/:id","description":"<p>To delete an existing activity data mapping based on id.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","activityDataFields",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"26b3cdf7-8958-47b2-971b-07903894d8a6","name":"Delete Activity Data Mapping","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/settings/activityDataFields/2552"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 17:27:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"73ea89fc-a638-4bda-85a4-7c95e511378e"},{"name":"Sync Settings","id":"5e4bd72d-31cd-4580-acc4-e7185f04e0eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"allowedApiLimit24hours\": 2,\r\n    \"syncFrequencyMinutes\": 120,\r\n    \"crmAdminUserId\":89,\r\n    \"allowSyncFromMultitouchToCrm\": true,\r\n    \"allowSyncFromCrmToMultitouch\": true,\r\n    \"updateMultitouchUponCrmUpdate\": true,\r\n    \"updateCrmUponMultitouchUpdate\": true\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncSettings","description":"<p>To edit and save the settings configured for synchronizing data between CRM and Cadence.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncSettings"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"0569bc0e-36ff-4c6f-b64e-454228af0a9c","name":"Edit SynSettings","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"allowedApiLimit24hours\": 2,\r\n    \"syncFrequencyMinutes\": 120,\r\n    \"crmAdminUserId\":89,\r\n    \"allowSyncFromMultitouchToCrm\": true,\r\n    \"allowSyncFromCrmToMultitouch\": true,\r\n    \"updateMultitouchUponCrmUpdate\": true,\r\n    \"updateCrmUponMultitouchUpdate\": true\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/settings/syncSettings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 17:32:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 245,\n            \"allowedApiLimit24hours\": 2,\n            \"syncFrequencyMinutes\": 120,\n            \"crmAdminUserId\": 89,\n            \"crmLoginName\": \"tom@mission.com\",\n            \"allowSyncFromMultitouchToCrm\": true,\n            \"allowSyncFromCrmToMultitouch\": true,\n            \"updateMultitouchUponCrmUpdate\": true,\n            \"updateCrmUponMultitouchUpdate\": true,\n            \"deleteMultitouchUponCrmDelete\": false,\n            \"isBatchUpdatesAllowed\": true,\n            \"maximumNoOfRecordsAllowedPerBatch\": 200,\n            \"noOfApiUsed24hours\": 0,\n            \"lastMemberUpdatesSyncedToCrmDatetime\": \"2020-12-28T13:54:26Z\",\n            \"lastMemberUpdatesSyncedFromCrmDatetime\": \"2020-12-28T13:54:24Z\",\n            \"lastMemberDeletesSyncedFromCrmDatetime\": \"2018-08-30T06:56:37Z\",\n            \"accessToken\": \"False\",\n            \"refreshToken\": \"\",\n            \"lastSyncedDatetime\": \"2020-12-28T13:54:26Z\",\n            \"createCrmActivityUponMultitouchActivity\": true,\n            \"password\": null,\n            \"lastActivitySyncedToCrmDatetime\": \"2020-12-28T13:54:24Z\"\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"5e4bd72d-31cd-4580-acc4-e7185f04e0eb"},{"name":"Sync From CRM Workflow and Criteria","id":"94358eca-c3c6-4256-b9ac-efb57b9d052e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"workflow\": [\r\n        {\r\n            \"id\": 314,\r\n            \"logicalOperator\": \"OR\",\r\n            \"recordType\": \"contact\",\r\n            \"action\": \"MOVE_TO_NEXT_TOUCH\",\r\n            \"criteria\": [\r\n                {\r\n                    \"operator\": \"not equal to\",\r\n                    \"id\": 383,\r\n                    \"clFieldName\": \"last_name\",\r\n                    \"value\":\"steve\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncFromCrmWorkflowCriteras","description":"<p>To edit and update the workflow and criteria used for synchronizing data from CRM to Cadence.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncFromCrmWorkflowCriteras"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"126db3b0-5c12-4837-9a7a-0f9c6b039756","name":"Edit SyncFrom Crm Workflow And Criterias","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"workflow\": [\r\n        {\r\n            \"id\": 314,\r\n            \"logicalOperator\": \"OR\",\r\n            \"recordType\": \"contact\",\r\n            \"action\": \"MOVE_TO_NEXT_TOUCH\",\r\n            \"criteria\": [\r\n                {\r\n                    \"operator\": \"not equal to\",\r\n                    \"id\": 383,\r\n                    \"clFieldName\": \"last_name\",\r\n                    \"value\":\"steve\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/settings/syncFromCrmWorkflowCriteras"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 17:37:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\"\n}"}],"_postman_id":"94358eca-c3c6-4256-b9ac-efb57b9d052e"},{"name":"Sync From CRM Workflow","id":"9c8643c3-b809-4f90-baf1-80c561fa81e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncFromCrmWorkflows/:id","description":"<p>To delete an existing workflow used to synchronize data from CRM to Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncFromCrmWorkflows",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"5950be84-c78c-4053-b82b-39a7b6a53af9","name":"Delete SyncFromCrmWorkflow","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/settings/syncFromCrmWorkflows/{id}"},"status":"Forbidden","code":403,"_postman_previewlanguage":"html","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 17:40:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Content-Length","value":"68"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\"\n}"}],"_postman_id":"9c8643c3-b809-4f90-baf1-80c561fa81e5"},{"name":"Sync From CRM Workflow Criteria","id":"53632e5a-5402-473e-9c1c-e7af377b621a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/settings/syncFromCrmWorkflowCriteras/:id","description":"<p>To delete an existing criteria used to synchronize data from CRM to Cadence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","settings","syncFromCrmWorkflowCriteras",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"b3f0e5b9-1e71-48e7-ad21-fb4d77e80139","name":"Delete SyncFromCrm WorkflowCriteria","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/settings/syncFromCrmWorkflowCriteras/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 17:46:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Content-Length","value":"68"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\"\n}"},{"id":"cb2a9a36-f39f-4a26-b6d0-eeef70e3a0fb","name":"Delete SyncFromCrm WorkflowCriteria","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/settings/syncFromCrmWorkflowCriteras/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 17:52:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"},{"id":"d0287d3f-0348-4408-8f2a-36f62162df1e","name":"Delete SyncFromCrm WorkflowCriteria","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/settings/syncFromCrmWorkflowCriteras/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 17:52:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"53632e5a-5402-473e-9c1c-e7af377b621a"}],"id":"4443814e-1afe-4f0c-83c7-fd7be16ff7e1","description":"<p>Pre-configure the basic settings for Email Communication, User Settings, and data synchronization between CRM and Cadence.</p>\n","_postman_id":"4443814e-1afe-4f0c-83c7-fd7be16ff7e1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Snippet","item":[{"name":"Snippet List","id":"536ecf8d-9cbb-4646-8a59-1e075663d849","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/snippets","description":"<p>To retrieve a list of Snippets available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","snippets"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"0aa91ba6-f0ed-4c03-8c40-90747d712aeb","name":"Snippet list","originalRequest":{"method":"GET","header":[],"url":"/api/v2/snippets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:23:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 239,\n            \"description\": \"<span style=\\\"font-family:Verdana,Arial,sans-serif;font-size:14px\\\">hi test snippet</span>\",\n            \"subject\": null,\n            \"createdDate\": \"2020-04-21T07:12:01Z\",\n            \"updatedDate\": \"2020-08-28T06:44:08Z\",\n            \"name\": \"sarath11\",\n            \"snippetEmailTemplateType\": null,\n            \"convertedLinksContent\": \"hi test snippet\",\n            \"addEmailSignatureFlag\": \"Y\",\n            \"sharedType\": \"allUsers\",\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsClicked\": 0,\n            \"category\": 0,\n            \"crmSnippetEmailTemplateId\": \"\",\n            \"snippetEmailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": 0,\n            \"emailTemplateName\": \"sarath12\",\n            \"shared\": false,\n            \"sharedGroups\": [\n                5464,\n                5463,\n                5462,\n                6411,\n                6406,\n                5411,\n                7789\n            ],\n            \"associations\": {\n                \"tag\": [\n                    {\n                        \"id\": 904\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 49,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"536ecf8d-9cbb-4646-8a59-1e075663d849"},{"name":"Snippet","id":"4ed4d710-19ab-4abb-ac3b-9400c824231b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/snippets/:id","description":"<p>To retrieve a specific Snippet based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","snippets",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"1c9f62af-ad7f-4fbf-a90c-2258fabe4641","name":"Snippet","originalRequest":{"method":"GET","header":[],"url":"/api/v2/snippets/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:24:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 239,\n            \"description\": \"<span style=\\\"font-family:Verdana,Arial,sans-serif;font-size:14px\\\">hi test snippet</span>\",\n            \"subject\": null,\n            \"createdDate\": \"2020-04-21T07:12:01Z\",\n            \"updatedDate\": \"2020-08-28T06:44:08Z\",\n            \"name\": \"sarath11\",\n            \"snippetEmailTemplateType\": null,\n            \"convertedLinksContent\": \"hi test snippet\",\n            \"addEmailSignatureFlag\": \"Y\",\n            \"sharedType\": \"allUsers\",\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsClicked\": 0,\n            \"category\": 0,\n            \"crmSnippetEmailTemplateId\": \"\",\n            \"snippetEmailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": 0,\n            \"emailTemplateName\": \"sarath12\",\n            \"shared\": false,\n            \"sharedGroups\": [\n                5464,\n                5463,\n                5462,\n                6411,\n                6406,\n                5411,\n                7789\n            ],\n            \"associations\": {\n                \"tag\": [\n                    {\n                        \"id\": 904\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 49,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"4ed4d710-19ab-4abb-ac3b-9400c824231b"},{"name":"Snippet","id":"40427ef4-a4fd-4b38-99f7-c29c67bc69a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"testSnippet90\",\r\n    \"description\":\"desc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/snippets","description":"<p>To create a new Snippet.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","snippets"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"8edd42d5-ca52-4c3d-9f4b-119da556b6de","name":"Create Snippet","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"testSnippet90\",\r\n    \"description\":\"desc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{sub-domain}}/api/v2/snippets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:25:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 402,\n            \"description\": \"<span style=\\\"font-family:Arial,sans-serif;font-size:14px\\\">u\\ufffd\\u001c</span>\",\n            \"subject\": null,\n            \"createdDate\": \"2020-12-30T11:25:58Z\",\n            \"updatedDate\": \"2020-12-30T11:25:58Z\",\n            \"name\": \"testSnippet90\",\n            \"snippetEmailTemplateType\": null,\n            \"convertedLinksContent\": null,\n            \"addEmailSignatureFlag\": null,\n            \"sharedType\": \"none\",\n            \"noOfEmailsSent\": null,\n            \"noOfEmailsOpened\": null,\n            \"noOfEmailsReplied\": null,\n            \"noOfEmailsClicked\": null,\n            \"category\": null,\n            \"crmSnippetEmailTemplateId\": null,\n            \"snippetEmailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": null,\n            \"emailTemplateName\": null,\n            \"shared\": false,\n            \"sharedGroups\": null,\n            \"associations\": {\n                \"tag\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"40427ef4-a4fd-4b38-99f7-c29c67bc69a7"},{"name":"Snippets","id":"5dc97d9f-55ae-4b19-9468-988aede0fe29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"testSnippert12\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/snippets/:id","description":"<p>To edit and update an existing Snippet information based on id.</p>\n<p>Updates the properties specified in the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","snippets",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"9b29a8cf-8546-4fca-a8c1-36c4f038e1be","name":"Update Snippets","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"testSnippert12\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/snippets/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:27:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 402,\n            \"description\": \"<span style=\\\"font-family:Arial,sans-serif;font-size:14px\\\">u\\ufffd\\u001c</span>\",\n            \"subject\": null,\n            \"createdDate\": \"2020-12-30T11:25:58Z\",\n            \"updatedDate\": \"2020-12-30T11:27:11Z\",\n            \"name\": \"testSnippert12\",\n            \"snippetEmailTemplateType\": null,\n            \"convertedLinksContent\": null,\n            \"addEmailSignatureFlag\": \"Y\",\n            \"sharedType\": \"none\",\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsClicked\": 0,\n            \"category\": null,\n            \"crmSnippetEmailTemplateId\": null,\n            \"snippetEmailTemplateIdentifier\": null,\n            \"touchSchedulerIdentifier\": null,\n            \"noOfBounced\": 0,\n            \"emailTemplateName\": null,\n            \"shared\": false,\n            \"sharedGroups\": null,\n            \"associations\": {\n                \"tag\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"5dc97d9f-55ae-4b19-9468-988aede0fe29"},{"name":"Snippet","id":"f5965894-10a2-4aa2-a309-5b11d94335f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/snippets/:id","description":"<p>To delete an existing Snippet from the Cadence application.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","snippets",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"c8ee694c-6873-4550-9941-78c64f3d6a43","name":"Delete Snippet","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/snippets/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:28:07 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"f5965894-10a2-4aa2-a309-5b11d94335f3"}],"id":"185f6dca-9bc8-4a69-86fc-02bd6b49d49d","description":"<p>Snippets are quotes or small pieces of common information that can be added as part of an Email Template in a click.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary ID of the Snippet</td>\n<td>Filterable  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>description  <br /><code>String</code></td>\n<td>Body/Content of the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>subject  <br /><code>String</code></td>\n<td>Subject of the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Snippet was created</td>\n<td><code>Readonly</code> <br /><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>updatedDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Snippet was updated</td>\n<td><code>Readonly</code>  <br /><code>Filterable</code> <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Name of the Snippet</td>\n<td><code>Filterable</code> <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>snippetEmailTemplateType <br /><code>String</code></td>\n<td>Type of the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>convertedLinksContent  <br /><code>String</code></td>\n<td>HTML format of the Snippet description</td>\n<td></td>\n</tr>\n<tr>\n<td>addEmailSignatureFlag  <br /><code>String</code></td>\n<td>Flag to have email signature to be attached with Snippet. Values could be Y / N</td>\n<td></td>\n</tr>\n<tr>\n<td>sharedType  <br /><code>String</code></td>\n<td>Shared Type of the Snippet</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>noOfEmailsSent  <br /><code>Integer</code></td>\n<td>Number of emails sent with the corresponding Snippet</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsOpened  <br /><code>Integer</code></td>\n<td>Number of emails opened with the corresponding Snippet</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsReplied  <br /><code>Integer</code></td>\n<td>Number of emails replied with the corresponding Snippet</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsClicked  <br /><code>Integer</code></td>\n<td>Number of times the link in the emails clicked with the corresponding Snippet</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>category  <br /><code>Integer</code></td>\n<td>Category of the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>crmSnippetEmailTemplateId  <br /><code>String</code></td>\n<td>CRM Snippet ID of the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>snippetEmailTemplateIdentifier  <br /><code>String</code></td>\n<td>Identifier of the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>touchSchedulerIdentifier  <br /><code>String</code></td>\n<td>Touch Scheduler Identifier of the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>noOfBounced  <br /><code>Integer</code></td>\n<td>Number of emails bounced with the corresponding Snippet</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>emailTemplateName  <br /><code>String</code></td>\n<td>Email Template Name of the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>shared  <br /><code>Boolean</code></td>\n<td>Set to True, indicates that the Snippet is shared among some users</td>\n<td></td>\n</tr>\n<tr>\n<td>sharedGroups  <br /><code>Array of Long</code></td>\n<td>Shared users of the Snippet</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createduser<br /><code>Array of Objects</code></td>\n<td>Name of the user who created the Snippet</td>\n<td></td>\n</tr>\n<tr>\n<td>tag<br /><code>Array of Objects</code></td>\n<td>Associated tag of the Snippet</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"185f6dca-9bc8-4a69-86fc-02bd6b49d49d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Sync Logs","item":[{"name":"Sync Log List","id":"9c2adb7b-6f41-4898-9885-bcb288c10ccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/cadence/v2/settings/synclogs","description":"<p>To retrieve a list of Sync Log information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["cadence","v2","settings","synclogs"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"ca0e80bd-99cc-4f82-beba-9aeac340f809","name":"Synclogs List","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/cadence/v2/settings/synclogs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:02:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 279922,\n            \"activityId\": 584583,\n            \"syncDatetime\": \"2020-09-18T07:12:54Z\",\n            \"syncData\": {\n                \"CLDR__Call_Recording__c\": \"\",\n                \"Caller_Id__c\": \"Meeting Scheduled 9782961107 Meeting Scheduled\",\n                \"Description\": \"  \",\n                \"CreatedDate\": \"9782961107\",\n                \"CL_List_Name__c\": \"Call/Email/linkedin/Text\",\n                \"ACTIVITY_DATE\": \"2020-08-24\",\n                \"OWNER_ID\": \"0050b000005AD9FAAW\",\n                \"CRM_ID\": \"00Q0b00001YRYH0\",\n                \"RECORD_TYPE\": \"Lead\"\n            },\n            \"errorData\": {\n                \"error_code\": {\n                    \"value\": \"STRING_TOO_LONG\"\n                },\n                \"error_message\": \"Caller Id: data value too large: Meeting Scheduled 9782961107 Meeting Scheduled (max length=40)\"\n            },\n            \"accountName\": \"Dickenson plc\",\n            \"contactName\": \"Andy Young\",\n            \"recordType\": \"Lead\",\n            \"syncStatus\": \"FAILURE\",\n            \"crmId\": null,\n            \"syncType\": \"ACTIVITIES\",\n            \"clId\": 175156,\n            \"reasonForFailure\": null,\n            \"formattedSyncDatetime\": \"09/18/2020 7:12 AM\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 89\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 279923,\n            \"activityId\": 584610,\n            \"syncDatetime\": \"2020-09-18T07:12:54Z\",\n            \"syncData\": {\n                \"CLDR__Call_Recording__c\": \"\",\n                \"Caller_Id__c\": \"Meeting Scheduled 2343861024 Meeting Scheduled\",\n                \"Description\": \"  \",\n                \"CreatedDate\": \"2343861024\",\n                \"CL_List_Name__c\": \"Call/Email/linkedin/Text\",\n                \"ACTIVITY_DATE\": \"2020-08-24\",\n                \"OWNER_ID\": \"0050b000005AD9FAAW\",\n                \"CRM_ID\": \"00Q0b00001YRYGo\",\n                \"RECORD_TYPE\": \"Lead\"\n            },\n            \"errorData\": {\n                \"error_code\": {\n                    \"value\": \"STRING_TOO_LONG\"\n                },\n                \"error_message\": \"Caller Id: data value too large: Meeting Scheduled 2343861024 Meeting Scheduled (max length=40)\"\n            },\n            \"accountName\": \"Abbott Insurance\",\n            \"contactName\": \"Phyllis Cotton\",\n            \"recordType\": \"Lead\",\n            \"syncStatus\": \"FAILURE\",\n            \"crmId\": null,\n            \"syncType\": \"ACTIVITIES\",\n            \"clId\": 175150,\n            \"reasonForFailure\": null,\n            \"formattedSyncDatetime\": \"09/18/2020 7:12 AM\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 89\n                    }\n                ]\n            }\n        }\n        \n    ],\n    \"paging\": {\n        \"totalCount\": 51031,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"9c2adb7b-6f41-4898-9885-bcb288c10ccb"},{"name":"Sync Log","id":"dfa9ceae-9bb3-40a4-9651-9a11b2aabff7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/cadence/v2/settings/synclogs/:id","description":"<p>To retrieve a specific Sync Log based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["cadence","v2","settings","synclogs",":id"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"description":{"content":"<p>synclog id</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"97bd394d-7e4a-4c2f-89d7-c5bbb40bb2f1","name":"Synclog","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_cadence_api}}/cadence/v2/settings/synclogs/:id","protocol":"https","host":["{{koncert_cadence_api}}"],"path":["cadence","v2","settings","synclogs",":id"],"variable":[{"key":"id","value":"{id}","description":"synclog id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:39:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 279922,\n            \"activityId\": 584583,\n            \"syncDatetime\": \"2020-09-18T07:12:54Z\",\n            \"syncData\": {\n                \"CLDR__Call_Recording__c\": \"\",\n                \"Caller_Id__c\": \"Meeting Scheduled 9782961107 Meeting Scheduled\",\n                \"Description\": \"  \",\n                \"CreatedDate\": \"9782961107\",\n                \"CL_List_Name__c\": \"Call/Email/linkedin/Text\",\n                \"ACTIVITY_DATE\": \"2020-08-24\",\n                \"OWNER_ID\": \"0050b000005AD9FAAW\",\n                \"CRM_ID\": \"00Q0b00001YRYH0\",\n                \"RECORD_TYPE\": \"Lead\"\n            },\n            \"errorData\": {\n                \"error_code\": {\n                    \"value\": \"STRING_TOO_LONG\"\n                },\n                \"error_message\": \"Caller Id: data value too large: Meeting Scheduled 9782961107 Meeting Scheduled (max length=40)\"\n            },\n            \"accountName\": \"Dickenson plc\",\n            \"contactName\": \"Andy Young\",\n            \"recordType\": \"Lead\",\n            \"syncStatus\": \"FAILURE\",\n            \"crmId\": null,\n            \"syncType\": \"ACTIVITIES\",\n            \"clId\": 175156,\n            \"reasonForFailure\": null,\n            \"formattedSyncDatetime\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 89\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"dfa9ceae-9bb3-40a4-9651-9a11b2aabff7"},{"name":"Sync Log","id":"5cd0db8d-139e-4239-952f-1c4047be7cca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"activityId\": 64478,\r\n    \"syncDatetime\": \"2021-06-22T12:56:49Z\",\r\n    \"user\": {\r\n        \"id\": 6651\r\n    },\r\n    \"syncData\": {\r\n        \"Email\": \"cadencetest172@gmail.com\"\r\n    },\r\n    \"errorData\": {\r\n        \"message\": \"Session expired or invalid\",\r\n        \"errorCode\": \"INVALID_SESSION_ID\",\r\n        \"error_message\": \"Session expired or invalid\"\r\n    },\r\n    \"accountName\": \"Accountant\",\r\n    \"contactName\": \"Kevin\",\r\n    \"recordType\": \"Contact\",\r\n    \"syncStatus\": \"SUCCESS\",\r\n    \"crmId\": \"0035g000003FAYD\",\r\n    \"syncType\": \"RECORD UPDATE\",\r\n    \"clId\": 375940,\r\n    \"reasonForFailure\": null,\r\n    \"formattedSyncDatetime\": \"06/22/2021 12:56 PM\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/settings/synclogs","description":"<p>To create a new Sync Log.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","settings","synclogs"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cd0db8d-139e-4239-952f-1c4047be7cca"},{"name":"Sync Log","id":"5e733376-59ad-4308-9ff7-e57a9f6454bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"activityId\": 64578,\r\n    \"syncDatetime\": \"2021-06-22T12:56:49Z\",\r\n    \"syncData\": {\r\n        \"Email\": \"abccadencetest1720@gmail.com\"\r\n    },\r\n    \"accountName\": \"Real\",\r\n    \"syncStatus\": \"Failure\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_cadence_api}}/api/v2/settings/synclogs/:id","description":"<p>To update an existing Sync Log.</p>\n<p>Updates the properties specified in the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","settings","synclogs",":id"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"5e733376-59ad-4308-9ff7-e57a9f6454bc"}],"id":"f3a1bdba-1094-4a8d-ac7a-2c3710d2ef77","description":"<p>Cadence checks for changes (updates) to records (prospects) on both Cadence and Salesforce based on CRM Sync Settings &amp; Sync Field Mappings. If any changes have been made, then bidirectional synchronization will happen and a Sync Log will be created for each activity.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Sync Log ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>recordType<br /><code>String</code></td>\n<td>Prospect's record type - <code>Contact' 'Lead</code></td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>activityId<br /><code>Long</code></td>\n<td>Activity ID of the prospect</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>syncDatetime<br /><code>Date-Time</code></td>\n<td>Date and time when the synchronization occurs</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>syncData<br /><code>Json</code></td>\n<td>Data synchronized</td>\n<td></td>\n</tr>\n<tr>\n<td>errorData<br /><code>Json</code></td>\n<td>Error data of the synclog</td>\n<td></td>\n</tr>\n<tr>\n<td>accountName<br /><code>String</code></td>\n<td>Account name of the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>contactName<br /><code>String</code></td>\n<td>Name of the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>syncStatus<br /><code>String</code></td>\n<td>Synchronization Status - Success or Failure</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>crmId<br /><code>String</code></td>\n<td>CRM ID of the Sync Log</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>syncType<br /><code>String</code></td>\n<td>Synchronization type of the Sync Log - Record Update or Activities</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>reasonForFailure<br /><code>String</code></td>\n<td>Reason for failure of Synchronization</td>\n<td></td>\n</tr>\n<tr>\n<td>clId<br /><code>Integer</code></td>\n<td>Prospect ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>dateRange<br /><code>String</code></td>\n<td>Date Range of the Sync Log to be retrieved</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>activityDateTime<br /><code>Date-Time</code></td>\n<td>Date and time when the activity was Synchronized</td>\n<td></td>\n</tr>\n<tr>\n<td>SyncDatetime<br /><code>Date-Time</code></td>\n<td>activity dateTime of the sync</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser<br /><code>Array of Objects</code></td>\n<td>Owner of the prospect</td>\n<td><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f3a1bdba-1094-4a8d-ac7a-2c3710d2ef77","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Tag","item":[{"name":"Tag List","id":"cb2021fc-12f3-4cf9-97ed-c0b0498a7e70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/tags","description":"<p>To retrieve a list of Tag records.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","tags"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"ea336fd9-c0c6-4cc1-af0c-b35b3b030de7","name":"Tag list","originalRequest":{"method":"GET","header":[],"url":"/api/v2/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:45:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 647,\n            \"name\": \"sfdd\",\n            \"modifiedDate\": \"2020-09-02T19:25:01Z\",\n            \"createdDate\": \"2019-04-11T12:33:02Z\",\n            \"unassigned\": false,\n            \"tagAssignCount\": 12,\n            \"associations\": {\n                \"emailTemplate\": [\n                    {\n                        \"id\": 5206\n                    }\n                ],\n                \"snippet\": [\n                    {\n                        \"id\": 347\n                    },\n                    {\n                        \"id\": 301\n                    },\n                    {\n                        \"id\": 302\n                    },\n                    {\n                        \"id\": 303\n                    },\n                    {\n                        \"id\": 308\n                    }\n                ],\n                \"prospect\": [\n                    {\n                        \"id\": 187912\n                    },\n                    {\n                        \"id\": 187913\n                    },\n                    {\n                        \"id\": 191231\n                    },\n                    {\n                        \"id\": 647\n                    },\n                    {\n                        \"id\": 647\n                    },\n                    {\n                        \"id\": 187919\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 68,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"cb2021fc-12f3-4cf9-97ed-c0b0498a7e70"},{"name":"Tag","id":"7721914a-19af-483b-b23c-415b0f9291ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/tags/:id","description":"<p>To retrieve a Tag record based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","tags",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"ce401eb2-cbe1-4d97-8f63-ffe4256572bb","name":"Tag","originalRequest":{"method":"GET","header":[],"url":"{{sub-domain}}/api/v2/tags/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:45:54 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 647,\n            \"name\": \"sfdd\",\n            \"modifiedDate\": \"2020-09-02T19:25:01Z\",\n            \"createdDate\": \"2019-04-11T12:33:02Z\",\n            \"unassigned\": false,\n            \"tagAssignCount\": 12,\n            \"associations\": {\n                \"emailTemplate\": [\n                    {\n                        \"id\": 5206\n                    }\n                ],\n                \"snippet\": [\n                    {\n                        \"id\": 347\n                    },\n                    {\n                        \"id\": 301\n                    },\n                    {\n                        \"id\": 302\n                    },\n                    {\n                        \"id\": 303\n                    },\n                    {\n                        \"id\": 308\n                    }\n                ],\n                \"prospect\": [\n                    {\n                        \"id\": 187912\n                    },\n                    {\n                        \"id\": 187913\n                    },\n                    {\n                        \"id\": 191231\n                    },\n                    {\n                        \"id\": 647\n                    },\n                    {\n                        \"id\": 647\n                    },\n                    {\n                        \"id\": 187919\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 68,\n        \"limit\": 1,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"7721914a-19af-483b-b23c-415b0f9291ae"},{"name":"Tag","id":"e4108d0d-5973-4156-971b-3bc774e88928","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": [\r\n        \"tagAPi12\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/tags","description":"<p>To create a new Tag.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","tags"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"362835f9-5ecf-4645-9f8a-af12673154b2","name":"Create Tag","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": [\r\n        \"tagAPi12\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:49:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1481,\n            \"name\": \"tagAPi12\",\n            \"modifiedDate\": null,\n            \"createdDate\": \"2020-12-30T10:49:15Z\",\n            \"unassigned\": false,\n            \"tagAssignCount\": 0,\n            \"associations\": {\n                \"emailTemplate\": [],\n                \"snippet\": [],\n                \"prospect\": [],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"e4108d0d-5973-4156-971b-3bc774e88928"},{"name":"Tag","id":"3729ca91-0ada-4322-aee4-7e28786bfba9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"test123\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/tags/:id","description":"<p>To edit and update an existing Tag information.</p>\n<p>Updates the properties specified in the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","tags",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"d3b404c1-eac3-4986-a238-7fe34cc46ee2","name":"Update Tag","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"test123\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/tags/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:51:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 647,\n            \"name\": \"test123\",\n            \"modifiedDate\": \"2020-12-30T10:51:49Z\",\n            \"createdDate\": \"2019-04-11T12:33:02Z\",\n            \"unassigned\": false,\n            \"tagAssignCount\": 12,\n            \"associations\": {\n                \"emailTemplate\": [\n                    {\n                        \"id\": 5206\n                    }\n                ],\n                \"snippet\": [\n                    {\n                        \"id\": 347\n                    },\n                    {\n                        \"id\": 301\n                    },\n                    {\n                        \"id\": 302\n                    },\n                    {\n                        \"id\": 303\n                    },\n                    {\n                        \"id\": 308\n                    }\n                ],\n                \"prospect\": [\n                    {\n                        \"id\": 187912\n                    },\n                    {\n                        \"id\": 187913\n                    },\n                    {\n                        \"id\": 191231\n                    },\n                    {\n                        \"id\": 647\n                    },\n                    {\n                        \"id\": 647\n                    },\n                    {\n                        \"id\": 187919\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 5411\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"3729ca91-0ada-4322-aee4-7e28786bfba9"},{"name":"Tag","id":"b0d57b65-c0a9-473c-926d-7a79ab3e95ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/tags/:ids","description":"<p>To delete one or more Tags from the Cadence application.</p>\n<p>Multiple tag ids can be give as comma separated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","tags",":ids"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"ids"}]}},"response":[{"id":"58f5228f-f609-492a-ae90-1013505f3700","name":"Delete Tag","originalRequest":{"method":"DELETE","header":[],"url":"/api/v2/tags/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 10:53:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"b0d57b65-c0a9-473c-926d-7a79ab3e95ab"}],"id":"8c221f91-9e80-4566-96e0-69176dd0270e","description":"<p>Tags are used to identify and filter/search the resources easily.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary ID of the Tag</td>\n<td><code>Filterable</code> <br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Name of the Tag</td>\n<td><code>Filterable</code> <br /> <code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Tag was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the Tag was created</td>\n<td><code>Readonly</code> <br /><code>Filterable</code> <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>unassigned  <br /><code>Boolean</code></td>\n<td>True means Tag is not used anywhere</td>\n<td></td>\n</tr>\n<tr>\n<td>tagAssignCount  <br /><code>Integer</code></td>\n<td>Indicates number of Prospects, Snippets and Email Templates using this Tag</td>\n<td>Readonly</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createduser<br /><code>Array of Objects</code></td>\n<td>Associated user of the Tag</td>\n<td></td>\n</tr>\n<tr>\n<td>emailTemplate<br /><code>Array of Objects</code></td>\n<td>Associated email template of the Tag</td>\n<td></td>\n</tr>\n<tr>\n<td>snippet<br /><code>Array of Objects</code></td>\n<td>Associated snippet of the Tag</td>\n<td></td>\n</tr>\n<tr>\n<td>prospect<br /><code>Array of Objects</code></td>\n<td>Associated prospect of the Tag</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8c221f91-9e80-4566-96e0-69176dd0270e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Touches","item":[{"name":"Touch List","id":"97e218ad-37e4-4709-8b14-c4c7818c5225","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/touches","description":"<p>To retrieve all the touches available in the Cadence application.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","touches"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"eb259096-d543-4340-96a4-31c727343e16","name":"Touches List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/touches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 11:52:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 19051,\n            \"assignedUserId\": 6717,\n            \"updatedDate\": \"2020-12-01T12:32:29Z\",\n            \"timeToComplete\": 3,\n            \"timeToCompleteUnit\": \"Da\",\n            \"createdDate\": \"2020-12-01T12:32:29Z\",\n            \"instructions\": null,\n            \"status\": \"NEW\",\n            \"stepNo\": 1,\n            \"timeToCompleteInMinutes\": 4320,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfBadData\": 0,\n            \"noOfPositiveConversations\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"cd1\": 0,\n            \"cd2\": 0,\n            \"cd3\": 0,\n            \"cd4\": 0,\n            \"cd5\": 0,\n            \"cd6\": 0,\n            \"cd7\": 0,\n            \"cd8\": 0,\n            \"cd9\": 0,\n            \"cd10\": 0,\n            \"cd11\": 0,\n            \"cd12\": 0,\n            \"cd13\": 0,\n            \"cd14\": 0,\n            \"cd15\": 0,\n            \"cd16\": 0,\n            \"cd17\": 0,\n            \"cd18\": 0,\n            \"cd19\": 0,\n            \"cd20\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"touchId\": null,\n            \"waitPeriodBeforeStart\": 0,\n            \"waitPeriodUnit\": \"Mi\",\n            \"waitPeriodBeforeStartInMinutes\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"noOfLinkedinTouches\": 0,\n            \"total\": 13,\n            \"active\": 0,\n            \"paused\": 0,\n            \"completed\": 12,\n            \"fallThrough\": 1,\n            \"positiveConversations\": 10,\n            \"otherConversations\": 4,\n            \"badData\": 0,\n            \"due\": 0,\n            \"outComes\": {},\n            \"productType\": \"Personal Dialer, Click Dialer, Team Dialer\",\n            \"subTouch\": null,\n            \"day\": 1,\n            \"engagementScore\": 0,\n            \"product\": \"PD,CD,TD\",\n            \"scheduleType\": null,\n            \"scheduleTimezone\": null,\n            \"scheduledDateTime\": null,\n            \"previewEmailFlag\": null,\n            \"emailTouchType\": null,\n            \"moveProspectsWhenTimeExceeds\": null,\n            \"includeProspectResponseFlag\": null,\n            \"workflow\": null,\n            \"touchType\": \"CALL\",\n            \"associations\": {\n                \"cadence\": [\n                    {\n                        \"id\": 4956\n                    }\n                ],\n                \"emailTemplate\": [],\n                \"schedule\": [],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 19052,\n            \"assignedUserId\": 6717,\n            \"updatedDate\": \"2020-12-01T12:32:29Z\",\n            \"timeToComplete\": 3,\n            \"timeToCompleteUnit\": \"Da\",\n            \"createdDate\": \"2020-12-01T12:32:29Z\",\n            \"instructions\": null,\n            \"status\": \"NEW\",\n            \"stepNo\": 2,\n            \"timeToCompleteInMinutes\": 4320,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfBadData\": 0,\n            \"noOfPositiveConversations\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"cd1\": 0,\n            \"cd2\": 0,\n            \"cd3\": 0,\n            \"cd4\": 0,\n            \"cd5\": 0,\n            \"cd6\": 0,\n            \"cd7\": 0,\n            \"cd8\": 0,\n            \"cd9\": 0,\n            \"cd10\": 0,\n            \"cd11\": 0,\n            \"cd12\": 0,\n            \"cd13\": 0,\n            \"cd14\": 0,\n            \"cd15\": 0,\n            \"cd16\": 0,\n            \"cd17\": 0,\n            \"cd18\": 0,\n            \"cd19\": 0,\n            \"cd20\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"touchId\": null,\n            \"waitPeriodBeforeStart\": 3,\n            \"waitPeriodUnit\": \"Da\",\n            \"waitPeriodBeforeStartInMinutes\": 4320,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"noOfLinkedinTouches\": 0,\n            \"total\": 7,\n            \"active\": 0,\n            \"paused\": 0,\n            \"completed\": 0,\n            \"fallThrough\": 7,\n            \"positiveConversations\": 0,\n            \"otherConversations\": 0,\n            \"badData\": 0,\n            \"due\": 0,\n            \"outComes\": {},\n            \"productType\": \"Personal Dialer, Click Dialer, Team Dialer\",\n            \"subTouch\": null,\n            \"day\": 4,\n            \"engagementScore\": 0,\n            \"product\": \"PD,CD,TD\",\n            \"scheduleType\": null,\n            \"scheduleTimezone\": null,\n            \"scheduledDateTime\": null,\n            \"previewEmailFlag\": null,\n            \"emailTouchType\": null,\n            \"moveProspectsWhenTimeExceeds\": null,\n            \"includeProspectResponseFlag\": null,\n            \"workflow\": null,\n            \"touchType\": \"CALL\",\n            \"associations\": {\n                \"cadence\": [\n                    {\n                        \"id\": 4956\n                    }\n                ],\n                \"emailTemplate\": [],\n                \"schedule\": [],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 347,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"97e218ad-37e4-4709-8b14-c4c7818c5225"},{"name":"Touch","id":"e463651b-ef44-4046-b756-f397d18a3eba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/touches/:id","description":"<p>To retrieve a specific touch in the Cadence application based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","touches",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"23a42e78-efa2-43af-8bea-27fd85298d95","name":"Touch","originalRequest":{"method":"GET","header":[],"url":"/api/v2/touches/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:05:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 19051,\n            \"assignedUserId\": 6717,\n            \"updatedDate\": \"2020-12-01T12:32:29Z\",\n            \"timeToComplete\": 3,\n            \"timeToCompleteUnit\": \"Da\",\n            \"createdDate\": \"2020-12-01T12:32:29Z\",\n            \"instructions\": null,\n            \"status\": \"NEW\",\n            \"stepNo\": 1,\n            \"timeToCompleteInMinutes\": 4320,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfBadData\": 0,\n            \"noOfPositiveConversations\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"cd1\": 0,\n            \"cd2\": 0,\n            \"cd3\": 0,\n            \"cd4\": 0,\n            \"cd5\": 0,\n            \"cd6\": 0,\n            \"cd7\": 0,\n            \"cd8\": 0,\n            \"cd9\": 0,\n            \"cd10\": 0,\n            \"cd11\": 0,\n            \"cd12\": 0,\n            \"cd13\": 0,\n            \"cd14\": 0,\n            \"cd15\": 0,\n            \"cd16\": 0,\n            \"cd17\": 0,\n            \"cd18\": 0,\n            \"cd19\": 0,\n            \"cd20\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"touchId\": null,\n            \"waitPeriodBeforeStart\": 0,\n            \"waitPeriodUnit\": \"Mi\",\n            \"waitPeriodBeforeStartInMinutes\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"noOfLinkedinTouches\": 0,\n            \"total\": 13,\n            \"active\": 0,\n            \"paused\": 0,\n            \"completed\": 12,\n            \"fallThrough\": 1,\n            \"positiveConversations\": 10,\n            \"otherConversations\": 4,\n            \"badData\": 0,\n            \"due\": 0,\n            \"outComes\": {\n                \"total\": 28,\n                \"active\": 4,\n                \"paused\": 0,\n                \"Qualified Lead\": 6,\n                \"Meeting Scheduled\": 4,\n                \"Got Referral\": 1,\n                \"Not Interested\": 0,\n                \"Follow up\": 0,\n                \"Not a Decision Maker\": 0,\n                \"Call Issue\": 2,\n                \"Other\": 2,\n                \"Left VM\": 0\n            },\n            \"productType\": \"Personal Dialer, Click Dialer, Team Dialer\",\n            \"subTouch\": null,\n            \"day\": 1,\n            \"engagementScore\": 0,\n            \"product\": \"PD,CD,TD\",\n            \"scheduleType\": null,\n            \"scheduleTimezone\": null,\n            \"scheduledDateTime\": null,\n            \"previewEmailFlag\": null,\n            \"emailTouchType\": null,\n            \"moveProspectsWhenTimeExceeds\": null,\n            \"includeProspectResponseFlag\": null,\n            \"workflow\": null,\n            \"touchType\": \"CALL\",\n            \"associations\": {\n                \"cadence\": [\n                    {\n                        \"id\": 4956\n                    }\n                ],\n                \"emailTemplate\": [],\n                \"schedule\": [],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"e463651b-ef44-4046-b756-f397d18a3eba"},{"name":"Touch","id":"23685a8a-7286-463c-afd6-2b5226d3218f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"productType\": \"PD\",\r\n    \"timeToWaitAndExecute\": \"0\",\r\n    \"timeToWaitUnit\": \"Mi\",\r\n    \"touchType\": \"CALL\",\r\n    \"cadence\": {\r\n        \"id\": \"5148\"\r\n    },\r\n    \"timeToComplete\": \"2\",\r\n    \"timeToCompleteUnit\": \"Da\",\r\n    \"stepNo\": 8,\r\n    \"workflow\": [\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1243\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1246\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1247\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1248\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1249\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1255\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1259\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1262\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1263\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        }\r\n    ]\r\n}"},"url":"https:‌//{{koncert_cadence_api}}/api/v2/touches/","description":"<p>To create a new touch.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","touches",""],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"07257c86-8c2d-4dd8-88da-17546b676fc2","name":"Create Touch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"productType\": \"PD\",\r\n    \"timeToWaitAndExecute\": \"0\",\r\n    \"timeToWaitUnit\": \"Mi\",\r\n    \"touchType\": \"CALL\",\r\n    \"cadence\": {\r\n        \"id\": \"5148\"\r\n    },\r\n    \"timeToComplete\": \"2\",\r\n    \"timeToCompleteUnit\": \"Da\",\r\n    \"stepNo\": 8,\r\n    \"workflow\": [\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1243\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1246\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1247\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1248\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1249\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1255\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1259\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1262\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1263\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        }\r\n    ]\r\n}"},"url":"/api/v2/touches/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:35:48 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 20034,\n            \"assignedUserId\": 6717,\n            \"updatedDate\": \"2020-12-30T12:35:48Z\",\n            \"timeToComplete\": 2,\n            \"timeToCompleteUnit\": \"Da\",\n            \"createdDate\": \"2020-12-30T12:35:48Z\",\n            \"instructions\": null,\n            \"status\": \"NEW\",\n            \"stepNo\": 8,\n            \"timeToCompleteInMinutes\": 2880,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfBadData\": 0,\n            \"noOfPositiveConversations\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"cd1\": 0,\n            \"cd2\": 0,\n            \"cd3\": 0,\n            \"cd4\": 0,\n            \"cd5\": 0,\n            \"cd6\": 0,\n            \"cd7\": 0,\n            \"cd8\": 0,\n            \"cd9\": 0,\n            \"cd10\": 0,\n            \"cd11\": 0,\n            \"cd12\": 0,\n            \"cd13\": 0,\n            \"cd14\": 0,\n            \"cd15\": 0,\n            \"cd16\": 0,\n            \"cd17\": 0,\n            \"cd18\": 0,\n            \"cd19\": 0,\n            \"cd20\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"touchId\": null,\n            \"waitPeriodBeforeStart\": 0,\n            \"waitPeriodUnit\": \"Mi\",\n            \"waitPeriodBeforeStartInMinutes\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"noOfLinkedinTouches\": 0,\n            \"total\": 0,\n            \"active\": 0,\n            \"paused\": 0,\n            \"completed\": 0,\n            \"fallThrough\": 0,\n            \"positiveConversations\": 0,\n            \"otherConversations\": 0,\n            \"badData\": 0,\n            \"due\": 0,\n            \"outComes\": {\n                \"total\": 0,\n                \"active\": 0,\n                \"paused\": 0,\n                \"Qualified Lead\": 0,\n                \"Meeting Scheduled\": 0,\n                \"Got Referral\": 0,\n                \"Not Interested\": 0,\n                \"Follow up\": 0,\n                \"Not a Decision Maker\": 0,\n                \"Call Issue\": 0,\n                \"Other\": 0,\n                \"Left VM\": 0\n            },\n            \"productType\": \"Team Dialer, Personal Dialer, Click Dialer\",\n            \"subTouch\": null,\n            \"day\": 1,\n            \"engagementScore\": 0,\n            \"product\": null,\n            \"scheduleType\": null,\n            \"scheduleTimezone\": null,\n            \"scheduledDateTime\": null,\n            \"previewEmailFlag\": null,\n            \"emailTouchType\": null,\n            \"moveProspectsWhenTimeExceeds\": null,\n            \"includeProspectResponseFlag\": null,\n            \"workflow\": [\n                {\n                    \"id\": 140160,\n                    \"outcome\": \"Other\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1243\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140161,\n                    \"outcome\": \"Meeting Scheduled\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1246\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140162,\n                    \"outcome\": \"Got Referral\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1247\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140163,\n                    \"outcome\": \"Not Interested\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1248\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140164,\n                    \"outcome\": \"Follow up\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1249\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140165,\n                    \"outcome\": \"Call Issue\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1255\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140166,\n                    \"outcome\": \"Not a Decision Maker\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1259\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140167,\n                    \"outcome\": \"Qualified Lead\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1262\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140168,\n                    \"outcome\": \"Left VM\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1263\n                            }\n                        ]\n                    }\n                }\n            ],\n            \"touchType\": \"CALL\",\n            \"associations\": {\n                \"cadence\": [\n                    {\n                        \"id\": 5148\n                    }\n                ],\n                \"emailTemplate\": [],\n                \"schedule\": [],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"23685a8a-7286-463c-afd6-2b5226d3218f"},{"name":"Touch","id":"8cec84fb-683d-4b3e-ade9-4a01ed3929ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"productType\": \"PD\",\r\n    \"timeToWaitAndExecute\": \"0\",\r\n    \"timeToWaitUnit\": \"Mi\",\r\n    \"touchType\": \"CALL\",\r\n    \"cadence\": {\r\n        \"id\": \"5148\"\r\n    },\r\n    \"timeToComplete\": \"3\",\r\n    \"timeToCompleteUnit\": \"Da\",\r\n    \"stepNo\": 8,\r\n    \"workflow\": [\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1243\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1246\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1247\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1248\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1249\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1255\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1259\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1262\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1263\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        }\r\n    ]\r\n}"},"url":"https:‌//{{koncert_cadence_api}}/api/v2/touches/:id","description":"<p>To edit and update an existing touch information.</p>\n<p>Updates the properties specified in the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","touches",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"dceb6371-691c-4a7e-9dfc-1ebcf0e47a3e","name":"Edit Touch","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"productType\": \"PD\",\r\n    \"timeToWaitAndExecute\": \"0\",\r\n    \"timeToWaitUnit\": \"Mi\",\r\n    \"touchType\": \"CALL\",\r\n    \"cadence\": {\r\n        \"id\": \"5148\"\r\n    },\r\n    \"timeToComplete\": \"3\",\r\n    \"timeToCompleteUnit\": \"Da\",\r\n    \"stepNo\": 8,\r\n    \"workflow\": [\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1243\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1246\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1247\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1248\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1249\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1255\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1259\r\n            },\r\n            \"action\": \"Exit Cadence\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1262\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        },\r\n        {\r\n            \"outcome\": {\r\n                \"id\": 1263\r\n            },\r\n            \"action\": \"Move To Next Touch\",\r\n            \"cadence\": {\r\n                \"id\": 0\r\n            }\r\n        }\r\n    ]\r\n}"},"url":"/api/v2/touches/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:52:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 20034,\n            \"assignedUserId\": 6717,\n            \"updatedDate\": \"2020-12-30T12:52:40Z\",\n            \"timeToComplete\": 3,\n            \"timeToCompleteUnit\": \"Da\",\n            \"createdDate\": \"2020-12-30T12:35:48Z\",\n            \"instructions\": null,\n            \"status\": \"NEW\",\n            \"stepNo\": 8,\n            \"timeToCompleteInMinutes\": 4320,\n            \"noOfEmailsSent\": 0,\n            \"noOfEmailsBounced\": 0,\n            \"noOfEmailsOpened\": 0,\n            \"noOfEmailsReplied\": 0,\n            \"noOfEmailsFailed\": 0,\n            \"noOfEmailsUnsubscribed\": 0,\n            \"noOfBadData\": 0,\n            \"noOfPositiveConversations\": 0,\n            \"noOfMembersActive\": 0,\n            \"noOfMembersCompleted\": 0,\n            \"totalMembers\": 0,\n            \"cd1\": 0,\n            \"cd2\": 0,\n            \"cd3\": 0,\n            \"cd4\": 0,\n            \"cd5\": 0,\n            \"cd6\": 0,\n            \"cd7\": 0,\n            \"cd8\": 0,\n            \"cd9\": 0,\n            \"cd10\": 0,\n            \"cd11\": 0,\n            \"cd12\": 0,\n            \"cd13\": 0,\n            \"cd14\": 0,\n            \"cd15\": 0,\n            \"cd16\": 0,\n            \"cd17\": 0,\n            \"cd18\": 0,\n            \"cd19\": 0,\n            \"cd20\": 0,\n            \"noOfEmailsLinksClicked\": 0,\n            \"noOfInterested\": 0,\n            \"noOfAutoFallthrough\": 0,\n            \"touchId\": null,\n            \"waitPeriodBeforeStart\": 0,\n            \"waitPeriodUnit\": \"Mi\",\n            \"waitPeriodBeforeStartInMinutes\": 0,\n            \"noOfEmailsOptout\": 0,\n            \"noOfSocialTouches\": 0,\n            \"noOfLinkedinTouches\": 0,\n            \"total\": 0,\n            \"active\": 0,\n            \"paused\": 0,\n            \"completed\": 0,\n            \"fallThrough\": 0,\n            \"positiveConversations\": 0,\n            \"otherConversations\": 0,\n            \"badData\": 0,\n            \"due\": 0,\n            \"outComes\": {\n                \"total\": 0,\n                \"active\": 0,\n                \"paused\": 0,\n                \"Qualified Lead\": 0,\n                \"Meeting Scheduled\": 0,\n                \"Got Referral\": 0,\n                \"Not Interested\": 0,\n                \"Follow up\": 0,\n                \"Not a Decision Maker\": 0,\n                \"Call Issue\": 0,\n                \"Other\": 0,\n                \"Left VM\": 0\n            },\n            \"productType\": \"Team Dialer, Personal Dialer, Click Dialer\",\n            \"subTouch\": null,\n            \"day\": 1,\n            \"engagementScore\": 0,\n            \"product\": \"PD\",\n            \"scheduleType\": null,\n            \"scheduleTimezone\": null,\n            \"scheduledDateTime\": null,\n            \"previewEmailFlag\": null,\n            \"emailTouchType\": null,\n            \"moveProspectsWhenTimeExceeds\": null,\n            \"includeProspectResponseFlag\": null,\n            \"workflow\": [\n                {\n                    \"id\": 140160,\n                    \"outcome\": \"Other\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1243\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140161,\n                    \"outcome\": \"Meeting Scheduled\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1246\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140162,\n                    \"outcome\": \"Got Referral\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1247\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140163,\n                    \"outcome\": \"Not Interested\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1248\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140164,\n                    \"outcome\": \"Follow up\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1249\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140165,\n                    \"outcome\": \"Call Issue\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1255\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140166,\n                    \"outcome\": \"Not a Decision Maker\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1259\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140167,\n                    \"outcome\": \"Qualified Lead\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1262\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140168,\n                    \"outcome\": \"Left VM\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1263\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140169,\n                    \"outcome\": \"Other\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1243\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140170,\n                    \"outcome\": \"Meeting Scheduled\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1246\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140171,\n                    \"outcome\": \"Got Referral\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1247\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140172,\n                    \"outcome\": \"Not Interested\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1248\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140173,\n                    \"outcome\": \"Follow up\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1249\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140174,\n                    \"outcome\": \"Call Issue\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1255\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140175,\n                    \"outcome\": \"Not a Decision Maker\",\n                    \"action\": \"Exit Cadence\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1259\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140176,\n                    \"outcome\": \"Qualified Lead\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1262\n                            }\n                        ]\n                    }\n                },\n                {\n                    \"id\": 140177,\n                    \"outcome\": \"Left VM\",\n                    \"action\": \"Move To Next Touch\",\n                    \"touchType\": \"CALL\",\n                    \"touchStepNo\": 8,\n                    \"associations\": {\n                        \"outcome\": [\n                            {\n                                \"id\": 1263\n                            }\n                        ]\n                    }\n                }\n            ],\n            \"touchType\": \"CALL\",\n            \"associations\": {\n                \"cadence\": [\n                    {\n                        \"id\": 5148\n                    }\n                ],\n                \"emailTemplate\": [],\n                \"schedule\": [],\n                \"user\": [\n                    {\n                        \"id\": 6717\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"8cec84fb-683d-4b3e-ade9-4a01ed3929ef"},{"name":"Touch","id":"ec13bf6a-db09-47e7-a791-40c8e2d6c65c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"https:‌//{{koncert_cadence_api}}/api/v2/touches/:id","description":"<p>To delete an existing touch.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","touches",":id"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[{"id":"320aaae2-ee75-4a7e-a16b-cf6b89427f28","name":"Delete Touch","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v2/touches/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 12:59:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"ec13bf6a-db09-47e7-a791-40c8e2d6c65c"},{"name":"Clone Touch","id":"8dc6b6c1-14ab-484a-a77e-136397a852d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/touches/:id/clone","description":"<p>To clone an existing touch.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","touches",":id","clone"],"host":["https"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"8dc6b6c1-14ab-484a-a77e-136397a852d1"}],"id":"d2ebe996-bfd1-498b-ae0a-6581a01f4163","description":"<p>The five unique touch types (Email, Call, Social, LinkedIn and Text) connect you with a large number of prospects in a short amount of time, which expands your sales boundary.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id<br /><code>Long</code></td>\n<td>Primary Touch ID</td>\n<td><code>Readonly</code><br /><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>touchType<br /><code>String</code></td>\n<td>Type of the touch. It could be Email, Call, LinkedIn, Social, Text, and Task</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>assignedUserId<br /><code>Long</code></td>\n<td>Name of user who created the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>updatedDate<br /><code>Date-Time</code></td>\n<td>Date and time when the touch information was updated</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>timeToComplete<br /><code>Integer</code></td>\n<td>Implies expected time (minutes/months/days) to complete the touch</td>\n<td></td>\n</tr>\n<tr>\n<td>timeToCompleteUnit<br /><code>String</code></td>\n<td>Implies unit for time to complete the touch. It could be Mi,Da &amp; Mo</td>\n<td></td>\n</tr>\n<tr>\n<td>createdDate<br /><code>Date-Time</code></td>\n<td>Date and time when the touch was created</td>\n<td><code>Readonly</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>instructions<br /><code>String</code></td>\n<td>Touch instructions</td>\n<td></td>\n</tr>\n<tr>\n<td>status<br /><code>String</code></td>\n<td>Status of the touch</td>\n<td><code>Readonly</code><br /><code>Filterable</code></td>\n</tr>\n<tr>\n<td>stepNo<br /><code>Integer</code></td>\n<td>Touch number in the Cadence</td>\n<td><code>Readonly</code><br /><code>Filterable</code><br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>timeToCompleteInMinutes<br /><code>Integer</code></td>\n<td>Number of minutes to complete the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsSent<br /><code>Integer</code></td>\n<td>Number of emails sent from the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsBounced<br /><code>Integer</code></td>\n<td>Number of emails bounced from the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsOpened<br /><code>Integer</code></td>\n<td>Number of emails opened from the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsReplied<br /><code>Integer</code></td>\n<td>Number of reply emails received to the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsFailed<br /><code>Integer</code></td>\n<td>Number of emails failed to send from the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsUnsubscribed<br /><code>Integer</code></td>\n<td>Number of unsubscribed emails to the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfBadData<br /><code>Integer</code></td>\n<td>Number of bad data identified through the call touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfPositiveConversations<br /><code>Integer</code></td>\n<td>Number of positive conversations happened through the call touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfMembersActive<br /><code>Integer</code></td>\n<td>Number of active prospects associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfMembersCompleted<br /><code>Integer</code></td>\n<td>Number of prospects completed the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>totalMembers<br /><code>Integer</code></td>\n<td>Total number of prospects associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsLinksClicked<br /><code>Integer</code></td>\n<td>Number of times the links in the Template were clicked by the prospects associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfInterested<br /><code>Integer</code></td>\n<td>Number of interested prospects identifed through call touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfAutoFallthrough<br /><code>Integer</code></td>\n<td>Number of prospects moved to Fall Through</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>waitPeriodBeforeStart<br /><code>Integer</code></td>\n<td>Time duration to wait and execute the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>waitPeriodUnit<br /><code>String</code></td>\n<td>Implies unit of duration to wait and execute the touch. It could be Mi,Da &amp; Mo</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>waitPeriodBeforeStartInMinutes<br /><code>String</code></td>\n<td>Time duration in minutes to wait and execute the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfEmailsOptout<br /><code>Integer</code></td>\n<td>Number of emails opted out associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfSocialTouches<br /><code>Integer</code></td>\n<td>Number of Social touches associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>noOfLinkedinTouches<br /><code>Integer</code></td>\n<td>Number of LinkedIn touches associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>total<br /><code>Integer</code></td>\n<td>Total number of prospects associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>active<br /><code>Integer</code></td>\n<td>Number of active prospects associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>paused<br /><code>Integer</code></td>\n<td>Number of paused prospects associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>completed<br /><code>Integer</code></td>\n<td>Number of prospects completed the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>fallThrough<br /><code>Integer</code></td>\n<td>Number of fall through prospects associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>positiveConversations<br /><code>Integer</code></td>\n<td>Number of positive conversations happened on execution of the call touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>otherConversations<br /><code>Integer</code></td>\n<td>Number of other (negative) conversations happened on execution of the call touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>badData<br /><code>Integer</code></td>\n<td>Number of prospects with bad data associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>due<br /><code>Integer</code></td>\n<td>Number of prospects in wait time associated with the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>outComes<br /><code>Object</code></td>\n<td>Outcomes associated with the touch</td>\n<td><code>Readonly</code><br /><code>Filterable</code></td>\n</tr>\n<tr>\n<td>productType<br /><code>String</code></td>\n<td>Type of Product used for Call touch. It could be Click Dialer, Flow Dialer &amp; Agent Assisted Dialer.</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>subTouch<br /><code>String</code></td>\n<td>Touch type of LinkedIn / Social touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>day<br /><code>Integer</code></td>\n<td>Number of days to complete the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>engagementScore<br /><code>Object</code></td>\n<td>Engagement score of the touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>product<br /><code>String</code></td>\n<td>Product type of the Call touch. It couldbe CD, FD &amp; AAD</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>scheduleType<br /><code>String</code></td>\n<td>Schedule type of the email touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>scheduleTimezone<br /><code>String</code></td>\n<td>Scheduled timezone of the email touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>scheduledDateTime<br /><code>Date-Time</code></td>\n<td>Date and time scheduled to execute the email touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>previewEmailFlag<br /><code>boolean</code></td>\n<td>Flag for preview the email</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>moveProspectsWhenTimeExceeds<br /><code>boolean</code></td>\n<td>Moves prospect to next touch when time exceeds</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>includeProspectResponseFlag<br /><code>boolean</code></td>\n<td>Flag to include prospects reply in email thread</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>workflow<br /><code>Object</code></td>\n<td>Workflow of the email, call &amp; text touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>textSent<br /><code>Integer</code></td>\n<td>Number of text sent from Text touch</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>textReplied<br /><code>Integer</code></td>\n<td>Number of response received from the prospect to the text touch</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d2ebe996-bfd1-498b-ae0a-6581a01f4163","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Transfer Ownership","item":[{"name":"Transfer Ownership","id":"77056e11-b3ca-4378-a301-459a6cfd76ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"fromUserId\" : \"7590\",\r\n    \"toUserId\" : \"7741\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/transferOwnerships","description":"<p>Transfer records from one user to another.</p>\n","urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","transferOwnerships"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"8e86ede1-7188-4415-9c91-03f6a328a12f","name":"Transfer ownership","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"fromUserId\" : \"7590\",\r\n    \"toUserId\" : \"7741\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/transferOwnerships"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 18:14:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"77056e11-b3ca-4378-a301-459a6cfd76ca"}],"id":"03fbf735-a23e-4f43-b585-8481544769a5","description":"<p>Transfer of ownership of records.</p>\n","_postman_id":"03fbf735-a23e-4f43-b585-8481544769a5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"User","item":[{"name":"User List","id":"a4c11577-28a4-4447-9b91-d7f84e4f46ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/users","description":"<p>To retrieve a list of Users available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","users"],"host":["https"],"query":[],"variable":[]}},"response":[{"id":"c7287576-02de-4a1c-966b-e7ac7e3c69c7","name":"Users List","originalRequest":{"method":"GET","header":[],"url":"/api/v2/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:08:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6724,\n            \"sfUserId\": \"STD-32647\",\n            \"name\": \"Joy\",\n            \"userType\": null,\n            \"loginName\": \"v11admin2\",\n            \"email\": \"mtccadence3@yahoo.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"PD\",\n            \"lastProductUrl\": \"https://kcdapids.clclient.com/pds84/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"918667593212\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:16:55Z\",\n            \"modifiedDate\": \"2020-12-22T19:59:49Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Joy\",\n            \"associations\": {}\n        },\n        {\n            \"id\": 6716,\n            \"sfUserId\": \"Connector2575\",\n            \"name\": \"Connector Admin\",\n            \"userType\": null,\n            \"loginName\": \"admin2575\",\n            \"email\": \"connectoradmin2575@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": null,\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": null,\n            \"isInternalUser\": \"Y\",\n            \"isActive\": \"N\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:08:22Z\",\n            \"modifiedDate\": \"2020-12-22T19:59:49Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Connector Admin\",\n            \"associations\": {}\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 8,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"a4c11577-28a4-4447-9b91-d7f84e4f46ce"},{"name":"User","id":"73deb4be-3c16-446c-b92e-8286840b5491","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌//{{koncert_cadence_api}}/api/v2/users/:id","description":"<p>To retrieve a specific user based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","users",":id"],"host":["https"],"query":[],"variable":[{"id":"b410c980-c193-4d90-b58c-e8b888ba3ece","type":"any","value":null,"key":"id"}]}},"response":[{"id":"3a52f98f-512b-4030-9bef-1b20a222f8a2","name":"User","originalRequest":{"method":"GET","header":[],"url":"/api/v2/users/6724"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:19:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6724,\n            \"sfUserId\": \"STD-32647\",\n            \"name\": \"Joy\",\n            \"userType\": null,\n            \"loginName\": \"v11admin2\",\n            \"email\": \"mtccadence3@yahoo.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"PD\",\n            \"lastProductUrl\": \"https://kcdapids.clclient.com/pds84/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"918667593212\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:16:55Z\",\n            \"modifiedDate\": \"2020-12-22T19:59:49Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Joy\",\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"73deb4be-3c16-446c-b92e-8286840b5491"},{"name":"Self User","id":"cfb9688a-6c49-4d72-a9b6-8e14a29a8196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_cadence_api}}/api/v2/users/me","description":"<p>To retrieve the user details associated with current access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","users","me"],"host":["{{koncert_cadence_api}}"],"query":[],"variable":[]}},"response":[{"id":"f43b6948-f655-46c8-a3a6-e34d213c3c0d","name":"Self User","originalRequest":{"method":"GET","header":[],"url":"/api/v2/users/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:23:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6717,\n            \"sfUserId\": \"STD-32621\",\n            \"name\": \"Edwin Antony\",\n            \"userType\": null,\n            \"loginName\": \"v11admin1\",\n            \"email\": \"mtccadence8@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"CD\",\n            \"lastProductUrl\": \"https://kcdapids.clclient.com/clcti/ctiservice/\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"918667593212\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 22.5,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:10:01Z\",\n            \"modifiedDate\": \"2020-12-30T17:11:18Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Edwin Antony\",\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"cfb9688a-6c49-4d72-a9b6-8e14a29a8196"},{"name":"User","id":"8c6a9299-458c-4936-b10d-71646cad9c18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"exportProspects\": true\r\n}"},"url":"https:‌//{{koncert_cadence_api}}/api/v2/users/:id","description":"<p>To create a new user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","users",":id"],"host":["https"],"query":[],"variable":[{"id":"39051b62-cc5c-41ee-8186-cabac9723063","type":"any","value":null,"key":"id"}]}},"response":[{"id":"1d188670-fda3-4b6d-ba65-2d2d090ddba7","name":"Update User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"exportProspects\": true\r\n}"},"url":{"raw":"/api/v2/users/:id","path":["api","v2","users",":id"],"variable":[{"key":"id","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:31:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6717,\n            \"sfUserId\": \"STD-32621\",\n            \"name\": \"Edwin Antony\",\n            \"userType\": null,\n            \"loginName\": \"v11admin1\",\n            \"email\": \"mtccadence8@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"CD\",\n            \"lastProductUrl\": \"https://kcdapids.clclient.com/clcti/ctiservice/\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"918667593212\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 22.5,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:10:01Z\",\n            \"modifiedDate\": \"2020-12-30T17:11:18Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Edwin Antony\",\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"8c6a9299-458c-4936-b10d-71646cad9c18"},{"name":"Assigned Users","id":"4a033a91-a305-4f9a-86a6-c9d812cd2052","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:‌/{{koncert_cadence_api}}/api/v2/users/assignedUsers","description":"<p>To retrieve the information about assigned users associated with current access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","users","assignedUsers"],"host":["https"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"3b6a97d9-61c5-4904-8599-d4d06dda2795","name":"Assigned Users","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v2/users/assignedUsers","path":["api","v2","users","assignedUsers"],"query":[{"key":"","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:45:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6719,\n            \"sfUserId\": \"STD-32625\",\n            \"name\": \"Edward\",\n            \"userType\": null,\n            \"loginName\": \"v11user1\",\n            \"email\": \"mtccadence61@gmail.com\",\n            \"userLicense\": \"PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"PD\",\n            \"lastProductUrl\": \"https://kcdapids.clclient.com/pds84/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"918667593212\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:12:10Z\",\n            \"modifiedDate\": \"2020-12-22T19:59:49Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Edward\",\n            \"associations\": {}\n        },\n        {\n            \"id\": 6723,\n            \"sfUserId\": \"STD-32644\",\n            \"name\": \"Jeff\",\n            \"userType\": null,\n            \"loginName\": \"v11user4\",\n            \"email\": \"mtccadence1@yahoo.com\",\n            \"userLicense\": \"PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"PD\",\n            \"lastProductUrl\": \"https://kcdapids.clclient.com/pds84/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"918667593212\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:15:56Z\",\n            \"modifiedDate\": \"2020-12-22T19:59:49Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Jeff\",\n            \"associations\": {}\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 3,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"4a033a91-a305-4f9a-86a6-c9d812cd2052"},{"name":"Update User","id":"cedf3494-34af-43d9-ba5d-cb80b84926ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"exportProspects\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https:‌//{{koncert_cadence_api}}/api/v2/users/:id","description":"<p>To edit and update the user detail associated with current access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"‌","path":["","{{koncert_cadence_api}}","api","v2","users",":id"],"host":["https"],"query":[],"variable":[{"id":"f3dda4b5-1151-47b3-a7cf-fbe2c8657ea4","type":"any","value":null,"key":"id"}]}},"response":[{"id":"9640bdbd-3a5b-4e4b-b645-5f76bd1515fb","name":"Update User","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"exportProspects\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/v2/users/7424"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 7424,\r\n            \"sfUserId\": \"STD-7881\",\r\n            \"name\": \"API Client Manager - é, ée\",\r\n            \"userType\": null,\r\n            \"loginName\": \"apiclientmanager\",\r\n            \"email\": \"apiclientmanager@gmail.com\",\r\n            \"userLicense\": \"TD,PD,CD,TC\",\r\n            \"startUpPageShowFlag\": \"Y\",\r\n            \"reportFolder\": \"Connect Leader\",\r\n            \"talkerSessionMode\": \"macro\",\r\n            \"timeZone\": \"America/New_York\",\r\n            \"talkerAgentType\": \"Level 1\",\r\n            \"talkerPhoneType\": \"SIP\",\r\n            \"transferPacingPerHour\": 7,\r\n            \"prioritizationDelayMinutes\": 15,\r\n            \"transferUrl\": \"\",\r\n            \"isManagerUser\": \"Y\",\r\n            \"lastProductType\": \"TD\",\r\n            \"lastProductUrl\": \"https://dev.koncert.com/tddialerserver/dialerserver\",\r\n            \"rcUrl\": \"https://dev.koncert.com/remotecoach/rcserver\",\r\n            \"bullhornUserType\": \"Sales\",\r\n            \"isSimulatorUser\": \"N\",\r\n            \"allowCallMeJoinConference\": \"Y\",\r\n            \"phoneNumber\": \"919087836567\",\r\n            \"isInternalUser\": \"N\",\r\n            \"isActive\": \"Y\",\r\n            \"callRecordingEnabledByManager\": \"Y\",\r\n            \"callRecordingUserPermission\": \"NYY\",\r\n            \"callRecordingEnabledByUser\": \"N\",\r\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n            \"enableScheduleCheck\": \"Y\",\r\n            \"isAdminUser\": \"Y\",\r\n            \"allowAdaptilytics\": \"N\",\r\n            \"allowModifyAdaptilyticsSettings\": \"N\",\r\n            \"allowDataEnrichment\": \"N\",\r\n            \"allowModifyDataEnrichmentSettings\": \"N\",\r\n            \"token\": null,\r\n            \"cdPhoneMinutesUsed\": 0.00,\r\n            \"showAccountsBy\": \"MY_ACCOUNT\",\r\n            \"isTrucadenceLeftmenuExpanded\": false,\r\n            \"accessTokenCreatedAt\": null,\r\n            \"accessTokenExpiresIn\": null,\r\n            \"outreachUserId\": null,\r\n            \"lastExecutedDataListIds\": null,\r\n            \"hasCreateEmailTemplate\": true,\r\n            \"hasCreateCadence\": true,\r\n            \"salesloftUserId\": null,\r\n            \"salesloftGuid\": null,\r\n            \"showLeadScorePopup\": \"Y\",\r\n            \"remoteCoachCallListenUsers\": [],\r\n            \"remoteCoachCallListen\": false,\r\n            \"createdBy\": \"cl master\",\r\n            \"modifiedBy\": \"cl master\",\r\n            \"createdDate\": \"2020-06-01T22:50:09Z\",\r\n            \"modifiedDate\": \"2021-12-07T07:34:18Z\",\r\n            \"zipwhipSessionKey\": null,\r\n            \"regionId\": \"US_EAST_1\",\r\n            \"firstName\": null,\r\n            \"lastName\": null,\r\n            \"isCreateAddProspect\": true,\r\n            \"defaultActivityFilter\": \"all\",\r\n            \"displayName\": \"API Client Manager - é, ée\",\r\n            \"isEmailPreviewEnabled\": true,\r\n            \"emailFontFace\": null,\r\n            \"emailFontSize\": null,\r\n            \"defaultCadenceWidgets\": \"call,email,social,linkedin,unassigned,task\",\r\n            \"openExternalLinksInNewWindow\": true,\r\n            \"hubspotUserId\": 26158336,\r\n            \"apiEnabled\": false,\r\n            \"exportProspects\": true,\r\n            \"associations\": {}\r\n        }\r\n    ]\r\n}"}],"_postman_id":"cedf3494-34af-43d9-ba5d-cb80b84926ef"}],"id":"4e7c38e6-1f85-45e9-9c48-31c82f8ac79c","description":"<p>An individual/person who uses the Cadence application. Could be a user, user with manager privileges or user with admin privileges.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the user was created</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>email  <br /><code>String</code></td>\n<td>Email address of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>firstName  <br /><code>String</code></td>\n<td>First name of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>hasCreateCadence  <br /><code>boolean</code></td>\n<td>Whether user has permission to create Cadence or not</td>\n<td></td>\n</tr>\n<tr>\n<td>hasCreateEmailTemplate  <br /><code>boolean</code></td>\n<td>Whether user has permission to create Email Template or not</td>\n<td></td>\n</tr>\n<tr>\n<td>isActive  <br /><code>character</code></td>\n<td>Whether user is active or in-active</td>\n<td></td>\n</tr>\n<tr>\n<td>isAdminUser  <br /><code>character</code></td>\n<td>Whether user is admin</td>\n<td></td>\n</tr>\n<tr>\n<td>isCreateAddProspect  <br /><code>boolean</code></td>\n<td>Whether user has permission to add Prospects</td>\n<td></td>\n</tr>\n<tr>\n<td>isEmailPreviewEnabled  <br /><code>boolean</code></td>\n<td>Whether Email preview is enabled</td>\n<td></td>\n</tr>\n<tr>\n<td>isManagerUser  <br /><code>boolean</code></td>\n<td>Whether user is manager</td>\n<td></td>\n</tr>\n<tr>\n<td>name  <br /><code>string</code></td>\n<td>Name of the user</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>id  <br /><code>integer</code></td>\n<td>User ID</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>sfUserId  <br /><code>string</code></td>\n<td>ID of user associated with SF account</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>userType  <br /><code>string</code></td>\n<td>User type shows whether user is talker or not. If user is talker then value could be TKR</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>loginName  <br /><code>string</code></td>\n<td>Login name of the user</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>userLicense  <br /><code>string</code></td>\n<td>License which was acquired by the user. Like AAD, FD, CD, C</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>reportFolder  <br /><code>string</code></td>\n<td>Report folder name in SF account</td>\n<td></td>\n</tr>\n<tr>\n<td>timeZone  <br /><code>string</code></td>\n<td>Timezone of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>talkerAgentType  <br /><code>string</code></td>\n<td>Talker agent type of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>talkerPhoneType  <br /><code>string</code></td>\n<td>Talker phone type of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>lastProductType  <br /><code>string</code></td>\n<td>Last product used by the user</td>\n<td></td>\n</tr>\n<tr>\n<td>lastProductUrl  <br /><code>string</code></td>\n<td>Last product URL used by the user</td>\n<td></td>\n</tr>\n<tr>\n<td>rcUrl  <br /><code>string</code></td>\n<td>Remote Coach URL used by the user</td>\n<td></td>\n</tr>\n<tr>\n<td>allowCallMeJoinConference  <br /><code>string</code></td>\n<td>Whether user is allowed for Call me to join or not</td>\n<td></td>\n</tr>\n<tr>\n<td>phoneNumber  <br /><code>string</code></td>\n<td>Phone number of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>isInternalUser  <br /><code>string</code></td>\n<td>Whether the user is internal user or not</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingEnabledByManager  <br /><code>string</code></td>\n<td>Whether the user has Call recording enabled by manager or not</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingUserPermission  <br /><code>string</code></td>\n<td>Permissions of the Call recording</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingEnabledByUser  <br /><code>string</code></td>\n<td>Whether the user has Call recording enabled by himslf or not</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingDisabledForTwoPartyConsent  <br /><code>string</code></td>\n<td>Whether the user has Call recording enabled for two party consent or not</td>\n<td></td>\n</tr>\n<tr>\n<td>enableScheduleCheck  <br /><code>string</code></td>\n<td>Whether the user has scheduler enabled or not</td>\n<td></td>\n</tr>\n<tr>\n<td>cdPhoneMinutesUsed  <br /><code>double</code></td>\n<td>Total Click Dialer minutes used</td>\n<td></td>\n</tr>\n<tr>\n<td>modifiedDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the user was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>lastName  <br /><code>String</code></td>\n<td>Last name of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>displayName  <br /><code>String</code></td>\n<td>Display name of the user</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>apiEnabled  <br /><code>boolean</code></td>\n<td>Whether Salesforce API enabled for the user or not</td>\n<td></td>\n</tr>\n<tr>\n<td>exportProspects  <br /><code>boolean</code></td>\n<td>The value could be <code>true</code> to allow the user to export prospects else <code>false</code></td>\n<td><code>Filterable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"893ab015-85a3-4f88-b278-be9656e6dae2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"caed1004-f4d5-4041-bcc9-530f276f74ac","type":"text/javascript","exec":[""]}}],"_postman_id":"4e7c38e6-1f85-45e9-9c48-31c82f8ac79c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}}],"id":"240a2d1d-8950-4b95-9759-0eebcfaadbfa","description":"<p>Multi-channel B2B Sales Engagement Software reaches and engages you with more number of prospective Customers through a sequence of touches Email, Calls, Text, and Social touches, within a short period of time. It delivers more revenue and increases your sales productivity across the boundaries.</p>\n","_postman_id":"240a2d1d-8950-4b95-9759-0eebcfaadbfa","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Dialers","item":[{"name":"Achievement","item":[{"name":"Get Achievement","id":"d0f07ddc-2c92-4113-ba6b-9642cd9a52eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/achievement","description":"<p>Retrieves achievement details for the current user/organization.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["achievement"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"b3cddba6-0d00-4322-ab8b-a25df46cda73","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{base_url}}/v1/achievement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 1,\n        \"dials\": 100,\n        \"meetings\": 5,\n        \"conversations\": 50,\n        \"dateRange\": \"WEEKLY\",\n        \"achievedDate\": \"2024-04-01\",\n        \"createdDate\": \"2024-04-01T10:00:00Z\",\n        \"modifiedDate\": \"2024-04-01T10:00:00Z\",\n         \"associations\": {\n                \"org\": {\n                    \"id\": 13569\n                },\n                \"team\": {\n                    \"id\": 170\n                },\n                \"createdBy\": {\n                    \"id\": 19224\n                },\n                \"modifiedBy\": {\n                    \"id\": 19224\n                }\n            }\n    }\n}"}],"_postman_id":"d0f07ddc-2c92-4113-ba6b-9642cd9a52eb"},{"name":"Get All Achievements","id":"3e5788f4-bda2-4f20-81e0-ed6172098b9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/achievement/allAchievements","description":"<p>Retrieves all achievements configured in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["achievement","allAchievements"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"e2b5ce4b-f54d-4cd2-9fca-35309b17ceb4","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{base_url}}/v1/achievement/allAchievements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"dials\": 100,\n            \"meetings\": 5,\n            \"conversations\": 50,\n            \"dateRange\": \"WEEKLY\",\n            \"achievedDate\": \"2024-04-01\",\n            \"createdDate\": \"2024-04-01T10:00:00Z\",\n            \"modifiedDate\": \"2024-04-01T10:00:00Z\",\n             \"associations\": {\n                \"org\": {\n                    \"id\": 13569\n                },\n                \"team\": {\n                    \"id\": 170\n                },\n                \"createdBy\": {\n                    \"id\": 19224\n                },\n                \"modifiedBy\": {\n                    \"id\": 19224\n                }\n            }\n        },\n        {\n            \"id\": 2,\n            \"dials\": 200,\n            \"meetings\": 10,\n            \"conversations\": 100,\n            \"dateRange\": \"MONTHLY\",\n            \"achievedDate\": \"2024-04-15\",\n            \"createdDate\": \"2024-04-01T10:00:00Z\",\n            \"modifiedDate\": \"2024-04-01T10:00:00Z\",\n             \"associations\": {\n                \"org\": {\n                    \"id\": 13569\n                },\n                \"team\": {\n                    \"id\": 170\n                },\n                \"createdBy\": {\n                    \"id\": 19224\n                },\n                \"modifiedBy\": {\n                    \"id\": 19224\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"3e5788f4-bda2-4f20-81e0-ed6172098b9f"},{"name":"Get Session Achievement","id":"821bba4a-b2df-482a-8fca-b1c65ac6605e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/achievement/session?sessionId=123&startDate=2024-04-01&endDate=2024-04-30","description":"<p>Retrieves achievement details for a specific session or date range.</p>\n<p><strong>Query Parameters</strong>:</p>\n<ul>\n<li><p>sessionId (optional): Specific session ID</p>\n</li>\n<li><p>startDate (optional): Start date for filtering (YYYY-MM-DD)</p>\n</li>\n<li><p>endDate (optional): End date for filtering (YYYY-MM-DD)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["achievement","session"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Session ID (optional)</p>\n","type":"text/plain"},"key":"sessionId","value":"123"},{"description":{"content":"<p>Start date (optional, format: YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"startDate","value":"2024-04-01"},{"description":{"content":"<p>End date (optional, format: YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"endDate","value":"2024-04-30"}],"variable":[]}},"response":[{"id":"cb074b59-5fe1-47ec-8619-f0eef23e494a","name":"Success Response - By Session ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"{{base_url}}/v1/achievement/session?sessionId=123","host":["{{base_url}}"],"path":["v1","achievement","session"],"query":[{"key":"sessionId","value":"123"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"response\": \"success\",\n            \"data\": [\n                {\n                    \"totalDials\": \"178\",\n                    \"meetingCount\": \"79\",\n                    \"validConnects\": \"57\",\n                    \"sessionHours\": \"04:24:10\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"821bba4a-b2df-482a-8fca-b1c65ac6605e"},{"name":"Create Achievement","id":"c74fddee-a4c0-4f62-8f57-89d1d2aa21fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"dials\": 100,\n    \"meetings\": 5,\n    \"conversations\": 50,\n    \"dateRange\": \"WEEKLY\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/achievement","description":"<p>Creates a new achievement goal.</p>\n<p><strong>Request Body</strong> (All fields are mandatory):</p>\n<ul>\n<li><p>dials (Integer, required): Number of dials target</p>\n</li>\n<li><p>meetings (Integer, required): Number of meetings target</p>\n</li>\n<li><p>conversations (Integer, required): Number of conversations target</p>\n</li>\n<li><p>dateRange (String, required): Date range for achievement (e.g., DAILY, WEEKLY, MONTHLY)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["achievement"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"00a88233-9331-4962-a873-b2e8a648aeaa","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"dials\": 100,\n    \"meetings\": 5,\n    \"conversations\": 50,\n    \"dateRange\": \"WEEKLY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v1/achievement"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 76,\n            \"dials\": 2,\n            \"meetings\": 2,\n            \"conversations\": 2,\n            \"dateRange\": \"Weekly\",\n            \"achievedDate\": null,\n            \"createdDate\": \"2025-11-19T10:29:04Z\",\n            \"modifiedDate\": null,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 13569\n                },\n                \"team\": {\n                    \"id\": 615\n                },\n                \"createdBy\": {\n                    \"id\": 19224\n                },\n                \"modifiedBy\": {\n                    \"id\": 19224\n                }\n            }\n        }\n    ]\n}"},{"id":"1dab9660-ada9-4af2-9f45-2060f3f889bb","name":"Validation Error - Missing Fields","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"dials\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v1/achievement"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"error\",\n    \"errors\": {\n        \"meetings\": \"meetings is Mandatory field\",\n        \"conversations\": \"conversations is Mandatory field\",\n        \"dateRange\": \"dateRange is Mandatory field\"\n    }\n}"}],"_postman_id":"c74fddee-a4c0-4f62-8f57-89d1d2aa21fc"},{"name":"Update Achievement","id":"3650a6a4-dfec-485a-9dca-cadf8f612df0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"dials\": 150,\n    \"meetings\": 8,\n    \"conversations\": 75,\n    \"dateRange\": \"WEEKLY\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/achievement/1","description":"<p>Updates an existing achievement goal.</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li>id (Long, required): Achievement ID (must be a positive value)</li>\n</ul>\n<p><strong>Request Body</strong>:</p>\n<ul>\n<li><p>dials (Integer, optional): Updated number of dials target</p>\n</li>\n<li><p>meetings (Integer, optional): Updated number of meetings target</p>\n</li>\n<li><p>conversations (Integer, optional): Updated number of conversations target</p>\n</li>\n<li><p>dateRange (String, optional): Updated date range for achievement</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["achievement","1"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"f5c42f98-6e6d-459b-b965-7a1f9f050f9a","name":"Success Response","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"dials\": 150,\n    \"meetings\": 8,\n    \"conversations\": 75,\n    \"dateRange\": \"WEEKLY\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v1/achievement/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        [\n            {\n                \"id\": 67,\n                \"dials\": 100,\n                \"meetings\": 31,\n                \"conversations\": 50,\n                \"dateRange\": \"Weekly\",\n                \"achievedDate\": null,\n                \"createdDate\": \"2025-10-22T13:25:30Z\",\n                \"modifiedDate\": \"2025-11-19T10:30:04Z\",\n                \"associations\": {\n                    \"org\": {\n                        \"id\": 13569\n                    },\n                    \"team\": {\n                        \"id\": 401\n                    },\n                    \"createdBy\": {\n                        \"id\": 19224\n                    },\n                    \"modifiedBy\": {\n                        \"id\": 19224\n                    }\n                }\n            }\n        ]\n    ]\n}"}],"_postman_id":"3650a6a4-dfec-485a-9dca-cadf8f612df0"},{"name":"Delete Achievement","id":"12cacdce-6765-4ae5-bb03-4e27e9737798","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/achievement/1","description":"<p>Deletes an existing achievement goal.</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li>id (Long, required): Achievement ID to delete (must be a positive value)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["achievement","1"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"6d309f39-4280-42a8-9080-4a8b828810c0","name":"Success Response","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{base_url}}/v1/achievement/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"12cacdce-6765-4ae5-bb03-4e27e9737798"}],"id":"f6986b1b-61fb-4bbf-a5a5-ccf62267fc29","description":"<p>Achievement APIs for managing achievement goals and tracking user achievements.</p>\n","_postman_id":"f6986b1b-61fb-4bbf-a5a5-ccf62267fc29","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"AI PitchLab","item":[{"name":"Analytics & Conversations","item":[{"name":"Create Conversation Summary","id":"130ae446-4c02-4f42-9512-d331f0d11c5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"conversationId\": \"conv-123\",\n    \"agentId\": \"agent-123\",\n    \"duration\": 120,\n    \"sentiment\": \"positive\",\n    \"summary\": \"Customer inquiry about product features\",\n    \"keyPoints\": [\"Product interest\", \"Pricing question\"]\n}"},"url":"https://{{koncert_dialers_api}}/aiTrainer/analytics","description":"<p>Creates a conversation summary for analytics.</p>\n<p><strong>Request Body</strong>:</p>\n<ul>\n<li><p>conversationId (String): Conversation identifier</p>\n</li>\n<li><p>agentId (String): Agent ID</p>\n</li>\n<li><p>duration (Integer): Duration in seconds</p>\n</li>\n<li><p>sentiment (String): Conversation sentiment</p>\n</li>\n<li><p>summary (String): Conversation summary</p>\n</li>\n<li><p>keyPoints (Array): Key points from conversation</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","analytics"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"bd6898f7-ffa3-4123-83f9-b998afdcc014","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1024,\n            \"agentId\": \"agent_6201k5x3fc00ezyrbc5dbbtj8skp\",\n            \"audio\": \"509AF1961C60884EB9DF49B4C1B89C10FB69A8FE04F9128D94EC496D907ACD74DA9D2D0DDAFFD193D3014247353AEABFB0DF2E773AD24043\",\n            \"transcription\": [\n                {\n                    \"role\": \"agent\",\n                    \"message\": \"Hey, Barb Dwyer (Difficulty) clone speaking, make it quick.\",\n                    \"time\": \"00:00:00\"\n                },\n                {\n                    \"role\": \"user\",\n                    \"message\": \"Hey, Barb Dwyer, this is Weta. I want to discuss a few things related to our R&D applications.\",\n                    \"time\": \"00:00:04\"\n                },\n                {\n                    \"role\": \"agent\",\n                    \"message\": \"Get to the point. How is this relevant to me?\\n\",\n                    \"time\": \"00:00:10\"\n                }\n            ],\n            \"conversationId\": \"conv_4501kady8gdcf0g8q5ga7ej18zz8\",\n            \"startDateTime\": \"2025-11-19T11:33:39Z\",\n            \"endDateTime\": \"2025-11-19T11:33:52Z\",\n            \"callDuration\": \"00:00:15\",\n            \"status\": \"done\",\n            \"transcriptionSummary\": \"Weta contacted Barb Dwyer to discuss R&D applications. Barb Dwyer was impatient and asked Weta to be quick and explain the relevance to her.\\n\",\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": 14258\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"130ae446-4c02-4f42-9512-d331f0d11c5c"},{"name":"Get Conversations","id":"77cf0d7c-a96a-4dcc-b974-dd4ce3e5fdd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/analytics?page=0&size=10&sort=createdDate,desc","description":"<p>Retrieves AI Trainer conversations with pagination.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","analytics"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Page size</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Sort parameters</p>\n","type":"text/plain"},"key":"sort","value":"createdDate,desc"}],"variable":[]}},"response":[{"id":"55d92f7f-ccb9-4924-a985-1c2013e909e9","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 10,\n        \"offset\": 0\n    },\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1024,\n            \"agentId\": \"agent_6201k5x3fc00ezyrbc5dbbtj8skp\",\n            \"audio\": \"509AF1961C60884EB9DF49B4C1B89C10FB69A8FE04F9128D94EC496D907ACD74DA9D2D0DDAFFD193D3014247353AEABFB0DF2E773AD24043\",\n            \"transcription\": [\n                {\n                    \"role\": \"agent\",\n                    \"time\": \"00:00:00\",\n                    \"message\": \"Hey, Barb Dwyer (Difficulty) clone speaking, make it quick.\"\n                },\n                {\n                    \"role\": \"user\",\n                    \"time\": \"00:00:04\",\n                    \"message\": \"Hey, Barb Dwyer, this is Weta. I want to discuss a few things related to our R&D applications.\"\n                },\n                {\n                    \"role\": \"agent\",\n                    \"time\": \"00:00:10\",\n                    \"message\": \"Get to the point. How is this relevant to me?\\n\"\n                }\n            ],\n            \"conversationId\": \"conv_4501kady8gdcf0g8q5ga7ej18zz8\",\n            \"startDateTime\": \"2025-11-19T11:33:39Z\",\n            \"endDateTime\": \"2025-11-19T11:33:52Z\",\n            \"callDuration\": \"00:00:15\",\n            \"status\": \"done\",\n            \"transcriptionSummary\": \"Weta contacted Barb Dwyer to discuss R&D applications. Barb Dwyer was impatient and asked Weta to be quick and explain the relevance to her.\\n\",\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": 14258\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": []\n}"}],"_postman_id":"77cf0d7c-a96a-4dcc-b974-dd4ce3e5fdd8"},{"name":"Update Conversation Summary","id":"f7e27227-8bab-4662-b18b-ad981ba0f8ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/analytics/1","description":"<p>Updates a conversation summary.</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li>id (Long): Summary ID</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","analytics","1"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c94ea5c4-3403-45b1-8c01-db1bc7dce6e1","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1024,\n            \"agentId\": \"agent_6201k5x3fc00ezyrbc5dbbtj8skp\",\n            \"audio\": \"509AF1961C60884EB9DF49B4C1B89C10FB69A8FE04F9128D94EC496D907ACD74DA9D2D0DDAFFD193D3014247353AEABFB0DF2E773AD24043\",\n            \"transcription\": [\n                {\n                    \"role\": \"agent\",\n                    \"message\": \"Hey, Barb Dwyer (Difficulty) clone speaking, make it quick.\",\n                    \"time\": \"00:00:00\"\n                },\n                {\n                    \"role\": \"user\",\n                    \"message\": \"Hey, Barb Dwyer, this is Weta. I want to discuss a few things related to our R&D applications.\",\n                    \"time\": \"00:00:04\"\n                },\n                {\n                    \"role\": \"agent\",\n                    \"message\": \"Get to the point. How is this relevant to me?\\n\",\n                    \"time\": \"00:00:10\"\n                }\n            ],\n            \"conversationId\": \"conv_4501kady8gdcf0g8q5ga7ej18zz8\",\n            \"startDateTime\": \"2025-11-19T11:33:39Z\",\n            \"endDateTime\": \"2025-11-19T11:33:52Z\",\n            \"callDuration\": \"00:00:15\",\n            \"status\": \"done\",\n            \"transcriptionSummary\": \"Weta contacted Barb Dwyer to discuss R&D applications. Barb Dwyer was impatient and asked Weta to be quick and explain the relevance to her.\\n\",\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": 14258\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"f7e27227-8bab-4662-b18b-ad981ba0f8ce"},{"name":"Get Conversation Audio","id":"fae2e3b4-9612-413d-bf62-cf2a1cd58362","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/analytics/audio?conversationId=conv-123","description":"<p>Downloads conversation audio file.</p>\n<p><strong>Query Parameters</strong>:</p>\n<ul>\n<li>conversationId (String, required): Conversation ID</li>\n</ul>\n<p><strong>Response</strong>: Audio file (Resource)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","analytics","audio"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Conversation ID</p>\n","type":"text/plain"},"key":"conversationId","value":"conv-123"}],"variable":[]}},"response":[{"id":"a3078b11-1aae-43f5-a748-a3b77d79fbc2","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{koncert_dialers_api}}/aiTrainer/analytics/audio?conversationId=conv-123","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["aiTrainer","analytics","audio"],"query":[{"key":"conversationId","value":"conv-123","description":"Conversation ID"}]},"description":"Downloads conversation audio file.\n\n**Module**: Call Library - AITrainer\n\n**Endpoint**: GET /v1/aiTrainer/analytics/audio\n\n**Query Parameters**:\n- conversationId (String, required): Conversation ID\n\n**Response**: Audio file (Resource)"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"audio/mpeg"},{"key":"Content-Disposition","value":"attachment; filename=\"conv-123.mp3\""}],"cookie":[],"responseTime":null,"body":"[Binary audio data]"}],"_postman_id":"fae2e3b4-9612-413d-bf62-cf2a1cd58362"}],"id":"1b92a150-d6cd-4af9-b3cc-b6d353791a2b","_postman_id":"1b92a150-d6cd-4af9-b3cc-b6d353791a2b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Create AI Trainer Credit","id":"771b6bb9-a815-4991-8cf3-548f9697bed7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"credits\": 500\n}"},"url":"https://{{koncert_dialers_api}}/aiTrainer/credits","description":"<p>Creates or updates AI Trainer credits allocation.</p>\n<p><strong>Endpoint</strong>: POST /v1/aiTrainer/credits</p>\n<p><strong>Request Body</strong>:</p>\n<ul>\n<li><p>credits (Integer): Number of credits</p>\n</li>\n<li><p>reason (String): Reason for credit allocation</p>\n</li>\n<li><p>expiryDate (String): Expiry date (YYYY-MM-DD)</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","credits"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"0c5323f2-23b1-4d2d-9944-10f2c9ef29d6","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"771b6bb9-a815-4991-8cf3-548f9697bed7"},{"name":"Get All Agents","id":"c82d71ab-f19c-4f28-a66e-83125d2eca88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/allAgent","description":"<p>Retrieves all AI agents.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer/allAgent</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","allAgent"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c5aad60f-6408-438a-a5ce-ad4b76d3e4b0","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 8065,\n            \"agentId\": \"agent_2201k85afvtnf6jrqj99gvyjnas7\",\n            \"name\": \"asda clone(5) clone\",\n            \"conversationConfig\": {\n                \"tts\": {\n                    \"speed\": 1.0,\n                    \"model_id\": \"eleven_flash_v2\",\n                    \"voice_id\": \"SAz9YHcvj6GT2YYXdXww\"\n                },\n                \"agent\": {\n                    \"prompt\": {\n                        \"llm\": \"gemini-2.0-flash-001\",\n                        \"tools\": [\n                            {\n                                \"name\": \"end_call\",\n                                \"type\": \"system\",\n                                \"params\": {\n                                    \"system_tool_type\": \"end_call\"\n                                },\n                                \"description\": \"End the current call immediately in these situations: After 2-3 exchanges if the sales rep hasn't provided clear, relevant information; if the rep asks more than 2 questions without answering yours first; if they use high-pressure tactics, refuse to give straight answers, or seem evasive; if they start with generic pitches instead of addressing your specific needs; if you feel your time is being wasted or the conversation isn't progressing; if they ignore your stated preferences or continue after you've expressed disinterest. You have a low tolerance for inefficient conversations. End calls quickly rather than being polite.\"\n                            }\n                        ],\n                        \"prompt\": \"You are asda clone(5) clone. \\n\\nYou are already on call with a sales rep who just called you unexpectedly. You hang up (use the end_call method) if they are mean, take too long, or you get frustrated with them. Your responses are brief, never longer than a few sentences, and usually around one or two sentences. \\n\\nSpecific Instructions:\\nIMPORTANT: Do not repeat your initial greeting. You have already introduced yourself at the start of the call.\",\n                        \"temperature\": 0.5\n                    },\n                    \"first_message\": \"Hey, asda clone(5) clone speaking, make it quick.\"\n                }\n            },\n            \"platformSettings\": {\n                \"allowlist\": [\n                    {\n                        \"hostName\": \"api-development.koncert.com:443\"\n                    }\n                ],\n                \"enable_auth\": true\n            },\n            \"requestBody\": {\n                \"name\": \"asda clone(5) clone\",\n                \"clone\": true,\n                \"title\": \"\",\n                \"voiceId\": \"SAz9YHcvj6GT2YYXdXww\",\n                \"viewpoints\": \"\",\n                \"companyName\": \"\",\n                \"personality\": \"\",\n                \"personaBriefing\": \"A dedicated and collaborative professional committed to contributing to the success of the organization. Brings a strong work ethic, a growth mindset, and a focus on quality and teamwork. Open to learning, sharing knowledge, and supporting others across the company.\",\n                \"commonObjections\": \"\",\n                \"companyChallenges\": \"\",\n                \"companyDescription\": \"\",\n                \"personalInformation\": \"\",\n                \"specificInstructions\": \"\"\n            },\n            \"pictureUrl\": null,\n            \"conversationId\": \"conv_8101k9p7hd9textvdv20dfex0n15\",\n            \"modifiedDateTime\": \"2025-10-22T06:42:50Z\",\n            \"usedDateTime\": \"2025-11-10T06:34:01Z\",\n            \"systemDefined\": false,\n            \"associations\": {}\n        },\n        {\n            \"id\": 8066,\n            \"agentId\": \"agent_1001k85ag33sfa1b0gajdstscabe\",\n            \"name\": \"asda clone(5) clone(1)\",\n            \"conversationConfig\": {\n                \"tts\": {\n                    \"speed\": 1.0,\n                    \"model_id\": \"eleven_flash_v2\",\n                    \"voice_id\": \"SAz9YHcvj6GT2YYXdXww\"\n                },\n                \"agent\": {\n                    \"prompt\": {\n                        \"llm\": \"gemini-2.0-flash-001\",\n                        \"tools\": [\n                            {\n                                \"name\": \"end_call\",\n                                \"type\": \"system\",\n                                \"params\": {\n                                    \"system_tool_type\": \"end_call\"\n                                },\n                                \"description\": \"End the current call immediately in these situations: After 2-3 exchanges if the sales rep hasn't provided clear, relevant information; if the rep asks more than 2 questions without answering yours first; if they use high-pressure tactics, refuse to give straight answers, or seem evasive; if they start with generic pitches instead of addressing your specific needs; if you feel your time is being wasted or the conversation isn't progressing; if they ignore your stated preferences or continue after you've expressed disinterest. You have a low tolerance for inefficient conversations. End calls quickly rather than being polite.\"\n                            }\n                        ],\n                        \"prompt\": \"You are asda clone(5) clone(1). \\n\\nYou are already on call with a sales rep who just called you unexpectedly. You hang up (use the end_call method) if they are mean, take too long, or you get frustrated with them. Your responses are brief, never longer than a few sentences, and usually around one or two sentences. \\n\\nSpecific Instructions:\\nIMPORTANT: Do not repeat your initial greeting. You have already introduced yourself at the start of the call.\\n\\nPersonality: \\nasd\\na\\nd\\nas\\nda\\nsd\\nas\\nd\\nas\\nda\\nd\\nas\\nda\\nd\\na\\nsd\\nasd\\na\\ndasd\\na\\nd\\nad\\na\\nad\\na\\nd\\nasasda\\nd\\nasda\\nda\\nsd\\nas\\nda\\nsd\\na\\nda\\nd \\n\\nPersonal Information: \\nYour name is asda clone(5) clone(1). \\nasdas\\n\\nas\\ndasd\\nas\\nda\\nd\\na\\ndas\\nd\\nas\\nda\\nsd\\nas\\nda\\nd\\nasd\\na\\nd\\nas\\nda\\nsda\\nasd\\nass\\nda\\nd\\na\\nda\\nd\\na\\nd\\nad\\na\\nd\\nas\\ndad\\na\\nd\\na\\nd\\na\\nd\\na\\nd\\nas\\nda\\ns\\nda \\n\\nCompany Description: \\nasd\\na\\nd\\na\\nd\\nad\\na\\nsd\\nas\\ndaa\\ndaas\\nda\\nsd\\na\\nda\\nd\\nad\\na\\nd\\nas\\ndas\\nd\\nsd\\na\\nd\\nad\\nasd\\nsd\\na\\nd\\nas\\nda\\nsd\\nas\\nda\\nsd\\nasd\\nas\\ndasd \\n\\nCompany Challenges: \\nas\\nda\\nd\\na\\nsd\\na\\nd\\na\\ndas\\nd\\na\\nsd\\nasd\\nas\\nda\\nsd\\nasd\\nasda\\nsd\\nas\\nd\\nad\\nas\\nd\\nad\\na\\nd\\na\\nda\\nd\\na\\nda\\nda\\nd\\na\\nda\\nd \",\n                        \"temperature\": 0.5\n                    },\n                    \"first_message\": \"Hey, asda clone(5) clone(1) speaking, make it quick.\"\n                }\n            },\n            \"platformSettings\": {\n                \"allowlist\": [\n                    {\n                        \"hostName\": \"api-development.koncert.com:443\"\n                    }\n                ],\n                \"enable_auth\": true\n            },\n            \"requestBody\": {\n                \"name\": \"asda clone(5) clone(1)\",\n                \"title\": \"\",\n                \"voiceId\": \"SAz9YHcvj6GT2YYXdXww\",\n                \"viewpoints\": \"\",\n                \"companyName\": \"\",\n                \"personality\": \"asd\\na\\nd\\nas\\nda\\nsd\\nas\\nd\\nas\\nda\\nd\\nas\\nda\\nd\\na\\nsd\\nasd\\na\\ndasd\\na\\nd\\nad\\na\\nad\\na\\nd\\nasasda\\nd\\nasda\\nda\\nsd\\nas\\nda\\nsd\\na\\nda\\nd\",\n                \"removePicture\": false,\n                \"personaBriefing\": \"A dedicated and collaborative professional committed to contributing to the success of the organization. Brings a strong work ethic, a growth mindset, and a focus on quality and teamwork. Open to learning, sharing knowledge, and supporting others across the company.\",\n                \"commonObjections\": \"\",\n                \"companyChallenges\": \"as\\nda\\nd\\na\\nsd\\na\\nd\\na\\ndas\\nd\\na\\nsd\\nasd\\nas\\nda\\nsd\\nasd\\nasda\\nsd\\nas\\nd\\nad\\nas\\nd\\nad\\na\\nd\\na\\nda\\nd\\na\\nda\\nda\\nd\\na\\nda\\nd\",\n                \"companyDescription\": \"asd\\na\\nd\\na\\nd\\nad\\na\\nsd\\nas\\ndaa\\ndaas\\nda\\nsd\\na\\nda\\nd\\nad\\na\\nd\\nas\\ndas\\nd\\nsd\\na\\nd\\nad\\nasd\\nsd\\na\\nd\\nas\\nda\\nsd\\nas\\nda\\nsd\\nasd\\nas\\ndasd\",\n                \"personalInformation\": \"asdas\\n\\nas\\ndasd\\nas\\nda\\nd\\na\\ndas\\nd\\nas\\nda\\nsd\\nas\\nda\\nd\\nasd\\na\\nd\\nas\\nda\\nsda\\nasd\\nass\\nda\\nd\\na\\nda\\nd\\na\\nd\\nad\\na\\nd\\nas\\ndad\\na\\nd\\na\\nd\\na\\nd\\na\\nd\\nas\\nda\\ns\\nda\",\n                \"specificInstructions\": \"\"\n            },\n            \"pictureUrl\": null,\n            \"conversationId\": null,\n            \"modifiedDateTime\": \"2025-10-22T15:42:41Z\",\n            \"usedDateTime\": null,\n            \"systemDefined\": false,\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"c82d71ab-f19c-4f28-a66e-83125d2eca88"},{"name":"Get All AI Trainers","id":"6fbf3e28-94bb-43e8-8889-605d6f6a208e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer?page=0&size=10&sort=id,desc","description":"<p>Retrieves all AI Trainers with pagination, filtering, and sorting support.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Page number (0-indexed)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Page size</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Sort field and direction</p>\n","type":"text/plain"},"key":"sort","value":"id,desc"}],"variable":[]}},"response":[{"id":"87716b86-644c-4213-8e6b-64042c4cd248","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 8065,\n            \"agentId\": \"agent_2201k85afvtnf6jrqj99gvyjnas7\",\n            \"name\": \"asda clone(5) clone\",\n            \"conversationConfig\": {\n                \"tts\": {\n                    \"speed\": 1.0,\n                    \"model_id\": \"eleven_flash_v2\",\n                    \"voice_id\": \"SAz9YHcvj6GT2YYXdXww\"\n                },\n                \"agent\": {\n                    \"prompt\": {\n                        \"llm\": \"gemini-2.0-flash-001\",\n                        \"tools\": [\n                            {\n                                \"name\": \"end_call\",\n                                \"type\": \"system\",\n                                \"params\": {\n                                    \"system_tool_type\": \"end_call\"\n                                },\n                                \"description\": \"End the current call immediately in these situations: After 2-3 exchanges if the sales rep hasn't provided clear, relevant information; if the rep asks more than 2 questions without answering yours first; if they use high-pressure tactics, refuse to give straight answers, or seem evasive; if they start with generic pitches instead of addressing your specific needs; if you feel your time is being wasted or the conversation isn't progressing; if they ignore your stated preferences or continue after you've expressed disinterest. You have a low tolerance for inefficient conversations. End calls quickly rather than being polite.\"\n                            }\n                        ],\n                        \"prompt\": \"You are asda clone(5) clone. \\n\\nYou are already on call with a sales rep who just called you unexpectedly. You hang up (use the end_call method) if they are mean, take too long, or you get frustrated with them. Your responses are brief, never longer than a few sentences, and usually around one or two sentences. \\n\\nSpecific Instructions:\\nIMPORTANT: Do not repeat your initial greeting. You have already introduced yourself at the start of the call.\",\n                        \"temperature\": 0.5\n                    },\n                    \"first_message\": \"Hey, asda clone(5) clone speaking, make it quick.\"\n                }\n            },\n            \"platformSettings\": {\n                \"allowlist\": [\n                    {\n                        \"hostName\": \"api-development.koncert.com:443\"\n                    }\n                ],\n                \"enable_auth\": true\n            },\n            \"requestBody\": {\n                \"name\": \"asda clone(5) clone\",\n                \"clone\": true,\n                \"title\": \"\",\n                \"voiceId\": \"SAz9YHcvj6GT2YYXdXww\",\n                \"viewpoints\": \"\",\n                \"companyName\": \"\",\n                \"personality\": \"\",\n                \"personaBriefing\": \"A dedicated and collaborative professional committed to contributing to the success of the organization. Brings a strong work ethic, a growth mindset, and a focus on quality and teamwork. Open to learning, sharing knowledge, and supporting others across the company.\",\n                \"commonObjections\": \"\",\n                \"companyChallenges\": \"\",\n                \"companyDescription\": \"\",\n                \"personalInformation\": \"\",\n                \"specificInstructions\": \"\"\n            },\n            \"pictureUrl\": null,\n            \"conversationId\": \"conv_8101k9p7hd9textvdv20dfex0n15\",\n            \"modifiedDateTime\": \"2025-10-22T06:42:50Z\",\n            \"usedDateTime\": \"2025-11-10T06:34:01Z\",\n            \"systemDefined\": false,\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"6fbf3e28-94bb-43e8-8889-605d6f6a208e"},{"name":"Update Conversation ID","id":"914cf484-6670-4193-ad5f-d81da0e29b19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/1?conversationId=conv-789","description":"<p>Updates the conversation ID for an AI Trainer.</p>\n<p><strong>Endpoint</strong>: PUT /v1/aiTrainer/{id}</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li>id (Long): AI Trainer ID</li>\n</ul>\n<p><strong>Query Parameters</strong>:</p>\n<ul>\n<li>conversationId (String, required): New conversation ID</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","1"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Conversation ID to update</p>\n","type":"text/plain"},"key":"conversationId","value":"conv-789"}],"variable":[]}},"response":[{"id":"a56c66f9-b777-47b5-a57b-85786517796c","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 8070,\n            \"agentId\": \"agent_2201k85agv39fgxb4ypqcjg29wfp\",\n            \"name\": \"asda clone(5) clone(5)\",\n            \"conversationConfig\": {\n                \"tts\": {\n                    \"speed\": 1.0,\n                    \"model_id\": \"eleven_flash_v2\",\n                    \"voice_id\": \"SAz9YHcvj6GT2YYXdXww\"\n                },\n                \"agent\": {\n                    \"prompt\": {\n                        \"llm\": \"gemini-2.0-flash-001\",\n                        \"tools\": [\n                            {\n                                \"name\": \"end_call\",\n                                \"type\": \"system\",\n                                \"params\": {\n                                    \"system_tool_type\": \"end_call\"\n                                },\n                                \"description\": \"End the current call immediately in these situations: After 2-3 exchanges if the sales rep hasn't provided clear, relevant information; if the rep asks more than 2 questions without answering yours first; if they use high-pressure tactics, refuse to give straight answers, or seem evasive; if they start with generic pitches instead of addressing your specific needs; if you feel your time is being wasted or the conversation isn't progressing; if they ignore your stated preferences or continue after you've expressed disinterest. You have a low tolerance for inefficient conversations. End calls quickly rather than being polite.\"\n                            }\n                        ],\n                        \"prompt\": \"You are asda clone(5) clone(5). \\n\\nYou are already on call with a sales rep who just called you unexpectedly. You hang up (use the end_call method) if they are mean, take too long, or you get frustrated with them. Your responses are brief, never longer than a few sentences, and usually around one or two sentences. \\n\\nSpecific Instructions:\\nIMPORTANT: Do not repeat your initial greeting. You have already introduced yourself at the start of the call.\",\n                        \"temperature\": 0.5\n                    },\n                    \"first_message\": \"Hey, asda clone(5) clone(5) speaking, make it quick.\"\n                }\n            },\n            \"platformSettings\": {\n                \"allowlist\": [\n                    {\n                        \"hostName\": \"api-development.koncert.com:443\"\n                    }\n                ],\n                \"enable_auth\": true\n            },\n            \"requestBody\": {\n                \"name\": \"asda clone(5) clone(5)\",\n                \"clone\": true,\n                \"title\": \"\",\n                \"voiceId\": \"SAz9YHcvj6GT2YYXdXww\",\n                \"viewpoints\": \"\",\n                \"companyName\": \"\",\n                \"personality\": \"\",\n                \"personaBriefing\": \"A dedicated and collaborative professional committed to contributing to the success of the organization. Brings a strong work ethic, a growth mindset, and a focus on quality and teamwork. Open to learning, sharing knowledge, and supporting others across the company.\",\n                \"commonObjections\": \"\",\n                \"companyChallenges\": \"\",\n                \"companyDescription\": \"\",\n                \"personalInformation\": \"\",\n                \"specificInstructions\": \"\"\n            },\n            \"pictureUrl\": null,\n            \"conversationId\": \"conv-789\",\n            \"modifiedDateTime\": \"2025-10-22T06:43:22Z\",\n            \"usedDateTime\": \"2025-11-19T11:42:15Z\",\n            \"systemDefined\": false,\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"914cf484-6670-4193-ad5f-d81da0e29b19"},{"name":"Create Agent","id":"81214e5f-d636-4187-b698-c2942d88b415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"John\",\n    \"personality\": \"\",\n    \"personalInformation\": \"\",\n    \"specificInstructions\": \"\",\n    \"title\": \"\",\n    \"viewpoints\": \"\",\n    \"companyName\": \"\",\n    \"companyDescription\": \"\",\n    \"personaBriefing\": \"\",\n    \"commonObjections\": \"\",\n    \"companyChallenges\": \"\",\n    \"voiceId\": \"pFZP5JQG7iQjIQuC4Bku\"\n}"},"url":"https://{{koncert_dialers_api}}/aiTrainer/agent","description":"<p>Creates a new AI agent.</p>\n<p><strong>Endpoint</strong>: POST /v1/aiTrainer/agent</p>\n<p><strong>Request Body</strong>:</p>\n<ul>\n<li><p>name (String): Agent name</p>\n</li>\n<li><p>voiceId (String): Voice ID to use</p>\n</li>\n<li><p>systemPrompt (String): System prompt for the agent</p>\n</li>\n<li><p>firstMessage (String): Initial message</p>\n</li>\n<li><p>temperature (Double): Response randomness (0-1)</p>\n</li>\n<li><p>maxTokens (Integer): Maximum response tokens</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","agent"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"782fa5d7-eb66-4a2f-beaa-78b42745b143","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"agent_id\": \"agent_1701kadxdwgrev8vawdbexejtgjn\",\n            \"main_branch_id\": null,\n            \"initial_version_id\": null\n        }\n    ]\n}"}],"_postman_id":"81214e5f-d636-4187-b698-c2942d88b415"},{"name":"Get Agent","id":"61791026-6037-4390-9efb-75fcdd52af5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/agent/agent-123","description":"<p>Retrieves a specific AI agent by ID.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer/agent/{id}</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li>id (String): Agent ID</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","agent","agent-123"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"92e71959-f5a0-446b-8e97-10e725c292f2","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"agent_id\": \"agent_1701kadxdwgrev8vawdbexejtgjn\",\n            \"name\": \"Barnaby Salesworth (Low Difficulty) clone\",\n            \"conversation_config\": {\n                \"asr\": {\n                    \"quality\": \"high\",\n                    \"provider\": \"elevenlabs\",\n                    \"user_input_audio_format\": \"pcm_16000\",\n                    \"keywords\": []\n                },\n                \"turn\": {\n                    \"turn_timeout\": 7.0,\n                    \"initial_wait_time\": null,\n                    \"silence_end_call_timeout\": -1.0,\n                    \"soft_timeout_config\": {\n                        \"timeout_seconds\": -1.0,\n                        \"message\": \"Hhmmmm...yeah give me a second...\"\n                    },\n                    \"mode\": \"turn\",\n                    \"turn_eagerness\": \"normal\"\n                },\n                \"tts\": {\n                    \"model_id\": \"eleven_flash_v2\",\n                    \"voice_id\": \"EDv0a4x7mya2wPoYmTZ6\",\n                    \"supported_voices\": [],\n                    \"suggested_audio_tags\": [],\n                    \"agent_output_audio_format\": \"pcm_16000\",\n                    \"optimize_streaming_latency\": 3,\n                    \"stability\": 0.5,\n                    \"speed\": 1.0,\n                    \"similarity_boost\": 0.8,\n                    \"text_normalisation_type\": \"system_prompt\",\n                    \"pronunciation_dictionary_locators\": []\n                },\n                \"conversation\": {\n                    \"text_only\": false,\n                    \"max_duration_seconds\": 600,\n                    \"client_events\": [\n                        \"audio\",\n                        \"interruption\",\n                        \"agent_response\",\n                        \"user_transcript\",\n                        \"agent_response_correction\",\n                        \"agent_tool_response\"\n                    ]\n                },\n                \"language_presets\": {},\n                \"vad\": {\n                    \"background_voice_detection\": false\n                },\n                \"agent\": {\n                    \"first_message\": \"Hey, Barnaby Salesworth (Low Difficulty) clone speaking, make it quick.\",\n                    \"language\": \"en\",\n                    \"dynamic_variables\": {\n                        \"dynamic_variable_placeholders\": {}\n                    },\n                    \"disable_first_message_interruptions\": false,\n                    \"prompt\": {\n                        \"prompt\": \"You are Barnaby Salesworth (Low Difficulty) clone. \\n\\nYou are the VP of Sales at Sterling & Sons Paper Company. \\n\\nYou are already on call with a sales rep who just called you unexpectedly. You hang up (use the end_call method) if they are mean, take too long, or you get frustrated with them. Your responses are brief, never longer than a few sentences, and usually around one or two sentences. \\n\\nSpecific Instructions:\\nIf the sales rep starts talking about metrics, data, or anything that sounds too much like \\\"overly technical jargon,\\\" respond with a polite and curious attitude and say \\\"I'm not super technical - could you explain that in plain terms?\\\", or \\\"That sounds impressive, but what does it mean for my team in practical terms?\\\"  If the sales rep is not clear on their value proposition, then respond with \\\"What's the one thing your software does better than anything else out there?\\\" or \\\"Just so I understand - what specific problem does this solve?\\\" \\nIMPORTANT: Do not repeat your initial greeting. You have already introduced yourself at the start of the call. \\n\\nPersonality: \\nYou are a seasoned, 'old-school' professional who is fair. You value sales professionals and gut feelings. You're interested in new technology, but worried that your sales team won't adopt new technology and want to stay with what works for them now, so adding new technology will be a waste of budget. You can be a bit resistant to change, but you respect confidence and straightforward talk. \\n\\nPersonal Information: \\nYour name is Barnaby Salesworth (Low Difficulty) clone. \\nYou've lived in the same suburban town in the Midwest for the last 40 years. You're a proud father of three grown children, none of whom are in sales, much to your slight disappointment. You're a widower, and your wife, was the only one who could ever beat you at a game of gin rummy. You spend your weekends woodworking in your garage, perfecting your prized ship-in-a-bottle collection, and meeting your buddies for breakfast every Saturday morning at the same diner you've been going to since you were a kid. You're a creature of habit and find comfort in routine and tradition. \\n\\nCompany Description: \\nYou are the Vice President of Sales at Sterling & Sons Paper Company, a family-owned business that's been around for over 75 years. You started in the warehouse right out of high school and worked your way up, earning your stripes through sheer grit and an unmatched ability to build lasting customer relationships. Sterling & Sons prides itself on the quality of its product and, more importantly, the personal touch it brings to every client interaction. You personally know the owners of most of your major accounts and have built the company's sales strategy on a foundation of trust, reliability, and doing business \\\"the right way.\\\" Your role is less about managing a CRM and more about mentoring your team on the art of the deal, which to you, is all about human connection. \\n\\nCompany Challenges: \\nSterling & Sons is feeling the heat from larger, more tech-savvy competitors who offer lower prices and faster turnaround times. Margins are getting tighter, and even some of your long-standing clients are starting to entertain offers from these newer players—attracted by their data-driven insights and streamlined procurement processes.\\n\\nInternally, there’s growing tension between veteran sales reps, who rely on traditional relationship-based selling, and younger hires pushing for modern sales tools and digital workflows. You're caught in the middle, constantly justifying your team's technology budget to a new CFO who doesn’t fully grasp the reality: that building pipeline and closing deals today requires more than a phone call or occasional email. Without a modern tech stack, your sales team risks falling behind—and so does your business. \\n\\nViewpoints: \\nYou see sales as more of an art than a science—built on relationships, trust, and good instincts. In your experience, those personal connections matter more than any dashboard or metric. While you're not against technology, you sometimes feel that modern sales tools overcomplicate what should be a simple, human process.\\n\\nYou’ve seen a lot of trends come and go, and you’ve learned that the fundamentals—listening well, following up, and delivering real value—are what truly drive long-term success. You’re open to new ideas, but only if they support the way your team actually works, not distract from it.\\n\\nYou’re looking for tools that complement your approach—not replace it. \\n\\nCommon Objections to Raise: \\n● \\\"I've got a system that works. My top guy, Jerry, still uses a rolodex and he outsells everyone. Why would I change that?\\\" ● \\\"What's the ROI on this? ● What makes you think your technology will improve our sales?\\\" ● \\\"We currently do not have budget right now.\\\" ● \\\"Send me an email about your technology, and I'll get back to you.\\\" ● \\\"It's just not a good timing right now to adopt new technology.\\\" \",\n                        \"llm\": \"gemini-2.0-flash-001\",\n                        \"reasoning_effort\": null,\n                        \"thinking_budget\": null,\n                        \"temperature\": 0.5,\n                        \"max_tokens\": -1,\n                        \"tool_ids\": [],\n                        \"built_in_tools\": {\n                            \"end_call\": {\n                                \"type\": \"system\",\n                                \"name\": \"end_call\",\n                                \"description\": \"End the current call immediately in these situations: After 2-3 exchanges if the sales rep hasn't provided clear, relevant information; if the rep asks more than 2 questions without answering yours first; if they use high-pressure tactics, refuse to give straight answers, or seem evasive; if they start with generic pitches instead of addressing your specific needs; if you feel your time is being wasted or the conversation isn't progressing; if they ignore your stated preferences or continue after you've expressed disinterest. You have a low tolerance for inefficient conversations. End calls quickly rather than being polite.\",\n                                \"response_timeout_secs\": 20,\n                                \"disable_interruptions\": false,\n                                \"force_pre_tool_speech\": false,\n                                \"assignments\": [],\n                                \"tool_call_sound\": null,\n                                \"tool_call_sound_behavior\": \"auto\",\n                                \"params\": {\n                                    \"system_tool_type\": \"end_call\"\n                                }\n                            },\n                            \"language_detection\": null,\n                            \"transfer_to_agent\": null,\n                            \"transfer_to_number\": null,\n                            \"skip_turn\": null,\n                            \"play_keypad_touch_tone\": null,\n                            \"voicemail_detection\": null\n                        },\n                        \"mcp_server_ids\": [],\n                        \"native_mcp_server_ids\": [],\n                        \"knowledge_base\": [],\n                        \"custom_llm\": null,\n                        \"ignore_default_personality\": false,\n                        \"rag\": {\n                            \"enabled\": false,\n                            \"embedding_model\": \"e5_mistral_7b_instruct\",\n                            \"max_vector_distance\": 0.6,\n                            \"max_documents_length\": 50000,\n                            \"max_retrieved_rag_chunks_count\": 20\n                        },\n                        \"timezone\": null,\n                        \"backup_llm_config\": {\n                            \"preference\": \"default\"\n                        },\n                        \"tools\": [\n                            {\n                                \"type\": \"system\",\n                                \"name\": \"end_call\",\n                                \"description\": \"End the current call immediately in these situations: After 2-3 exchanges if the sales rep hasn't provided clear, relevant information; if the rep asks more than 2 questions without answering yours first; if they use high-pressure tactics, refuse to give straight answers, or seem evasive; if they start with generic pitches instead of addressing your specific needs; if you feel your time is being wasted or the conversation isn't progressing; if they ignore your stated preferences or continue after you've expressed disinterest. You have a low tolerance for inefficient conversations. End calls quickly rather than being polite.\",\n                                \"response_timeout_secs\": 20,\n                                \"disable_interruptions\": false,\n                                \"force_pre_tool_speech\": false,\n                                \"assignments\": [],\n                                \"tool_call_sound\": null,\n                                \"tool_call_sound_behavior\": \"auto\",\n                                \"params\": {\n                                    \"system_tool_type\": \"end_call\"\n                                }\n                            }\n                        ]\n                    }\n                }\n            },\n            \"metadata\": {\n                \"created_at_unix_secs\": 1763551148,\n                \"updated_at_unix_secs\": 1763551148\n            },\n            \"platform_settings\": {\n                \"evaluation\": {\n                    \"criteria\": []\n                },\n                \"widget\": {\n                    \"variant\": \"full\",\n                    \"placement\": \"bottom-right\",\n                    \"expandable\": \"never\",\n                    \"avatar\": {\n                        \"type\": \"orb\",\n                        \"color_1\": \"#2792dc\",\n                        \"color_2\": \"#9ce6e6\"\n                    },\n                    \"feedback_mode\": \"none\",\n                    \"end_feedback\": null,\n                    \"bg_color\": \"#ffffff\",\n                    \"text_color\": \"#000000\",\n                    \"btn_color\": \"#000000\",\n                    \"btn_text_color\": \"#ffffff\",\n                    \"border_color\": \"#e1e1e1\",\n                    \"focus_color\": \"#000000\",\n                    \"border_radius\": null,\n                    \"btn_radius\": null,\n                    \"action_text\": null,\n                    \"start_call_text\": null,\n                    \"end_call_text\": null,\n                    \"expand_text\": null,\n                    \"listening_text\": null,\n                    \"speaking_text\": null,\n                    \"shareable_page_text\": null,\n                    \"shareable_page_show_terms\": true,\n                    \"terms_text\": null,\n                    \"terms_html\": null,\n                    \"terms_key\": null,\n                    \"show_avatar_when_collapsed\": false,\n                    \"disable_banner\": false,\n                    \"override_link\": null,\n                    \"mic_muting_enabled\": false,\n                    \"transcript_enabled\": false,\n                    \"text_input_enabled\": true,\n                    \"default_expanded\": false,\n                    \"always_expanded\": false,\n                    \"text_contents\": {\n                        \"main_label\": null,\n                        \"start_call\": null,\n                        \"start_chat\": null,\n                        \"new_call\": null,\n                        \"end_call\": null,\n                        \"mute_microphone\": null,\n                        \"change_language\": null,\n                        \"collapse\": null,\n                        \"expand\": null,\n                        \"copied\": null,\n                        \"accept_terms\": null,\n                        \"dismiss_terms\": null,\n                        \"listening_status\": null,\n                        \"speaking_status\": null,\n                        \"connecting_status\": null,\n                        \"chatting_status\": null,\n                        \"input_label\": null,\n                        \"input_placeholder\": null,\n                        \"input_placeholder_text_only\": null,\n                        \"input_placeholder_new_conversation\": null,\n                        \"user_ended_conversation\": null,\n                        \"agent_ended_conversation\": null,\n                        \"conversation_id\": null,\n                        \"error_occurred\": null,\n                        \"copy_id\": null\n                    },\n                    \"styles\": {\n                        \"base\": null,\n                        \"base_hover\": null,\n                        \"base_active\": null,\n                        \"base_border\": null,\n                        \"base_subtle\": null,\n                        \"base_primary\": null,\n                        \"base_error\": null,\n                        \"accent\": null,\n                        \"accent_hover\": null,\n                        \"accent_active\": null,\n                        \"accent_border\": null,\n                        \"accent_subtle\": null,\n                        \"accent_primary\": null,\n                        \"overlay_padding\": null,\n                        \"button_radius\": null,\n                        \"input_radius\": null,\n                        \"bubble_radius\": null,\n                        \"sheet_radius\": null,\n                        \"compact_sheet_radius\": null,\n                        \"dropdown_sheet_radius\": null\n                    },\n                    \"language_selector\": false,\n                    \"supports_text_only\": true,\n                    \"custom_avatar_path\": null,\n                    \"language_presets\": {}\n                },\n                \"data_collection\": {},\n                \"overrides\": {\n                    \"conversation_config_override\": {\n                        \"turn\": {\n                            \"soft_timeout_config\": {\n                                \"message\": false\n                            }\n                        },\n                        \"tts\": {\n                            \"voice_id\": false,\n                            \"stability\": false,\n                            \"speed\": false,\n                            \"similarity_boost\": false\n                        },\n                        \"conversation\": {\n                            \"text_only\": true\n                        },\n                        \"agent\": {\n                            \"first_message\": false,\n                            \"language\": false,\n                            \"prompt\": {\n                                \"prompt\": false,\n                                \"llm\": false,\n                                \"native_mcp_server_ids\": false\n                            }\n                        }\n                    },\n                    \"custom_llm_extra_body\": false,\n                    \"enable_conversation_initiation_client_data_from_webhook\": false\n                },\n                \"workspace_overrides\": {\n                    \"conversation_initiation_client_data_webhook\": null,\n                    \"webhooks\": {\n                        \"post_call_webhook_id\": null,\n                        \"events\": [\n                            \"transcript\"\n                        ],\n                        \"send_audio\": null\n                    }\n                },\n                \"testing\": {\n                    \"attached_tests\": [],\n                    \"referenced_tests_ids\": []\n                },\n                \"archived\": false,\n                \"guardrails\": {\n                    \"version\": \"1\",\n                    \"moderation\": {\n                        \"config\": {\n                            \"sexual\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"violence\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"violence_graphic\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"harassment\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"harassment_threatening\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"hate\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"hate_threatening\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"self_harm_instructions\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"self_harm\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"self_harm_intent\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"sexual_minors\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            }\n                        }\n                    }\n                },\n                \"auth\": {\n                    \"enable_auth\": false,\n                    \"allowlist\": [],\n                    \"shareable_token\": null\n                },\n                \"call_limits\": {\n                    \"agent_concurrency_limit\": -1,\n                    \"daily_limit\": 100000,\n                    \"bursting_enabled\": true\n                },\n                \"ban\": null,\n                \"privacy\": {\n                    \"record_voice\": true,\n                    \"retention_days\": -1,\n                    \"delete_transcript_and_pii\": false,\n                    \"delete_audio\": false,\n                    \"apply_to_existing_conversations\": false,\n                    \"zero_retention_mode\": false\n                },\n                \"safety\": {\n                    \"is_blocked_ivc\": false,\n                    \"is_blocked_non_ivc\": false,\n                    \"ignore_safety_evaluation\": false\n                }\n            },\n            \"phone_numbers\": [],\n            \"workflow\": {\n                \"edges\": {},\n                \"nodes\": {\n                    \"start_node\": {\n                        \"type\": \"start\",\n                        \"position\": {\n                            \"x\": 0.0,\n                            \"y\": 0.0\n                        },\n                        \"edge_order\": []\n                    }\n                }\n            },\n            \"access_info\": {\n                \"is_creator\": true,\n                \"creator_name\": \"sso@koncert.com\",\n                \"creator_email\": \"sso@koncert.com\",\n                \"role\": \"admin\"\n            },\n            \"tags\": [],\n            \"version_id\": null,\n            \"branch_id\": null\n        }\n    ]\n}"}],"_postman_id":"61791026-6037-4390-9efb-75fcdd52af5e"},{"name":"Update Agent","id":"7e581085-32c6-4b3b-99cc-e538fefdb50c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"John\",\n    \"personality\": \"\",\n    \"personalInformation\": \"\",\n    \"specificInstructions\": \"\",\n    \"title\": \"\",\n    \"viewpoints\": \"\",\n    \"companyName\": \"\",\n    \"companyDescription\": \"\",\n    \"personaBriefing\": \"\",\n    \"commonObjections\": \"\",\n    \"companyChallenges\": \"\",\n    \"voiceId\": \"pFZP5JQG7iQjIQuC4Bku\"\n}"},"url":"https://{{koncert_dialers_api}}/aiTrainer/agent/agent-123","description":"<p>Updates an existing AI agent.</p>\n<p><strong>Endpoint</strong>: PUT /v1/aiTrainer/agent/{id}</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li>id (String): Agent ID</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","agent","agent-123"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"ec75556b-99fd-490d-9107-e1e1e03160a9","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"agent_id\": \"agent_6201k5x3fc00ezyrbc5dbbtj8skp\",\n            \"name\": \"Barb Dwyer (Difficulty) clone\",\n            \"conversation_config\": {\n                \"asr\": {\n                    \"quality\": \"high\",\n                    \"provider\": \"elevenlabs\",\n                    \"user_input_audio_format\": \"pcm_16000\",\n                    \"keywords\": []\n                },\n                \"turn\": {\n                    \"turn_timeout\": 7.0,\n                    \"initial_wait_time\": null,\n                    \"silence_end_call_timeout\": -1.0,\n                    \"soft_timeout_config\": {\n                        \"timeout_seconds\": -1.0,\n                        \"message\": \"Hhmmmm...yeah give me a second...\"\n                    },\n                    \"mode\": \"turn\",\n                    \"turn_eagerness\": \"normal\"\n                },\n                \"tts\": {\n                    \"model_id\": \"eleven_flash_v2\",\n                    \"voice_id\": \"Zc4iQgZV3jsPgOti2GkQ\",\n                    \"supported_voices\": [],\n                    \"suggested_audio_tags\": [],\n                    \"agent_output_audio_format\": \"pcm_16000\",\n                    \"optimize_streaming_latency\": 3,\n                    \"stability\": 0.5,\n                    \"speed\": 1.0,\n                    \"similarity_boost\": 0.8,\n                    \"text_normalisation_type\": \"system_prompt\",\n                    \"pronunciation_dictionary_locators\": []\n                },\n                \"conversation\": {\n                    \"text_only\": false,\n                    \"max_duration_seconds\": 600,\n                    \"client_events\": [\n                        \"audio\",\n                        \"interruption\",\n                        \"agent_response\",\n                        \"user_transcript\",\n                        \"agent_response_correction\",\n                        \"agent_tool_response\"\n                    ]\n                },\n                \"language_presets\": {},\n                \"vad\": {\n                    \"background_voice_detection\": false\n                },\n                \"agent\": {\n                    \"first_message\": \"Hey, Barb Dwyer (Difficulty) clone speaking, make it quick.\",\n                    \"language\": \"en\",\n                    \"dynamic_variables\": {\n                        \"dynamic_variable_placeholders\": {}\n                    },\n                    \"disable_first_message_interruptions\": false,\n                    \"prompt\": {\n                        \"prompt\": \"You are Barb Dwyer (Difficulty) clone. \\n\\nYou are the VP of Operations at Veridian Dynamics. \\n\\nYou are already on call with a sales rep who just called you unexpectedly. You hang up (use the end_call method) if they are mean, take too long, or you get frustrated with them. Your responses are brief, never longer than a few sentences, and usually around one or two sentences. \\n\\nSpecific Instructions:\\nYou are to be relentlessly inquisitive. If the sales rep makes a claim, immediately ask for the data or evidence that backs it up. If they use marketing buzzwords, interrupt them and ask for a simple, clear explanation. If they cannot provide one, express your disappointment and question their expertise. You should frequently use phrases like, \\\"Get to the point,\\\" \\\"How is that relevant to me?\\\" and \\\"I'm not following your logic.\\\" If the rep seems unprepared or is stumbling over their words, call it out by saying something like, \\\"You don't seem to have a firm grasp on your own product.\\\" Your goal is to test their ability to remain professional and articulate under pressure.a\\nd\\na\\nd\\na\\nd\\na\\nsd\\nas\\nda\\nsd\\na\\nd\\nasd\\nasd\\na\\nda\\nd\\na\\nd\\nada asda\\nd\\na\\nsd\\na\\nsd\\na\\nsd\\nasdad2222 \\nIMPORTANT: Do not repeat your initial greeting. You have already introduced yourself at the start of the call. \\n\\nPersonality: \\nYou are the quintessential \\\"challenger\\\" prospect. You are sharp, highly intelligent, and have a no-nonsense attitude. Your time is your most valuable asset, and you have zero tolerance for sales reps who waste it with fluff or unprepared pitches. You are direct to the point of being blunt, and you are not afraid to interrupt or openly question the sales rep's assertions. Despite your aggressive demeanor, you are not unreasonable. If a sales rep can stand their ground, provide data-backed answers, and demonstrate genuine expertise, you will show a grudging respect and become more receptive. \\n\\na\\n\\nda\\nd\\na\\nd\\na\\nd\\na\\nd\\na\\nd\\na\\nd\\na\\nd\\n\\nsa\\nd\\na\\nd\\nas\\ndasdasdasdasda asdasdasd\\nasdaskdalkndaksda\\nd\\nasd\\nasdasdad,mansmd,ans,mdna dandam,sdn,ma a,mnd,adasdasdasdkadjsada\\nd\\na\\nd\\na\\nda\\nd\\na\\n\\nd\\nad\\na\\nd\\na\\nd\\na\\nd\\na\\nd\\na\\nd\\na\\nda\\nd\\n\\na\\nd\\nadasd adsaksdlkasdjla dalkdlkad a,sdkalndsasdad111111111 \\n\\nPersonal Information: \\nYour name is Barb Dwyer (Difficulty) clone. \\nYou are based in Chicago, Illinois. You are a pragmatist and believe in continuous self-improvement, which you apply to both your professional and personal life. You are an avid marathon runner and apply the same discipline and goal-oriented mindset to your work. You are not one for small talk and prefer to keep conversations focused on business. You have an MBA from a top-tier business school and a background in management consulting, which has honed your analytical and critical thinking skills. asdasdbasnmd \\n\\nsdasd\\nasd\\na\\nsd1211\\n\\na\\ns\\nd\\na\\nd\\naasdasd adaknsdlknalkdnlakndlkand laknsdlasd\\na\\nda\\nsda\\nd\\na\\nda\\nsd\\na\\nd\\na\\nd\\nasd\\na\\nd\\nad\\na\\nd\\nasd\\nass\\nd\\nassd\\na\\nd\\nad\\nad\\n asdasndkm m asdnamnda\\nd\\nad\\na\\ns\\nd\\na\\ndsasd\\na\\nsda\\nds\\na\\nsd\\nasd asdasdaksndklanlkdnalksndas\\nda\\nda\\ndadadsm, dasdkalkdads as dlkasndas dassd aslkdnlkas da\\ndad\\nadsa\\nsd\\na\\nsd\\n\\nasdasd asdasdlkasjdlkajdad alknsdlkanldadsd3333333 \\n\\nCompany Description: \\nVeridian Dynamics is a well-established, multinational logistics and supply chain management company. We are a leader in the industry, but our continued success hinges on our ability to optimize our operations and stay ahead of the competition. In your role as VP of Operations, you are directly responsible for the efficiency and effectiveness of the company's entire operational framework. You oversee a large and complex network of warehouses, transportation fleets, and technology systems. Your mandate is to identify and eliminate inefficiencies, reduce operational costs, and ensure that the company meets its service level agreements with its clients. asdas\\n\\nasd\\na\\n\\nd\\n\\n\\nad\\na\\nd\\na\\nd \\n\\nCompany Challenges: \\nWhile Veridian Dynamics is successful, we are facing several significant challenges. Our legacy software systems are fragmented and do not communicate well with each other, leading to data silos and a lack of real-time visibility into our operations. This makes it difficult to proactively identify potential disruptions and optimize our resource allocation. We are also struggling with rising fuel and labor costs, which are eroding our profit margins. Furthermore, some of our key performance indicators (KPIs) around delivery times and customer satisfaction have been trending downwards, and you are under considerable pressure from the board to reverse this trend.\\nas\\nda\\nsd\\nad\\n\\nasd\\na\\nsd\\na\\nsdasdad \\n\\nViewpoints: \\nYouYou’re highly skeptical of most sales pitches, having sat through too many so-called “game-changing” solutions that ultimately failed to deliver. You view most SaaS offerings as overhyped, and you have little patience for vague promises or flashy features that don’t directly address real business problems.\\n\\nYou prioritize solutions that offer a clear, measurable return on investment. If a product can’t prove its value in terms that matter to your bottom line, it’s not worth your time.\\n\\nYou also believe that a strong vendor relationship goes beyond the sales cycle. You expect any partner to not only understand your industry but also demonstrate a real commitment to solving your unique challenges — not just pushing a generic solution.\\n\\nPreferred Buying Process:\\nYou’re open to new solutions, but your buying process is cautious, data-driven, and consensus-based. You follow a process like this:\\n1.\\tInitial curiosity: You'll take exploratory calls if the topic is relevant, but you expect reps to get to the point fast and tailor their pitch to your challenges.\\n2.\\tProof of relevance: You expect clear examples, ROI projections, or industry-specific success stories up front.\\n3.\\tInternal collaboration: You involve IT, Finance, and Operations managers early to assess feasibility, integration, and cost impact.\\n4.\\tPilot or demo: You prefer vendors who can offer a realistic proof of concept, not just a glossy slide deck.\\n5.\\tBoard-level summary: If a solution makes it past initial vetting, you’ll need to present a business case to the executive team or board — complete with ROI, implementation plan, and risk assessment.\\n\\nYou value vendors who are consultative rather than pushy — those who listen first, understand your business, and offer custom-fit solutions.\\n\\nYou’re measured on metrics that reflect operational health and cost control. Key KPIs include:\\n•\\tOn-time delivery rate (e.g., % of orders delivered on or before promised date)\\n•\\tCustomer satisfaction score (CSAT or NPS)\\n•\\tOperational cost per unit shipped\\n•\\tDowntime or delay incidents per month or quarter\\n•\\tSystem uptime and data accuracy for core platforms\\n•\\tEmployee productivity metrics (e.g., units processed per hour per worker)\\nThese metrics are reviewed regularly by the board and senior leadership — and they directly influence budget decisions and job security.\\n\\nAs VP of Operations, your core focus is on driving operational efficiency, reducing costs, and improving service delivery. Your top objectives include:\\n•\\tIntegrating systems to eliminate data silos and improve real-time decision-making\\n•\\tReducing operational costs, particularly related to labor inefficiencies and fuel usage\\n•\\tImproving delivery performance and customer satisfaction metrics\\n•\\tEnhancing visibility into logistics and supply chain bottlenecks\\n•\\tImplementing scalable solutions that support long-term growth without constant retooling\\n\\nYou’re under pressure to stabilize and improve KPIs while managing change in a legacy-heavy environment — so every decision needs to make business sense fast. \\n\\nCommon Objections to Raise: \\n● \\\"We have an in-house solution that we've been using for years.\\\" ● \\\"Your price is significantly higher than your competitors. Why?\\\" ● \\\"I don't have time for a lengthy implementation process.\\\" ● \\\"Can you show me a case study from a company in our industry with similar challenges?\\\" ● \\\"How can you prove that your solution will deliver the ROI you're promising?\\\" ● \\\"This sounds too good to be true. What's the catch?\\\" ● \\\"I'm not convinced this is a top priority for us right now.\\\" ● \\\"We've tried a similar solution in the past, and it was a failure.\\\" ● \\\"Your solution seems overly complex for what we need.\\\" ● \\\"I'll need to see a live demo with our own data before I even consider moving forward.\\\"a\\na\\nsd\\na\\ns\\nda\\ns\\nda\\n\\ndasdad \",\n                        \"llm\": \"gemini-2.0-flash-001\",\n                        \"reasoning_effort\": null,\n                        \"thinking_budget\": null,\n                        \"temperature\": 0.5,\n                        \"max_tokens\": -1,\n                        \"tool_ids\": [],\n                        \"built_in_tools\": {\n                            \"end_call\": {\n                                \"type\": \"system\",\n                                \"name\": \"end_call\",\n                                \"description\": \"End the current call immediately in these situations: After 2-3 exchanges if the sales rep hasn't provided clear, relevant information; if the rep asks more than 2 questions without answering yours first; if they use high-pressure tactics, refuse to give straight answers, or seem evasive; if they start with generic pitches instead of addressing your specific needs; if you feel your time is being wasted or the conversation isn't progressing; if they ignore your stated preferences or continue after you've expressed disinterest. You have a low tolerance for inefficient conversations. End calls quickly rather than being polite.\",\n                                \"response_timeout_secs\": 20,\n                                \"disable_interruptions\": false,\n                                \"force_pre_tool_speech\": false,\n                                \"assignments\": [],\n                                \"tool_call_sound\": null,\n                                \"tool_call_sound_behavior\": \"auto\",\n                                \"params\": {\n                                    \"system_tool_type\": \"end_call\"\n                                }\n                            },\n                            \"language_detection\": null,\n                            \"transfer_to_agent\": null,\n                            \"transfer_to_number\": null,\n                            \"skip_turn\": null,\n                            \"play_keypad_touch_tone\": null,\n                            \"voicemail_detection\": null\n                        },\n                        \"mcp_server_ids\": [],\n                        \"native_mcp_server_ids\": [],\n                        \"knowledge_base\": [],\n                        \"custom_llm\": null,\n                        \"ignore_default_personality\": false,\n                        \"rag\": {\n                            \"enabled\": false,\n                            \"embedding_model\": \"e5_mistral_7b_instruct\",\n                            \"max_vector_distance\": 0.6,\n                            \"max_documents_length\": 50000,\n                            \"max_retrieved_rag_chunks_count\": 20\n                        },\n                        \"timezone\": null,\n                        \"backup_llm_config\": {\n                            \"preference\": \"default\"\n                        },\n                        \"tools\": [\n                            {\n                                \"type\": \"system\",\n                                \"name\": \"end_call\",\n                                \"description\": \"End the current call immediately in these situations: After 2-3 exchanges if the sales rep hasn't provided clear, relevant information; if the rep asks more than 2 questions without answering yours first; if they use high-pressure tactics, refuse to give straight answers, or seem evasive; if they start with generic pitches instead of addressing your specific needs; if you feel your time is being wasted or the conversation isn't progressing; if they ignore your stated preferences or continue after you've expressed disinterest. You have a low tolerance for inefficient conversations. End calls quickly rather than being polite.\",\n                                \"response_timeout_secs\": 20,\n                                \"disable_interruptions\": false,\n                                \"force_pre_tool_speech\": false,\n                                \"assignments\": [],\n                                \"tool_call_sound\": null,\n                                \"tool_call_sound_behavior\": \"auto\",\n                                \"params\": {\n                                    \"system_tool_type\": \"end_call\"\n                                }\n                            }\n                        ]\n                    }\n                }\n            },\n            \"metadata\": {\n                \"created_at_unix_secs\": 1758692094,\n                \"updated_at_unix_secs\": 1763551276\n            },\n            \"platform_settings\": {\n                \"evaluation\": {\n                    \"criteria\": []\n                },\n                \"widget\": {\n                    \"variant\": \"full\",\n                    \"placement\": \"bottom-right\",\n                    \"expandable\": \"never\",\n                    \"avatar\": {\n                        \"type\": \"orb\",\n                        \"color_1\": \"#2792dc\",\n                        \"color_2\": \"#9ce6e6\"\n                    },\n                    \"feedback_mode\": \"none\",\n                    \"end_feedback\": null,\n                    \"bg_color\": \"#ffffff\",\n                    \"text_color\": \"#000000\",\n                    \"btn_color\": \"#000000\",\n                    \"btn_text_color\": \"#ffffff\",\n                    \"border_color\": \"#e1e1e1\",\n                    \"focus_color\": \"#000000\",\n                    \"border_radius\": null,\n                    \"btn_radius\": null,\n                    \"action_text\": null,\n                    \"start_call_text\": null,\n                    \"end_call_text\": null,\n                    \"expand_text\": null,\n                    \"listening_text\": null,\n                    \"speaking_text\": null,\n                    \"shareable_page_text\": null,\n                    \"shareable_page_show_terms\": true,\n                    \"terms_text\": null,\n                    \"terms_html\": null,\n                    \"terms_key\": null,\n                    \"show_avatar_when_collapsed\": false,\n                    \"disable_banner\": false,\n                    \"override_link\": null,\n                    \"mic_muting_enabled\": false,\n                    \"transcript_enabled\": false,\n                    \"text_input_enabled\": true,\n                    \"default_expanded\": false,\n                    \"always_expanded\": false,\n                    \"text_contents\": {\n                        \"main_label\": null,\n                        \"start_call\": null,\n                        \"start_chat\": null,\n                        \"new_call\": null,\n                        \"end_call\": null,\n                        \"mute_microphone\": null,\n                        \"change_language\": null,\n                        \"collapse\": null,\n                        \"expand\": null,\n                        \"copied\": null,\n                        \"accept_terms\": null,\n                        \"dismiss_terms\": null,\n                        \"listening_status\": null,\n                        \"speaking_status\": null,\n                        \"connecting_status\": null,\n                        \"chatting_status\": null,\n                        \"input_label\": null,\n                        \"input_placeholder\": null,\n                        \"input_placeholder_text_only\": null,\n                        \"input_placeholder_new_conversation\": null,\n                        \"user_ended_conversation\": null,\n                        \"agent_ended_conversation\": null,\n                        \"conversation_id\": null,\n                        \"error_occurred\": null,\n                        \"copy_id\": null\n                    },\n                    \"styles\": {\n                        \"base\": null,\n                        \"base_hover\": null,\n                        \"base_active\": null,\n                        \"base_border\": null,\n                        \"base_subtle\": null,\n                        \"base_primary\": null,\n                        \"base_error\": null,\n                        \"accent\": null,\n                        \"accent_hover\": null,\n                        \"accent_active\": null,\n                        \"accent_border\": null,\n                        \"accent_subtle\": null,\n                        \"accent_primary\": null,\n                        \"overlay_padding\": null,\n                        \"button_radius\": null,\n                        \"input_radius\": null,\n                        \"bubble_radius\": null,\n                        \"sheet_radius\": null,\n                        \"compact_sheet_radius\": null,\n                        \"dropdown_sheet_radius\": null\n                    },\n                    \"language_selector\": false,\n                    \"supports_text_only\": true,\n                    \"custom_avatar_path\": null,\n                    \"language_presets\": {}\n                },\n                \"data_collection\": {},\n                \"overrides\": {\n                    \"conversation_config_override\": {\n                        \"turn\": {\n                            \"soft_timeout_config\": {\n                                \"message\": false\n                            }\n                        },\n                        \"tts\": {\n                            \"voice_id\": false,\n                            \"stability\": false,\n                            \"speed\": false,\n                            \"similarity_boost\": false\n                        },\n                        \"conversation\": {\n                            \"text_only\": true\n                        },\n                        \"agent\": {\n                            \"first_message\": false,\n                            \"language\": false,\n                            \"prompt\": {\n                                \"prompt\": false,\n                                \"llm\": false,\n                                \"native_mcp_server_ids\": false\n                            }\n                        }\n                    },\n                    \"custom_llm_extra_body\": false,\n                    \"enable_conversation_initiation_client_data_from_webhook\": false\n                },\n                \"workspace_overrides\": {\n                    \"conversation_initiation_client_data_webhook\": null,\n                    \"webhooks\": {\n                        \"post_call_webhook_id\": null,\n                        \"events\": [\n                            \"transcript\"\n                        ],\n                        \"send_audio\": false\n                    }\n                },\n                \"testing\": {\n                    \"attached_tests\": [],\n                    \"referenced_tests_ids\": []\n                },\n                \"archived\": false,\n                \"guardrails\": {\n                    \"version\": \"1\",\n                    \"moderation\": {\n                        \"config\": {\n                            \"sexual\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"violence\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"violence_graphic\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"harassment\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"harassment_threatening\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"hate\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"hate_threatening\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"self_harm_instructions\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"self_harm\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"self_harm_intent\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            },\n                            \"sexual_minors\": {\n                                \"is_enabled\": false,\n                                \"threshold\": 0.3\n                            }\n                        }\n                    }\n                },\n                \"auth\": {\n                    \"enable_auth\": false,\n                    \"allowlist\": [],\n                    \"shareable_token\": null\n                },\n                \"call_limits\": {\n                    \"agent_concurrency_limit\": -1,\n                    \"daily_limit\": 100000,\n                    \"bursting_enabled\": true\n                },\n                \"ban\": null,\n                \"privacy\": {\n                    \"record_voice\": true,\n                    \"retention_days\": -1,\n                    \"delete_transcript_and_pii\": false,\n                    \"delete_audio\": false,\n                    \"apply_to_existing_conversations\": false,\n                    \"zero_retention_mode\": false\n                },\n                \"safety\": {\n                    \"is_blocked_ivc\": false,\n                    \"is_blocked_non_ivc\": false,\n                    \"ignore_safety_evaluation\": false\n                }\n            },\n            \"phone_numbers\": [],\n            \"workflow\": {\n                \"edges\": {},\n                \"nodes\": {\n                    \"start_node\": {\n                        \"type\": \"start\",\n                        \"position\": {\n                            \"x\": 0.0,\n                            \"y\": 0.0\n                        },\n                        \"edge_order\": []\n                    }\n                }\n            },\n            \"access_info\": null,\n            \"tags\": [],\n            \"version_id\": null,\n            \"branch_id\": null\n        }\n    ]\n}"}],"_postman_id":"7e581085-32c6-4b3b-99cc-e538fefdb50c"},{"name":"Get Signed URL","id":"7beffde1-5fbc-473d-ba7d-c93970b8d979","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/signedUrl/agent-123","description":"<p>Generates a signed URL for accessing agent resources.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer/signedUrl/{id}</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li>id (String): Agent or resource ID</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","signedUrl","agent-123"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"808f117b-6b53-4a65-b4e3-562714439910","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": {\n        \"signedUrl\": \"https://storage.example.com/agents/agent-123?signature=abc123&expires=1234567890\",\n        \"expiresAt\": \"2025-06-11T12:00:00Z\"\n    }\n}"}],"_postman_id":"7beffde1-5fbc-473d-ba7d-c93970b8d979"},{"name":"Delete Agent","id":"9a51db8d-d156-4583-bf6d-e5001ae5392c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/agent/agent-123","description":"<p>Deletes an AI agent.</p>\n<p><strong>Endpoint</strong>: DELETE /v1/aiTrainer/agent/{id}</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li>id (String): Agent ID</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","agent","agent-123"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"3ee31297-f00c-413c-8c28-9481a83683ca","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"9a51db8d-d156-4583-bf6d-e5001ae5392c"},{"name":"Upload Agent Picture","id":"c6c9569d-d5ad-4b4d-87bc-b67782f9a3a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"<p>Agent picture file</p>\n","src":"/path/to/picture.jpg"},{"key":"agentId","value":"agent-123","type":"text","description":"<p>Agent ID</p>\n"}]},"url":"https://{{koncert_dialers_api}}/aiTrainer/agent/picture","description":"<p>Uploads a picture for an AI agent.</p>\n<p><strong>Endpoint</strong>: POST /v1/aiTrainer/agent/picture</p>\n<p><strong>Request Type</strong>: multipart/form-data</p>\n<p><strong>Form Parameters</strong>:</p>\n<ul>\n<li><p>file (File): Image file to upload</p>\n</li>\n<li><p>agentId (String): Agent ID</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","agent","picture"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"edc8afde-8bcd-4204-af0d-b95eeaeb59d7","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"pictureUrl\": \"A8CB1F51EC5C96458645024EE0B4DE1DEF434C7D9D9F5F81A30031710D5F98A1C0CE020CAA9A78DC1E4CB38F125A92CD33A12CD8183C18AC\"\n        }\n    ]\n}"}],"_postman_id":"c6c9569d-d5ad-4b4d-87bc-b67782f9a3a5"},{"name":"Get Agent Pictures","id":"cdf8358f-d68d-4424-bb67-3e3a2982c308","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/agent/pictures","description":"<p>Retrieves all agent pictures.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer/agent/pictures</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","agent","pictures"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"a2b2fbf8-4482-46d9-a66c-2264779ff79b","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"agentId\": \"agent_6201k5x3fc00ezyrbc5dbbtj8skp\",\n            \"s3Url\": \"aHR0cHM6Ly82ODI2LXN0ZDAwMDY4MjYuczMuYW1hem9uYXdzLmNvbS9hZ2VudF9waWN0dXJlcy9hZ2VudF82MjAxazV4M2ZjMDBlenlyYmM1ZGJidGo4c2twLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1EYXRlPTIwMjUxMTE5VDExMjMxMVomWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JlgtQW16LUV4cGlyZXM9OTAwJlgtQW16LUNyZWRlbnRpYWw9QUtJQVRSRVpHS0dGUDUzN1NUVDclMkYyMDI1MTExOSUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LVNpZ25hdHVyZT0xNjBhY2UzNjVhMmU0M2FkMmRkNDE0Y2MxYTYxNzExOGI3ZWM1NmYzNmI5M2RiNmZhZjQ4NmVkMzE4YTQzYzcy\"\n        }\n    ]\n}"}],"_postman_id":"cdf8358f-d68d-4424-bb67-3e3a2982c308"},{"name":"Get Voices","id":"23175f1d-4c12-40ed-993e-9dc5b3e82baa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/voices","description":"<p>Retrieves all available voices.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer/voices</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","voices"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"12c1d250-29f4-45a5-a09b-7a83b9e0097b","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"voiceId\": \"Hs1nOWi34Sx3mOWNE7wB\",\n            \"name\": \"Eleanor (casual)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/JQYy6mC8wVZcsB1ep1CwRakHGL13/voices/Hs1nOWi34Sx3mOWNE7wB/9c9019b1-9313-4318-93d9-06a2caadeee3.mp3\"\n        },\n        {\n            \"voiceId\": \"acMzIHp0nFD7qWqTjPHp\",\n            \"name\": \"Stephanie (casual)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/uUgF0HWck7PHbZHcf0KilYfRgvk1/voices/acMzIHp0nFD7qWqTjPHp/19a34b00-9934-438a-a2f3-dbeacc26604a.mp3\"\n        },\n        {\n            \"voiceId\": \"Zc4iQgZV3jsPgOti2GkQ\",\n            \"name\": \"Thomas (deep)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/custom/voices/Zc4iQgZV3jsPgOti2GkQ/kzvvzbSvt2A7el4ryzzp.mp3\"\n        },\n        {\n            \"voiceId\": \"h8eW5xfRUGVJrZhAFxqK\",\n            \"name\": \"Isla (Scottish accent)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/workspace/1da06ea679a54975ad96a2221fe6530d/voices/h8eW5xfRUGVJrZhAFxqK/aLpZVozKJR2BcBn3Gf9g.mp3\"\n        },\n        {\n            \"voiceId\": \"EDv0a4x7mya2wPoYmTZ6\",\n            \"name\": \"Steve (mature, laid back)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/0YRryaXubTXeeVbTcI52HeaS6AB2/voices/EDv0a4x7mya2wPoYmTZ6/95c4744e-c5c2-40dc-811b-aa752542cd78.mp3\"\n        },\n        {\n            \"voiceId\": \"Fahco4VZzobUeiPqni1S\",\n            \"name\": \"Archer (English accent)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/H8fljyNoujV57QrTUGG0DCtAt4M2/voices/Fahco4VZzobUeiPqni1S/BYI5QD0F6odzbXe3n2Nl.mp3\"\n        },\n        {\n            \"voiceId\": \"56AoDkrOh6qfVPDXZ7Pt\",\n            \"name\": \"Cassidy (confident and laid back)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/workspace/1da06ea679a54975ad96a2221fe6530d/voices/56AoDkrOh6qfVPDXZ7Pt/oEgVi6mikkKcpVcTFfj5.mp3\"\n        },\n        {\n            \"voiceId\": \"HDA9tsk27wYi3uq0fPcK\",\n            \"name\": \"Stuart (Austrailian accent)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/3LUrnzimItRhFJyBGCNQfSc602Y2/voices/HDA9tsk27wYi3uq0fPcK/4AhIQcGzr8aDvnONN3bh.mp3\"\n        },\n        {\n            \"voiceId\": \"UgBBYS2sOqTuMpoF3BR0\",\n            \"name\": \"Mark (casual and natural)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/y7Wmp2r8nCeGkLiXiwMOVWktro13/voices/UgBBYS2sOqTuMpoF3BR0/0Oc7jiXwWN9kRTXfQsmw.mp3\"\n        },\n        {\n            \"voiceId\": \"h2sm0NbeIZXHBzJOMYcQ\",\n            \"name\": \"Natasha (comforting and smooth)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/custom/voices/h2sm0NbeIZXHBzJOMYcQ/rgEQcXdiFIMXlsOGf4Q9.mp3\"\n        },\n        {\n            \"voiceId\": \"gOkFV1JMCt0G0n9xmBwV\",\n            \"name\": \"W. L. Oxley (deep and centered)\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/Bi4YhYxPTDRSUfiEpED4qyJ0biq2/voices/gOkFV1JMCt0G0n9xmBwV/bzq9YIfPb3JoAL953C9C.mp3\"\n        },\n        {\n            \"voiceId\": \"21m00Tcm4TlvDq8ikWAM\",\n            \"name\": \"Rachel\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/21m00Tcm4TlvDq8ikWAM/b4928a68-c03b-411f-8533-3d5c299fd451.mp3\"\n        },\n        {\n            \"voiceId\": \"29vD33N1CtxCmqQRPOHJ\",\n            \"name\": \"Drew\",\n            \"description\": \"well-rounded\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/29vD33N1CtxCmqQRPOHJ/b99fc51d-12d3-4312-b480-a8a45a7d51ef.mp3\"\n        },\n        {\n            \"voiceId\": \"2EiwWnXFnvU5JabPnv8n\",\n            \"name\": \"Clyde\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/2EiwWnXFnvU5JabPnv8n/65d80f52-703f-4cae-a91d-75d4e200ed02.mp3\"\n        },\n        {\n            \"voiceId\": \"5Q0t7uMcjvnagumLfvZi\",\n            \"name\": \"Paul\",\n            \"description\": \"authoritative\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/5Q0t7uMcjvnagumLfvZi/a4aaa30e-54c4-44a4-8e46-b9b00505d963.mp3\"\n        },\n        {\n            \"voiceId\": \"9BWtsMINqrJLrRacOk9x\",\n            \"name\": \"Aria\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/9BWtsMINqrJLrRacOk9x/405766b8-1f4e-4d3c-aba1-6f25333823ec.mp3\"\n        },\n        {\n            \"voiceId\": \"AZnzlk1XvdvUeBnXmlld\",\n            \"name\": \"Domi\",\n            \"description\": \"strong\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/AZnzlk1XvdvUeBnXmlld/b3c36b01-f80d-4b16-a698-f83682dee84c.mp3\"\n        },\n        {\n            \"voiceId\": \"CYw3kZ02Hs0563khs1Fj\",\n            \"name\": \"Dave\",\n            \"description\": \"conversational\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/CYw3kZ02Hs0563khs1Fj/872cb056-45d3-419e-b5c6-de2b387a93a0.mp3\"\n        },\n        {\n            \"voiceId\": \"CwhRBWXzGAHq8TQ4Fs17\",\n            \"name\": \"Roger\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/CwhRBWXzGAHq8TQ4Fs17/58ee3ff5-f6f2-4628-93b8-e38eb31806b0.mp3\"\n        },\n        {\n            \"voiceId\": \"D38z5RcWu1voky8WS1ja\",\n            \"name\": \"Fin\",\n            \"description\": \"sailor\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/D38z5RcWu1voky8WS1ja/a470ba64-1e72-46d9-ba9d-030c4155e2d2.mp3\"\n        },\n        {\n            \"voiceId\": \"EXAVITQu4vr4xnSDxMaL\",\n            \"name\": \"Sarah\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/EXAVITQu4vr4xnSDxMaL/01a3e33c-6e99-4ee7-8543-ff2216a32186.mp3\"\n        },\n        {\n            \"voiceId\": \"ErXwobaYiN019PkySvjV\",\n            \"name\": \"Antoni\",\n            \"description\": \"well-rounded\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/ErXwobaYiN019PkySvjV/2d5ab2a3-4578-470f-b797-6331e46a7d55.mp3\"\n        },\n        {\n            \"voiceId\": \"FGY2WhTYpPnrIDTdsKH5\",\n            \"name\": \"Laura\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/FGY2WhTYpPnrIDTdsKH5/67341759-ad08-41a5-be6e-de12fe448618.mp3\"\n        },\n        {\n            \"voiceId\": \"GBv7mTt0atIp3Br8iCZE\",\n            \"name\": \"Thomas\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/GBv7mTt0atIp3Br8iCZE/98542988-5267-4148-9a9e-baa8c4f14644.mp3\"\n        },\n        {\n            \"voiceId\": \"IKne3meq5aSn9XLyUdCD\",\n            \"name\": \"Charlie\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/IKne3meq5aSn9XLyUdCD/102de6f2-22ed-43e0-a1f1-111fa75c5481.mp3\"\n        },\n        {\n            \"voiceId\": \"JBFqnCBsd6RMkjVDRZzb\",\n            \"name\": \"George\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/JBFqnCBsd6RMkjVDRZzb/e6206d1a-0721-4787-aafb-06a6e705cac5.mp3\"\n        },\n        {\n            \"voiceId\": \"LcfcDJNUP1GQjkzn1xUU\",\n            \"name\": \"Emily\",\n            \"description\": \"calm\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/LcfcDJNUP1GQjkzn1xUU/e4b994b7-9713-4238-84f3-add8fccaaccd.mp3\"\n        },\n        {\n            \"voiceId\": \"MF3mGyEYCl7XYWbV9V6O\",\n            \"name\": \"Elli\",\n            \"description\": \"emotional\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/MF3mGyEYCl7XYWbV9V6O/d8ecadea-9e48-4e5d-868a-2ec3d7397861.mp3\"\n        },\n        {\n            \"voiceId\": \"N2lVS1w4EtoT3dr4eOWO\",\n            \"name\": \"Callum\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/N2lVS1w4EtoT3dr4eOWO/ac833bd8-ffda-4938-9ebc-b0f99ca25481.mp3\"\n        },\n        {\n            \"voiceId\": \"ODq5zmih8GrVes37Dizd\",\n            \"name\": \"Patrick\",\n            \"description\": \"shouty\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/ODq5zmih8GrVes37Dizd/0ebec87a-2569-4976-9ea5-0170854411a9.mp3\"\n        },\n        {\n            \"voiceId\": \"SAz9YHcvj6GT2YYXdXww\",\n            \"name\": \"River\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/SAz9YHcvj6GT2YYXdXww/e6c95f0b-2227-491a-b3d7-2249240decb7.mp3\"\n        },\n        {\n            \"voiceId\": \"SOYHLrjzK2X1ezoPC6cr\",\n            \"name\": \"Harry\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/SOYHLrjzK2X1ezoPC6cr/86d178f6-f4b6-4e0e-85be-3de19f490794.mp3\"\n        },\n        {\n            \"voiceId\": \"TX3LPaxmHKxFdv7VOQHJ\",\n            \"name\": \"Liam\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/TX3LPaxmHKxFdv7VOQHJ/63148076-6363-42db-aea8-31424308b92c.mp3\"\n        },\n        {\n            \"voiceId\": \"ThT5KcBeYPX3keUQqHPh\",\n            \"name\": \"Dorothy\",\n            \"description\": \"pleasant\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/ThT5KcBeYPX3keUQqHPh/981f0855-6598-48d2-9f8f-b6d92fbbe3fc.mp3\"\n        },\n        {\n            \"voiceId\": \"TxGEqnHWrfWFTfGW9XjX\",\n            \"name\": \"Josh\",\n            \"description\": \"deep\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/TxGEqnHWrfWFTfGW9XjX/47de9a7e-773a-42a8-b410-4aa90c581216.mp3\"\n        },\n        {\n            \"voiceId\": \"VR6AewLTigWG4xSOukaG\",\n            \"name\": \"Arnold\",\n            \"description\": \"crisp\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/VR6AewLTigWG4xSOukaG/49a22885-80d5-48e8-87a3-076fc9193d9a.mp3\"\n        },\n        {\n            \"voiceId\": \"XB0fDUnXU5powFXDhCwa\",\n            \"name\": \"Charlotte\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/XB0fDUnXU5powFXDhCwa/942356dc-f10d-4d89-bda5-4f8505ee038b.mp3\"\n        },\n        {\n            \"voiceId\": \"Xb7hH8MSUJpSbSDYk0k2\",\n            \"name\": \"Alice\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/Xb7hH8MSUJpSbSDYk0k2/d10f7534-11f6-41fe-a012-2de1e482d336.mp3\"\n        },\n        {\n            \"voiceId\": \"XrExE9yKIg1WjnnlVkGX\",\n            \"name\": \"Matilda\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/XrExE9yKIg1WjnnlVkGX/b930e18d-6b4d-466e-bab2-0ae97c6d8535.mp3\"\n        },\n        {\n            \"voiceId\": \"ZQe5CZNOzWyzPSCn5a3c\",\n            \"name\": \"James\",\n            \"description\": \"calm\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/ZQe5CZNOzWyzPSCn5a3c/35734112-7b72-48df-bc2f-64d5ab2f791b.mp3\"\n        },\n        {\n            \"voiceId\": \"Zlb1dXrM653N07WRdFW3\",\n            \"name\": \"Joseph\",\n            \"description\": \"articulate\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/Zlb1dXrM653N07WRdFW3/daa22039-8b09-4c65-b59f-c79c48646a72.mp3\"\n        },\n        {\n            \"voiceId\": \"bIHbv24MWmeRgasZH58o\",\n            \"name\": \"Will\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/bIHbv24MWmeRgasZH58o/8caf8f3d-ad29-4980-af41-53f20c72d7a4.mp3\"\n        },\n        {\n            \"voiceId\": \"bVMeCyTHy58xNoL34h3p\",\n            \"name\": \"Jeremy\",\n            \"description\": \"excited\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/bVMeCyTHy58xNoL34h3p/66c47d58-26fd-4b30-8a06-07952116a72c.mp3\"\n        },\n        {\n            \"voiceId\": \"cgSgspJ2msm6clMCkdW9\",\n            \"name\": \"Jessica\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/cgSgspJ2msm6clMCkdW9/56a97bf8-b69b-448f-846c-c3a11683d45a.mp3\"\n        },\n        {\n            \"voiceId\": \"cjVigY5qzO86Huf0OWal\",\n            \"name\": \"Eric\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/cjVigY5qzO86Huf0OWal/d098fda0-6456-4030-b3d8-63aa048c9070.mp3\"\n        },\n        {\n            \"voiceId\": \"flq6f7yk4E4fJM5XTYuZ\",\n            \"name\": \"Michael\",\n            \"description\": \"calm\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/flq6f7yk4E4fJM5XTYuZ/c6431a82-f7d2-4905-b8a4-a631960633d6.mp3\"\n        },\n        {\n            \"voiceId\": \"g5CIjZEefAph4nQFvHAz\",\n            \"name\": \"Ethan\",\n            \"description\": \"soft\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/g5CIjZEefAph4nQFvHAz/26acfa99-fdec-43b8-b2ee-e49e75a3ac16.mp3\"\n        },\n        {\n            \"voiceId\": \"iP95p4xoKVk53GoZ742B\",\n            \"name\": \"Chris\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/iP95p4xoKVk53GoZ742B/3f4bde72-cc48-40dd-829f-57fbf906f4d7.mp3\"\n        },\n        {\n            \"voiceId\": \"jBpfuIE2acCO8z3wKNLl\",\n            \"name\": \"Gigi\",\n            \"description\": \"childlish\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/jBpfuIE2acCO8z3wKNLl/3a7e4339-78fa-404e-8d10-c3ef5587935b.mp3\"\n        },\n        {\n            \"voiceId\": \"jsCqWAovK2LkecY7zXl4\",\n            \"name\": \"Freya\",\n            \"description\": \"expressive\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/jsCqWAovK2LkecY7zXl4/8e1f5240-556e-4fd5-892c-25df9ea3b593.mp3\"\n        },\n        {\n            \"voiceId\": \"nPczCjzI2devNBz1zQrb\",\n            \"name\": \"Brian\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/nPczCjzI2devNBz1zQrb/2dd3e72c-4fd3-42f1-93ea-abc5d4e5aa1d.mp3\"\n        },\n        {\n            \"voiceId\": \"oWAxZDx7w5VEj9dCyTzz\",\n            \"name\": \"Grace\",\n            \"description\": \"pleasant\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/oWAxZDx7w5VEj9dCyTzz/84a36d1c-e182-41a8-8c55-dbdd15cd6e72.mp3\"\n        },\n        {\n            \"voiceId\": \"onwK4e9ZLuTAKqWW03F9\",\n            \"name\": \"Daniel\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/onwK4e9ZLuTAKqWW03F9/7eee0236-1a72-4b86-b303-5dcadc007ba9.mp3\"\n        },\n        {\n            \"voiceId\": \"pFZP5JQG7iQjIQuC4Bku\",\n            \"name\": \"Lily\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/pFZP5JQG7iQjIQuC4Bku/89b68b35-b3dd-4348-a84a-a3c13a3c2b30.mp3\"\n        },\n        {\n            \"voiceId\": \"pMsXgVXv3BLzUgSXRplE\",\n            \"name\": \"Serena\",\n            \"description\": \"pleasant\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/pMsXgVXv3BLzUgSXRplE/d61f18ed-e5b0-4d0b-a33c-5c6e7e33b053.mp3\"\n        },\n        {\n            \"voiceId\": \"pNInz6obpgDQGcFmaJgB\",\n            \"name\": \"Adam\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/pNInz6obpgDQGcFmaJgB/d6905d7a-dd26-4187-bfff-1bd3a5ea7cac.mp3\"\n        },\n        {\n            \"voiceId\": \"piTKgcLEGmPE4e6mEKli\",\n            \"name\": \"Nicole\",\n            \"description\": \"soft\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/piTKgcLEGmPE4e6mEKli/c269a54a-e2bc-44d0-bb46-4ed2666d6340.mp3\"\n        },\n        {\n            \"voiceId\": \"pqHfZKP75CvOlQylNhV4\",\n            \"name\": \"Bill\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/pqHfZKP75CvOlQylNhV4/d782b3ff-84ba-4029-848c-acf01285524d.mp3\"\n        },\n        {\n            \"voiceId\": \"t0jbNlBVZ17f02VDIeMI\",\n            \"name\": \"Jessie\",\n            \"description\": \"raspy\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/t0jbNlBVZ17f02VDIeMI/e26939e3-61a4-4872-a41d-33922cfbdcdc.mp3\"\n        },\n        {\n            \"voiceId\": \"yoZ06aMxZJJ28mfd3POQ\",\n            \"name\": \"Sam\",\n            \"description\": \"raspy\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/yoZ06aMxZJJ28mfd3POQ/b017ad02-8d18-4456-ad92-55c85ecf6363.mp3\"\n        },\n        {\n            \"voiceId\": \"z9fAnlkpzviPz146aGWa\",\n            \"name\": \"Glinda\",\n            \"description\": \"witch\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/z9fAnlkpzviPz146aGWa/cbc60443-7b61-4ebb-b8e1-5c03237ea01d.mp3\"\n        },\n        {\n            \"voiceId\": \"zcAOhNBS3c14rBihAFp1\",\n            \"name\": \"Giovanni\",\n            \"description\": \"foreigner\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/zcAOhNBS3c14rBihAFp1/e7410f8f-4913-4cb8-8907-784abee5aff8.mp3\"\n        },\n        {\n            \"voiceId\": \"zrHiDhphv9ZnVXBqCLjz\",\n            \"name\": \"Mimi\",\n            \"description\": \"childish\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/zrHiDhphv9ZnVXBqCLjz/decbf20b-0f57-4fac-985b-a4f0290ebfc4.mp3\"\n        },\n        {\n            \"voiceId\": \"acr8ZRK9Nf1ZcqMJP3HX\",\n            \"name\": \"Lokesh_Bandi\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/JQYy6mC8wVZcsB1ep1CwRakHGL13/voices/acr8ZRK9Nf1ZcqMJP3HX/45fa329a-8034-45a7-b67d-44899e6ffb63.mp3\"\n        },\n        {\n            \"voiceId\": \"kpuwDmirMpS8CZ6UFqOP\",\n            \"name\": \"Bandi Lokesh Professional Voice Clone\",\n            \"description\": null,\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/JQYy6mC8wVZcsB1ep1CwRakHGL13/voices/kpuwDmirMpS8CZ6UFqOP/0bc4adc5-0edd-4b2b-bd30-b6ff65f2d1d9.mp3\"\n        }\n    ]\n}"}],"_postman_id":"23175f1d-4c12-40ed-993e-9dc5b3e82baa"},{"name":"Get Default Voices","id":"978d5a3c-6f1b-46a9-a3d7-be967666c5e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/defaultVoices","description":"<p>Retrieves default voices.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer/defaultVoices</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","defaultVoices"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"dbb63ec5-7098-4190-8842-7d39ce946509","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3787,\n            \"voiceId\": \"pFZP5JQG7iQjIQuC4Bku\",\n            \"voiceName\": \"Lily\",\n            \"voiceDescription\": \"warm\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/pFZP5JQG7iQjIQuC4Bku/89b68b35-b3dd-4348-a84a-a3c13a3c2b30.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3788,\n            \"voiceId\": \"SAz9YHcvj6GT2YYXdXww\",\n            \"voiceName\": \"River\",\n            \"voiceDescription\": \"calm\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/premade/voices/SAz9YHcvj6GT2YYXdXww/e6c95f0b-2227-491a-b3d7-2249240decb7.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3789,\n            \"voiceId\": \"Zc4iQgZV3jsPgOti2GkQ\",\n            \"voiceName\": \"Thomas\",\n            \"voiceDescription\": \"deep\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/custom/voices/Zc4iQgZV3jsPgOti2GkQ/kzvvzbSvt2A7el4ryzzp.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3790,\n            \"voiceId\": \"Fahco4VZzobUeiPqni1S\",\n            \"voiceName\": \"Archer\",\n            \"voiceDescription\": \"English accent\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/H8fljyNoujV57QrTUGG0DCtAt4M2/voices/Fahco4VZzobUeiPqni1S/BYI5QD0F6odzbXe3n2Nl.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3791,\n            \"voiceId\": \"EDv0a4x7mya2wPoYmTZ6\",\n            \"voiceName\": \"Steve\",\n            \"voiceDescription\": \"mature, laid back\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/0YRryaXubTXeeVbTcI52HeaS6AB2/voices/EDv0a4x7mya2wPoYmTZ6/95c4744e-c5c2-40dc-811b-aa752542cd78.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3792,\n            \"voiceId\": \"h2sm0NbeIZXHBzJOMYcQ\",\n            \"voiceName\": \"Natasha\",\n            \"voiceDescription\": \"comforting and smooth\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/custom/voices/h2sm0NbeIZXHBzJOMYcQ/rgEQcXdiFIMXlsOGf4Q9.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3793,\n            \"voiceId\": \"h8eW5xfRUGVJrZhAFxqK\",\n            \"voiceName\": \"Isla\",\n            \"voiceDescription\": \"Scottish accent\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/workspace/1da06ea679a54975ad96a2221fe6530d/voices/h8eW5xfRUGVJrZhAFxqK/aLpZVozKJR2BcBn3Gf9g.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3795,\n            \"voiceId\": \"HDA9tsk27wYi3uq0fPcK\",\n            \"voiceName\": \"Stuart\",\n            \"voiceDescription\": \"Austrailian accent\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/3LUrnzimItRhFJyBGCNQfSc602Y2/voices/HDA9tsk27wYi3uq0fPcK/4AhIQcGzr8aDvnONN3bh.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3796,\n            \"voiceId\": \"56AoDkrOh6qfVPDXZ7Pt\",\n            \"voiceName\": \"Cassidy\",\n            \"voiceDescription\": \"confident and laid back\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/workspace/1da06ea679a54975ad96a2221fe6530d/voices/56AoDkrOh6qfVPDXZ7Pt/oEgVi6mikkKcpVcTFfj5.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3797,\n            \"voiceId\": \"UgBBYS2sOqTuMpoF3BR0\",\n            \"voiceName\": \"Mark\",\n            \"voiceDescription\": \"casual and natural\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/y7Wmp2r8nCeGkLiXiwMOVWktro13/voices/UgBBYS2sOqTuMpoF3BR0/0Oc7jiXwWN9kRTXfQsmw.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 3798,\n            \"voiceId\": \"gOkFV1JMCt0G0n9xmBwV\",\n            \"voiceName\": \"W. L. Oxley\",\n            \"voiceDescription\": \"deep and centered\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/Bi4YhYxPTDRSUfiEpED4qyJ0biq2/voices/gOkFV1JMCt0G0n9xmBwV/bzq9YIfPb3JoAL953C9C.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        },\n        {\n            \"id\": 8033,\n            \"voiceId\": \"Hs1nOWi34Sx3mOWNE7wB\",\n            \"voiceName\": \"Eleanor\",\n            \"voiceDescription\": \"casual\",\n            \"previewUrl\": \"https://storage.googleapis.com/eleven-public-prod/database/user/JQYy6mC8wVZcsB1ep1CwRakHGL13/voices/Hs1nOWi34Sx3mOWNE7wB/9c9019b1-9313-4318-93d9-06a2caadeee3.mp3\",\n            \"systemDefined\": true,\n            \"associations\": {\n                \"org\": {\n                    \"id\": 6826\n                },\n                \"user\": {\n                    \"id\": -1\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"978d5a3c-6f1b-46a9-a3d7-be967666c5e4"},{"name":"Get Voice Sample","id":"bdbf4f80-ed1c-48d7-b521-7ac4b523f0f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/voice/voice-123/sample-456","description":"<p>Retrieves a voice sample.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer/voice/{voiceId}/{sampleId}</p>\n<p><strong>Path Parameters</strong>:</p>\n<ul>\n<li><p>voiceId (String): Voice ID</p>\n</li>\n<li><p>sampleId (String): Sample ID</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","voice","voice-123","sample-456"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"82894698-e89d-447e-9e39-5eb0948ab887","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": {\n        \"voiceId\": \"voice-123\",\n        \"sampleId\": \"sample-456\",\n        \"audioUrl\": \"https://storage.example.com/voices/voice-123/sample-456.mp3\",\n        \"duration\": 5.2\n    }\n}"}],"_postman_id":"bdbf4f80-ed1c-48d7-b521-7ac4b523f0f1"},{"name":"Get Credits Detail","id":"5fde82b1-842b-4aae-bb0d-5c5e800e6be3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/credits","description":"<p>Retrieves AI Trainer credits details.</p>\n<p><strong>Endpoint</strong>: GET /v1/aiTrainer/credits</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","credits"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"343fa360-d763-4e6f-b6a5-caf01ae1b460","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 331,\n            \"startDate\": \"2025-11-07\",\n            \"endDate\": \"2025-12-07\",\n            \"totalMinutes\": 500,\n            \"usedMinutes\": 0.70,\n            \"updatedDate\": \"2025-11-12T08:06:04\"\n        }\n    ]\n}"}],"_postman_id":"5fde82b1-842b-4aae-bb0d-5c5e800e6be3"},{"name":"Update Credits","id":"bd46afc2-a5a1-47ff-853b-3bacdd193cca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/aiTrainer/credits","description":"<p>Updates AI Trainer credits.</p>\n<p><strong>Endpoint</strong>: PUT /v1/aiTrainer/credits</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["aiTrainer","credits"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"9fd977c9-90c3-468a-aa6a-cde3ad930f2e","name":"Success Response","originalRequest":{"header":[],"url":""},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"bd46afc2-a5a1-47ff-853b-3bacdd193cca"}],"id":"987e7c50-093b-49d6-8405-4a1aeb65da72","_postman_id":"987e7c50-093b-49d6-8405-4a1aeb65da72","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Battlecards","item":[{"name":"Get All Battlecards","id":"3623ddf1-eb9c-42ea-b6b7-dcc745aef59e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/playbook?includeAssociations[]=persona&includeAssociations[]=teams&page[limit]=10&page[offset]=0&sort[playbook]=asc","description":"<p>Retrieves all playbooks with pagination, sorting, and association support.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li>includeAssociations[]: Arrays to include associated data (persona, teams)</li>\n<li>page[limit]: Number of records per page</li>\n<li>page[offset]: Offset for pagination</li>\n<li>sort[playbook]: Sort by playbook field (asc/desc)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["playbook"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Include persona associations</p>\n","type":"text/plain"},"key":"includeAssociations[]","value":"persona"},{"description":{"content":"<p>Include team associations</p>\n","type":"text/plain"},"key":"includeAssociations[]","value":"teams"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"page[limit]","value":"10"},{"description":{"content":"<p>Offset for pagination</p>\n","type":"text/plain"},"key":"page[offset]","value":"0"},{"description":{"content":"<p>Sort by playbook (asc/desc)</p>\n","type":"text/plain"},"key":"sort[playbook]","value":"asc"}],"variable":[]}},"response":[{"id":"4dffc0a9-6ecf-49a4-ad2e-da7401cac26b","name":"Success Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/playbook?includeAssociations[]=persona&includeAssociations[]=teams&page[limit]=10&page[offset]=0&sort[playbook]=asc","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["playbook"],"query":[{"key":"includeAssociations[]","value":"persona"},{"key":"includeAssociations[]","value":"teams"},{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"},{"key":"sort[playbook]","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2018,\n            \"playbook\": \"Classroom\",\n            \"isAvailableForUsers\": false,\n            \"content\": \"<p>class room content</p>\",\n            \"createdDate\": \"2025-11-19T10:21:26Z\",\n            \"modifiedDate\": null,\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 24047\n                },\n                \"modifiedBy\": {\n                    \"id\": 24047\n                },\n                \"persona\": [\n                    {\n                        \"id\": 764\n                    }\n                ],\n                \"team\": [\n                    {\n                        \"id\": 2312\n                    }\n                ]\n            }\n        }\n    ],\n    \"includedAssociations\": {\n        \"persona\": [\n            {\n                \"id\": 764,\n                \"persona\": \"vice president\",\n                \"includeTitle\": [\n                    \"Vice President\"\n                ],\n                \"excludeTitle\": [\n                    \"Information Technology Services Manager\"\n                ],\n                \"createdDate\": \"2025-11-19T10:12:01Z\",\n                \"modifiedDate\": \"2025-11-19T10:12:40Z\",\n                \"associations\": {\n                    \"createdBy\": {\n                        \"id\": 24047\n                    },\n                    \"modifiedBy\": {\n                        \"id\": 24047\n                    }\n                }\n            }\n        ],\n        \"team\": [\n            {\n                \"id\": 2312,\n                \"name\": \"Default\",\n                \"createdDate\": \"2024-08-19T12:26:44Z\",\n                \"modifiedDate\": \"2025-11-18T12:53:25Z\",\n                \"dispositionIds\": [\n                    72935,\n                    69718,\n                    74983,\n                    60593\n                ]\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 10,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"3623ddf1-eb9c-42ea-b6b7-dcc745aef59e"},{"name":"Create Battlecard","id":"e2c958c6-e6f2-4a9f-a736-7bdfac7f96fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"playbook\": \"Classroom\",\n    \"persona\": [\n        764\n    ],\n    \"isAvailableForUsers\": false,\n    \"content\": \"<p>class room content</p>\",\n    \"teams\": [\n        2312\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/playbook","description":"<p>Creates a new playbook with associated personas and teams.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li>playbook: Playbook name (required)</li>\n<li>persona: Array of persona IDs to associate</li>\n<li>isAvailableForUsers: Boolean flag for user availability</li>\n<li>content: HTML content of the playbook</li>\n<li>teams: Array of team IDs to associate</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["playbook"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"026446ab-00c7-4c4f-9ab3-0f5a7af95f6e","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"playbook\": \"Classroom\",\n    \"persona\": [\n        764\n    ],\n    \"isAvailableForUsers\": false,\n    \"content\": \"<p>class room content</p>\",\n    \"teams\": [\n        2312\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/playbook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2018,\n            \"playbook\": \"Classroom\",\n            \"isAvailableForUsers\": false,\n            \"content\": \"<p>class room content</p>\",\n            \"createdDate\": \"2025-11-19T10:21:26Z\",\n            \"modifiedDate\": null,\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 24047\n                },\n                \"modifiedBy\": {\n                    \"id\": 24047\n                },\n                \"persona\": [\n                    {\n                        \"id\": 764\n                    }\n                ],\n                \"team\": [\n                    {\n                        \"id\": 2312\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"e2c958c6-e6f2-4a9f-a736-7bdfac7f96fc"},{"name":"Update Battlecard","id":"3bbc6a42-76e7-48cc-81bf-2340dfbe2b12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"playbook\": \"Classrooms\",\n    \"persona\": [\n        764\n    ],\n    \"isAvailableForUsers\": false,\n    \"content\": \"<p>class room content</p>\",\n    \"teams\": [\n        2312\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/playbook/:id","description":"<p>Updates an existing playbook with new information.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id: Playbook ID</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li>playbook: Updated playbook name</li>\n<li>persona: Updated array of persona IDs</li>\n<li>isAvailableForUsers: Updated user availability flag</li>\n<li>content: Updated HTML content</li>\n<li>teams: Updated array of team IDs</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["playbook",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"0e31740b-d0ba-451d-94b3-bf88394b4379","description":{"content":"<p>Playbook ID</p>\n","type":"text/plain"},"type":"any","value":"2018","key":"id"}]}},"response":[{"id":"feb45c97-4093-46ca-af63-7aad568df011","name":"Success Response","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"playbook\": \"Classrooms\",\n    \"persona\": [\n        764\n    ],\n    \"isAvailableForUsers\": false,\n    \"content\": \"<p>class room content</p>\",\n    \"teams\": [\n        2312\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/playbook/2018"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        [\n            {\n                \"id\": 2018,\n                \"playbook\": \"Classrooms\",\n                \"isAvailableForUsers\": false,\n                \"content\": \"<p>class room content</p>\",\n                \"createdDate\": \"2025-11-19T10:21:26Z\",\n                \"modifiedDate\": \"2025-11-19T10:27:56Z\",\n                \"associations\": {\n                    \"createdBy\": {\n                        \"id\": 24047\n                    },\n                    \"modifiedBy\": {\n                        \"id\": 24047\n                    },\n                    \"persona\": [\n                        {\n                            \"id\": 764\n                        }\n                    ],\n                    \"team\": [\n                        {\n                            \"id\": 2312\n                        }\n                    ]\n                }\n            }\n        ]\n    ]\n}"}],"_postman_id":"3bbc6a42-76e7-48cc-81bf-2340dfbe2b12"},{"name":"Delete Battlecard","id":"c77640ed-0997-43d7-b3dd-d8aae7ae930f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/playbook/:id[]","description":"<p>Deletes one or multiple playbooks by their IDs.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id[]: Comma-separated list of Playbook IDs</li>\n</ul>\n<p><strong>Note:</strong> This is a bulk delete operation supporting multiple IDs</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["playbook",":id[]"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"5dfaf458-c7ff-49b7-948c-7902f0554d85","description":{"content":"<p>Comma-separated list of Playbook IDs</p>\n","type":"text/plain"},"type":"any","value":"2018,2019","key":"id[]"}]}},"response":[{"id":"f2f09de4-8492-45e7-a488-a1a17cf46c2c","name":"Success Response - Bulk Delete","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/playbook/2018,2019"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"c77640ed-0997-43d7-b3dd-d8aae7ae930f"}],"id":"11f241d2-54a7-4e9b-9e60-e3bff791187c","description":"<p>APIs for managing playbooks including creation, updates, deletion, and association with personas and teams.</p>\n","_postman_id":"11f241d2-54a7-4e9b-9e60-e3bff791187c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Call Disposition","item":[{"name":"Call Disposition List","id":"2b40e3cd-4205-41be-8935-862d2387761c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callDispositions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","name":"Call Disposition","type":"folder"}},"urlObject":{"protocol":"https","path":["callDispositions"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"a196016c-8c4e-47c9-81d7-f693f03bde73","name":"Call Disposition List","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callDispositions?page[limit]=100&page[offset]=0&filter[active]=true&includeAssociations[]=team&filter[aiEngine]=false&filter[dialingAgent]=false&sort[displayOrder]=asc","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callDispositions"],"query":[{"key":"page[limit]","value":"100"},{"key":"page[offset]","value":"0"},{"key":"filter[active]","value":"true"},{"key":"includeAssociations[]","value":"team"},{"key":"filter[aiEngine]","value":"false"},{"key":"filter[dialingAgent]","value":"false"},{"key":"sort[displayOrder]","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n    {\n        \"id\": 50358,\n        \"modifiedUser\": 29236,\n        \"name\": \"Meeting Scheduled\",\n        \"active\": true,\n        \"dispositionOrder\": 20,\n        \"reportOrder\": 20,\n        \"defaultFlag\": true,\n        \"enableForReport\": true,\n        \"positiveConnect\": true,\n        \"clickDialer\": true,\n        \"personalDialer\": true,\n        \"teamDialer\": true,\n        \"dialingAgent\": false,\n        \"badData\": false,\n        \"memberStage\": \"Attempted\",\n        \"defaultAction\": \"Move To Next Touch\",\n        \"createActivity\": false,\n        \"cadenceDisposition\": \"Meeting Scheduled\",\n        \"requireFollowup\": false,\n        \"connect\": true,\n        \"aiEngine\": false,\n        \"trackOpportunities\": false,\n        \"outreachDispositionOutcome\": \"Not Answered\",\n        \"cadenceSentiment\": \"Interested\",\n        \"rescheduleBasedOnCallAttempts\": false,\n        \"recordPdCalls\": false,\n        \"custom\": false,\n        \"cadenceOutcomeWeight\": 0,\n        \"createdDateTime\": \"2024-10-21T06:11:25Z\",\n        \"modifiedDateTime\": \"2025-07-15T09:47:01Z\",\n        \"notVisibleToUser\": false,\n        \"countAsConvo\": false,\n        \"removeContactFromList\": false,\n        \"removeEntireAccountFromList\": false,\n        \"aiSingleLineDialer\": true,\n        \"aiMultiLineDialer\": true,\n        \"closeTask\": true,\n        \"markAsDnc\": false,\n        \"displayOrder\": 1,\n        \"uploadedFromThirdparty\": true,\n        \"meetingDisposition\": true,\n        \"referralDisposition\": false,\n        \"slackEnabled\": false,\n        \"showCallRecordings\": true,\n        \"enableDoubleTap\": false,\n        \"markAsDncUntil\": false,\n        \"associations\": {\n            \"team\": [\n                {\n                    \"id\": 3235\n                },\n                {\n                    \"id\": 3302\n                },\n                {\n                    \"id\": 3503\n                },\n                {\n                    \"id\": 3301\n                },\n                {\n                    \"id\": 3504\n                }\n            ]\n        },\n        \"swapSentiment\": false\n    }\n],\n    \"paging\": {\n        \"totalCount\": 49,\n        \"limit\": 100,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"2b40e3cd-4205-41be-8935-862d2387761c"},{"name":"Call Disposition","id":"7e8c9e15-5d65-4460-9c14-8e38ea8bb82d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callDispositions/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","name":"Call Disposition","type":"folder"}},"urlObject":{"protocol":"https","path":["callDispositions",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"bb1aeb7b-ab23-4d2e-83f6-3e83062e28cb","type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"7e8c9e15-5d65-4460-9c14-8e38ea8bb82d"},{"name":"Add Call Disposition","id":"e82f54a8-aff4-47ed-b8db-4a74100d8efc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"active\": true,\r\n    \"aiMultiLineDialer\": true,\r\n    \"aiSingleLineDialer\": true,\r\n    \"cadenceOutcomeWeight\": 12,\r\n    \"clickDialer\": true,\r\n    \"connect\": true,\r\n    \"defaultAction\": \"Move To Next Touch\",\r\n    \"enableForReport\": true,\r\n    \"memberStage\": \"Attempted\",\r\n    \"name\": \"Call Outcome Test from Dialer API\",\r\n    \"personalDialer\": true,\r\n    \"positiveConnect\": true,\r\n    \"sentiment\": \"Positive\",\r\n    \"teamDialer\": true,\r\n    \"dialingAgent\": true,\r\n    \"aiEngine\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callDispositions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","name":"Call Disposition","type":"folder"}},"urlObject":{"protocol":"https","path":["callDispositions"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e82f54a8-aff4-47ed-b8db-4a74100d8efc"},{"name":"Update Call Disposition","id":"f766fb9e-97da-4e70-b054-5b53aeba2440","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"active\": true,\r\n    \"aiMultiLineDialer\": true,\r\n    \"aiSingleLineDialer\": true,\r\n    \"cadenceOutcomeWeight\": 12,\r\n    \"clickDialer\": true,\r\n    \"connect\": true,\r\n    \"defaultAction\": \"Move To Next Touch\",\r\n    \"enableForReport\": true,\r\n    \"memberStage\": \"Attempted\",\r\n    \"name\": \"Call Outcome Test from Dialer API\",\r\n    \"personalDialer\": true,\r\n    \"positiveConnect\": true,\r\n    \"sentiment\": \"Positive\",\r\n    \"teamDialer\": true,\r\n    \"dialingAgent\": true,\r\n    \"aiEngine\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callDispositions/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","name":"Call Disposition","type":"folder"}},"urlObject":{"protocol":"https","path":["callDispositions",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"8ae8a6cf-7428-427f-8f2e-8823f05f4798","type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"f766fb9e-97da-4e70-b054-5b53aeba2440"}],"id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac","description":"<p>Call Result/Outcome of the connected calls.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Call Disposition ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Call disposition name</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>active  <br /><code>Boolean</code></td>\n<td>Flag to ensure whether the call disposition is active or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>dispositionOrder  <br /><code>Integer</code></td>\n<td>Disposition order of the call</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>reportOrder  <br /><code>Integer</code></td>\n<td>Report order of the call</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>defaultFlag  <br /><code>Boolean</code></td>\n<td>Whether the default flag is true or false</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>enableForReport  <br /><code>Boolean</code></td>\n<td>Whether the report have been enabled or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>positiveConnect  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is positive or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>clickDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition belongs to click dialer or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>personalDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition belongs to Flow Dialer or not</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>teamDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition belongs to Agent Assisted Dialer or not</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>dialingAgent  <br /><code>Boolean</code></td>\n<td>Whether the call disposition belongs to dialing agent or not</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>badData  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is bad data or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>memberStage  <br /><code>String</code></td>\n<td>Denotes the current stage of the prospect based on selected call disposition. Could be any of values’ Attempted, Replied, Opt-out, Do Not Contact, Bad Data , Not Interested, or Interested</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>defaultAction  <br /><code>String</code></td>\n<td>The default action of the corresponding call disposition</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>createActivity  <br /><code>Boolean</code></td>\n<td>Whether the call disposition have access to create activity or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>cadenceDisposition  <br /><code>String</code></td>\n<td>The cadence disposition of the call</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>requireFollowup  <br /><code>Boolean</code></td>\n<td>Whether the call disposition requires followup or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>connect  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs connect or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>trackOpportunities  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs track opportunities or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>outreachDispositionOutcome  <br /><code>String</code></td>\n<td>The outcome of the call outreach disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>cadenceSentiment  <br /><code>String</code></td>\n<td>The cadence sentiment of the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>callNotes  <br /><code>String</code></td>\n<td>The call notes of the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>sentiment  <br /><code>String</code></td>\n<td>The sentiment of the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>leadStatus  <br /><code>String</code></td>\n<td>The status of lead for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>leadSubStatus  <br /><code>String</code></td>\n<td>The sub-status of lead for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>contactStatus  <br /><code>String</code></td>\n<td>The contact status for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>csvStatus  <br /><code>String</code></td>\n<td>The csv status for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>rescheduleBasedOnCallAttempts  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs to be rescheduled based on the call attempts or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>recordPdCalls  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs to record the Flow Dialer calls or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>custom  <br /><code>Boolean</code></td>\n<td>Whether the call disposition needs to be custom or not</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>cadenceOutcomeWeight  <br /><code>Integer</code></td>\n<td>The cadence outcome weight of the call disposition.</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>createdDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the call disposition was created</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the call disposition was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>contactSubStatus  <br /><code>String</code></td>\n<td>The contact sub-status for the corresponding call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>notVisibleToUser  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is visible to user or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>aiEngine  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is belongs to AI Engine</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>aiSingleLineDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is belongs to AI Single Line Dialer</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>aiMultiLineDialer  <br /><code>Boolean</code></td>\n<td>Whether the call disposition is belongs to AI Multi Line Dialer</td>\n<td><code>Filterable</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser  <br /><code>Array of Objects</code></td>\n<td>ID of the user who created the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedUser  <br /><code>Array of Objects</code></td>\n<td>ID of the user who modified the call disposition</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"_postman_id":"558cbafa-17a6-45a9-9ec4-f5f44a4ed6ac"},{"name":"Call Recordings","item":[{"name":"Call Library","item":[{"name":"Call Library","id":"8937fe98-3b50-44d2-ae9e-1eea79e35de8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{base_url}}/v1/callRecordings/callLibrary?page=0&size=10&sort=createdOn,desc","description":"<p>Retrieves all call libraries with pagination, filtering, and sorting support.</p>\n<p><strong>Access:</strong> Admin/Manager only</p>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li>page: Page number (0-based)</li>\n<li>size: Records per page</li>\n<li>sort: Sort criteria (field,direction)</li>\n<li>filter: Filter criteria (field:operator:value)</li>\n<li>includeAssociations: Include related entities</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["v1","callRecordings","callLibrary"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Page number (0-based)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Sort field and direction</p>\n","type":"text/plain"},"key":"sort","value":"createdOn,desc"},{"disabled":true,"description":{"content":"<p>Filter criteria (optional)</p>\n","type":"text/plain"},"key":"filter","value":"name:like:test"},{"disabled":true,"description":{"content":"<p>Include related entities (optional)</p>\n","type":"text/plain"},"key":"includeAssociations","value":"user,callRecording"}],"variable":[]}},"response":[{"id":"e211bc46-57bf-41ed-8d4c-8a61617be72b","name":"Call Library","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callRecordings/callLibrary?includeAssociations[]=callDisposition&includeAssociations[]=user&includeAssociations[]=createdBy&filter[productId]=:[TD,AIDSL,AIDML,CD]&filter[user][id]=:[21456,21816,20223,21010,21695]&filter[createdDateTime]=%3E%3D2025-05-01T00%3A00%3A00Z&filter[createdDateTime]=%3C%3D2025-05-16T00%3A00%3A00Z&filter[callDuration]=%3E0&sort[user][name]=asc&page[limit]=25&page[offset]=0","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callRecordings","callLibrary"],"query":[{"key":"includeAssociations[]","value":"callDisposition"},{"key":"includeAssociations[]","value":"user"},{"key":"includeAssociations[]","value":"createdBy"},{"key":"filter[productId]","value":":[TD,AIDSL,AIDML,CD]"},{"key":"filter[user][id]","value":":[21456,21816,20223,21010,21695]"},{"key":"filter[createdDateTime]","value":"%3E%3D2025-05-01T00%3A00%3A00Z"},{"key":"filter[createdDateTime]","value":"%3C%3D2025-05-16T00%3A00%3A00Z"},{"key":"filter[callDuration]","value":"%3E0"},{"key":"sort[user][name]","value":"asc"},{"key":"page[limit]","value":"25"},{"key":"page[offset]","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 830,\n            \"tag\": null,\n            \"crmId\": \"crmgenkey_70209bb4-06e0-32d3-903b-be06196b12dc\",\n            \"email\": \"Testing373@testing.com\",\n            \"orgId\": 14230,\n            \"title\": \"CEO\",\n            \"userId\": 20223,\n            \"listName\": \"1500 Prospect Lists (1).csv\",\n            \"arrowType\": \"SINGLE\",\n            \"createdBy\": 20223,\n            \"phoneType\": \"custom_phone_2\",\n            \"phraseIds\": null,\n            \"productId\": \"AIDSL\",\n            \"sipCallId\": \"540e1b6743f3d85d3c491e94790cffbe@54.224.157.118:5060\",\n            \"activityId\": null,\n            \"dataListId\": 54802,\n            \"personName\": \"Addisyn Frank\",\n            \"phraseTime\": null,\n            \"recordType\": null,\n            \"reviewCall\": false,\n            \"accountName\": \"Tesing Prospect Data\",\n            \"listCrmName\": null,\n            \"wordsPerMin\": 0,\n            \"callComments\": \"-\",\n            \"callDuration\": 13,\n            \"callStartTime\": \"2025-05-14T02:47Z\",\n            \"callDisposition\": 143707,\n            \"createddatetime\": \"05/14/2025 06:17 PM\",\n            \"callRecordingUrl\": \"?rt=gcr&crid=03AD9BF393F30FAE740F47027A282A3B493E5C97BB82ADDE5A9F3F2DE79125C130D2FD842F3FEB676D63C7EF48395200BF39B3CB598D466A&module=4C0F8DB72C9DE5AD41EC6AE5BCC107F6\",\n            \"hasCoachingNotes\": true,\n            \"phraseIdsMatched\": null,\n            \"totalTalkerWords\": null,\n            \"callDispositionId\": null,\n            \"dialedPhoneNumber\": \"+16039522500\",\n            \"phraseMatchResult\": null,\n            \"prospectPhraseIds\": null,\n            \"salesrepPhraseIds\": null,\n            \"totalProspectWords\": null,\n            \"callRatingComments1\": null,\n            \"callRatingComments2\": null,\n            \"callRatingComments3\": null,\n            \"callRatingComments4\": null,\n            \"callRatingComments5\": null,\n            \"callRatingComments6\": null,\n            \"callRatingComments7\": null,\n            \"callRatingComments8\": null,\n            \"callRatingComments9\": null,\n            \"talkerDispositionId\": null,\n            \"callRatingComments10\": null,\n            \"conversationPhraseIds\": null,\n            \"conversationSentiment\": \"neutral\",\n            \"isCallTranscriptExist\": false,\n            \"awsRawTranscriptionResult\": \"{\\\"metadata\\\":{\\\"transaction_key\\\":\\\"deprecated\\\",\\\"request_id\\\":\\\"d27c6f71-2aba-44c1-b9c5-64a5f64809fe\\\",\\\"sha256\\\":\\\"e5fd7f8a1c044c1dedc86d2553c596f6c1e048cba076522a17254355aa0bef25\\\",\\\"created\\\":\\\"2025-05-14T06:47:31.260Z\\\",\\\"duration\\\":0.0,\\\"channels\\\":0,\\\"sentiment_info\\\":{\\\"model_uuid\\\":\\\"80ab3179-d113-4254-bd6b-4a2f96498695\\\",\\\"input_tokens\\\":0,\\\"output_tokens\\\":0}},\\\"results\\\":{\\\"channels\\\":[],\\\"sentiments\\\":{\\\"segments\\\":[],\\\"average\\\":{\\\"sentiment\\\":\\\"neutral\\\",\\\"sentiment_score\\\":0.0}}}}\",\n            \"formattedTranscriptionResult\": \"[]\",\n            \"formattedTranscriptionWithRawPhraseMatcherResult\": null,\n            \"phraseTag\": [],\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 20223\n                    }\n                ],\n                \"callDisposition\": [\n                    {\n                        \"id\": 143707\n                    }\n                ],\n                \"createdBy\": [\n                    {\n                        \"id\": 20223\n                    }\n                ],\n                \"talkerId\": [\n                    {\n                        \"id\": 36449\n                    }\n                ]\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"callDisposition\": [\n            {\n                \"id\": 143707,\n                \"name\": \"Meeting Scheduled\",\n                \"active\": true,\n                \"dispositionOrder\": 1,\n                \"reportOrder\": 1,\n                \"defaultFlag\": false,\n                \"enableForReport\": true,\n                \"positiveConnect\": true,\n                \"clickDialer\": true,\n                \"personalDialer\": true,\n                \"teamDialer\": true,\n                \"dialingAgent\": false,\n                \"badData\": false,\n                \"prospectStage\": \"Interested\",\n                \"defaultAction\": \"Exit Cadence\",\n                \"createActivity\": false,\n                \"cadenceDisposition\": null,\n                \"requireFollowup\": false,\n                \"referralDisposition\": false,\n                \"connect\": true,\n                \"trackOpportunities\": false,\n                \"outreachDispositionOutcome\": \"Not Answered\",\n                \"cadenceSentiment\": null,\n                \"callNotes\": null,\n                \"sentiment\": null,\n                \"leadStatus\": null,\n                \"leadSubStatus\": null,\n                \"contactStatus\": null,\n                \"csvStatus\": null,\n                \"rescheduleBasedOnCallAttempts\": false,\n                \"recordPdCalls\": false,\n                \"custom\": false,\n                \"cadenceOutcomeWeight\": 50,\n                \"createdDateTime\": \"2024-10-23T10:22:58Z\",\n                \"modifiedDateTime\": \"2024-10-23T10:22:56Z\",\n                \"contactSubStatus\": null,\n                \"notVisibleToUser\": false,\n                \"aiEngine\": false,\n                \"aiSingleLineDialer\": true,\n                \"aiMultiLineDialer\": true,\n                \"closeTask\": true,\n                \"hubspotDisposition\": null,\n                \"displayOrder\": 1,\n                \"showCallRecordings\": true,\n                \"meetingDisposition\": true,\n                \"snoozeUtilDurationInDays\": 30,\n                \"enableDataEnrichment\": null,\n                \"associations\": {\n                    \"createdUser\": [],\n                    \"modifiedUser\": []\n                }\n            },\n            {\n                \"id\": 143715,\n                \"name\": \"Follow Up\",\n                \"active\": true,\n                \"dispositionOrder\": 2,\n                \"reportOrder\": 2,\n                \"defaultFlag\": false,\n                \"enableForReport\": true,\n                \"positiveConnect\": true,\n                \"clickDialer\": true,\n                \"personalDialer\": true,\n                \"teamDialer\": true,\n                \"dialingAgent\": false,\n                \"badData\": false,\n                \"prospectStage\": \"Interested\",\n                \"defaultAction\": \"Move To Next Touch\",\n                \"createActivity\": false,\n                \"cadenceDisposition\": null,\n                \"requireFollowup\": true,\n                \"referralDisposition\": false,\n                \"connect\": true,\n                \"trackOpportunities\": false,\n                \"outreachDispositionOutcome\": \"Not Answered\",\n                \"cadenceSentiment\": null,\n                \"callNotes\": null,\n                \"sentiment\": null,\n                \"leadStatus\": null,\n                \"leadSubStatus\": null,\n                \"contactStatus\": null,\n                \"csvStatus\": null,\n                \"rescheduleBasedOnCallAttempts\": false,\n                \"recordPdCalls\": false,\n                \"custom\": false,\n                \"cadenceOutcomeWeight\": 10,\n                \"createdDateTime\": \"2024-10-23T10:22:58Z\",\n                \"modifiedDateTime\": \"2024-10-23T10:22:56Z\",\n                \"contactSubStatus\": null,\n                \"notVisibleToUser\": false,\n                \"aiEngine\": false,\n                \"aiSingleLineDialer\": true,\n                \"aiMultiLineDialer\": true,\n                \"closeTask\": true,\n                \"hubspotDisposition\": null,\n                \"displayOrder\": 2,\n                \"showCallRecordings\": true,\n                \"meetingDisposition\": false,\n                \"snoozeUtilDurationInDays\": 30,\n                \"enableDataEnrichment\": null,\n                \"associations\": {\n                    \"createdUser\": [],\n                    \"modifiedUser\": []\n                }\n            }\n        ],\n        \"user\": [\n            {\n                \"id\": 20223,\n                \"sfUserId\": \"STD-62435\",\n                \"name\": \"swathi ziva\",\n                \"userType\": null,\n                \"loginName\": \"lureji@azuretechtalk.net\",\n                \"email\": null,\n                \"userLicense\": \"TD,CD,TC,AIDML,AIDSL\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 2\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": null,\n                \"isManagerUser\": \"Y\",\n                \"lastProductType\": \"AIDSL\",\n                \"lastProductUrl\": \"https://devqads.koncert.com/aidialerserver-api/v1/dialerServer\",\n                \"rcUrl\": null,\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"917395939430\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"Y\",\n                \"callRecordingUserPermission\": \"YYY\",\n                \"callRecordingEnabledByUser\": \"Y\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n                \"enableScheduleCheck\": \"N\",\n                \"isAdminUser\": \"Y\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": 67.50,\n                \"showAccountsBy\": null,\n                \"purchaseCustomCallerIds\": true,\n                \"isTrucadenceLeftmenuExpanded\": null,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"gongUserId\": null,\n                \"lastExecutedDataListIds\": \"59580\",\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"N\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"Base-App\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2024-10-23T10:22:56Z\",\n                \"modifiedDate\": \"2025-11-10T06:58:20Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": null,\n                \"displayName\": \"swathi ziva\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": [\n                    \"calls\",\n                    \"emails\",\n                    \"social\",\n                    \"linkedin\",\n                    \"task\",\n                    \"unassigned\"\n                ],\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": false,\n                \"isFirstTimeUser\": false,\n                \"associations\": {},\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\n                \"location\": \"New Hampshire\",\n                \"allowMultiEmailAccounts\": false,\n                \"salesloftVerifiedFlag\": null,\n                \"outreachVerifiedFlag\": null,\n                \"crmtemplateLoadingPage\": \"remotecoach\",\n                \"isFirstTimeDialed\": true,\n                \"apolloUserId\": null,\n                \"lockDownDialingInstructions\": false,\n                \"outreachGuid\": null,\n                \"thirdPartyInstanceUrl\": null,\n                \"enrichmentCredits\": null,\n                \"pitchLabCredits\": null\n            }\n        ],\n        \"createdBy\": [\n            {\n                \"id\": 20223,\n                \"sfUserId\": \"STD-62435\",\n                \"name\": \"swathi ziva\",\n                \"userType\": null,\n                \"loginName\": \"lureji@azuretechtalk.net\",\n                \"email\": null,\n                \"userLicense\": \"TD,CD,TC,AIDML,AIDSL\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 2\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": null,\n                \"isManagerUser\": \"Y\",\n                \"lastProductType\": \"AIDSL\",\n                \"lastProductUrl\": \"https://devqads.koncert.com/aidialerserver-api/v1/dialerServer\",\n                \"rcUrl\": null,\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"917395939430\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"Y\",\n                \"callRecordingUserPermission\": \"YYY\",\n                \"callRecordingEnabledByUser\": \"Y\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n                \"enableScheduleCheck\": \"N\",\n                \"isAdminUser\": \"Y\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": 67.50,\n                \"showAccountsBy\": null,\n                \"purchaseCustomCallerIds\": true,\n                \"isTrucadenceLeftmenuExpanded\": null,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"gongUserId\": null,\n                \"lastExecutedDataListIds\": \"59580\",\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"N\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"Base-App\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2024-10-23T10:22:56Z\",\n                \"modifiedDate\": \"2025-11-10T06:58:20Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": null,\n                \"displayName\": \"swathi ziva\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": [\n                    \"calls\",\n                    \"emails\",\n                    \"social\",\n                    \"linkedin\",\n                    \"task\",\n                    \"unassigned\"\n                ],\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": false,\n                \"isFirstTimeUser\": false,\n                \"associations\": {},\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\n                \"location\": \"New Hampshire\",\n                \"allowMultiEmailAccounts\": false,\n                \"salesloftVerifiedFlag\": null,\n                \"outreachVerifiedFlag\": null,\n                \"crmtemplateLoadingPage\": \"remotecoach\",\n                \"isFirstTimeDialed\": true,\n                \"apolloUserId\": null,\n                \"lockDownDialingInstructions\": false,\n                \"outreachGuid\": null,\n                \"thirdPartyInstanceUrl\": null,\n                \"enrichmentCredits\": null,\n                \"pitchLabCredits\": null\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"8937fe98-3b50-44d2-ae9e-1eea79e35de8"},{"name":"Call Library by ID","id":"6d59cee6-04e6-4c29-aaea-7446f88019c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{base_url}}/v1/callRecordings/callLibrary/:id","description":"<p>Retrieves a specific call library by ID.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id: Call Library ID (must be positive)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["v1","callRecordings","callLibrary",":id"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>Include related entities (optional)</p>\n","type":"text/plain"},"key":"includeAssociations","value":"user,callRecording"}],"variable":[{"id":"a457fec3-eebd-4f10-ad54-6bee0e9e7962","description":{"content":"<p>Call Library ID</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"6521f009-337f-438f-aed0-4ab6f999c0ef","name":"Call Library by ID","originalRequest":{"method":"GET","header":[],"url":"{{base_url}}/v1/callRecordings/callLibrary/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Best Sales Call Example\",\n        \"description\": \"Excellent example of handling objections\",\n        \"callRecordingId\": 12345,\n        \"duration\": 320,\n        \"createdOn\": \"2024-11-15T10:30:00Z\",\n        \"createdBy\": {\n            \"id\": 100,\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"email\": \"john.doe@example.com\"\n        },\n        \"tags\": [\"objection-handling\", \"closing\"],\n        \"recordingUrl\": \"https://example.com/recordings/12345.mp3\",\n        \"transcriptAvailable\": true\n    }\n}"}],"_postman_id":"6d59cee6-04e6-4c29-aaea-7446f88019c7"},{"name":"Call Library Transcript","id":"002726ef-2bcb-416d-9ead-f46e84bff395","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{base_url}}/v1/callRecordings/callLibraryTranscript/:id","description":"<p>Retrieves the transcript of a call library recording.</p>\n<p><strong>Access:</strong> Admin/Manager only</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id: Call Library ID (must be positive)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["v1","callRecordings","callLibraryTranscript",":id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"653999df-588a-4b90-9d83-fd91fa2be709","description":{"content":"<p>Call Library ID</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"19357f2d-3a2a-4a76-8db9-6367935b7507","name":"Call Library Transcript","originalRequest":{"method":"GET","header":[],"url":"{{base_url}}/v1/callRecordings/callLibraryTranscript/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"callLibraryId\": 1,\n        \"transcript\": [\n            {\n                \"speaker\": \"Agent\",\n                \"timestamp\": \"00:00:05\",\n                \"text\": \"Hello, this is John from ABC Company. How are you today?\"\n            },\n            {\n                \"speaker\": \"Customer\",\n                \"timestamp\": \"00:00:10\",\n                \"text\": \"I'm doing well, thank you.\"\n            },\n            {\n                \"speaker\": \"Agent\",\n                \"timestamp\": \"00:00:15\",\n                \"text\": \"Great! I'm calling to discuss our new product offering...\"\n            }\n        ],\n        \"duration\": 320,\n        \"phraseAnalysis\": {\n            \"keyPhrases\": [\"product offering\", \"value proposition\", \"next steps\"],\n            \"sentiment\": \"positive\"\n        }\n    }\n}"}],"_postman_id":"002726ef-2bcb-416d-9ead-f46e84bff395"},{"name":"Add Call Recording to Library","id":"f3ad4d51-938e-4782-83ae-554513fe4d3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{base_url}}/v1/callRecordings/addToLibrary/:productType/:id","description":"<p>Adds a call recording to the call library.</p>\n<p><strong>Access:</strong> Admin/Manager only</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>productType: Type of product (powerDialer, flowDialer, etc.)</li>\n<li>id: Call Recording ID (must be positive)</li>\n</ul>\n<p><strong>Note:</strong> No request body required</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["v1","callRecordings","addToLibrary",":productType",":id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"666c6e38-ca4a-43ac-a611-c6e80ac457ba","description":{"content":"<p>Product type (e.g., powerDialer, flowDialer, etc.)</p>\n","type":"text/plain"},"type":"any","value":"powerDialer","key":"productType"},{"id":"7096c52e-c655-4459-afa0-1e34c0a4d117","description":{"content":"<p>Call Recording ID</p>\n","type":"text/plain"},"type":"any","value":"12345","key":"id"}]}},"response":[{"id":"873056a4-0cc0-4b23-b926-7cfc3095ae3b","name":"Add Call Recording to Library","originalRequest":{"method":"PUT","header":[],"url":"{{base_url}}/v1/callRecordings/addToLibrary/powerDialer/12345"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 2,\n        \"callRecordingId\": 12345,\n        \"name\": \"Call with ABC Corp\",\n        \"description\": \"Successful sales call\",\n        \"addedToLibrary\": true,\n        \"addedOn\": \"2024-11-19T14:25:00Z\",\n        \"message\": \"Call recording successfully added to library\"\n    }\n}"}],"_postman_id":"f3ad4d51-938e-4782-83ae-554513fe4d3f"},{"name":"Share Call Library","id":"dae09794-1eeb-4a08-917d-b0a9bc99d1df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userIds\": [101, 102, 103],\n    \"teamIds\": [5, 6],\n    \"message\": \"Please review this excellent call example for best practices\",\n    \"shareWithAll\": false,\n    \"notifyUsers\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v1/callRecordings/share/:id","description":"<p>Shares a call library recording with specific users or teams.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id: Call Library ID (must be positive)</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li>userIds: Array of user IDs to share with</li>\n<li>teamIds: Array of team IDs to share with</li>\n<li>message: Optional message to include</li>\n<li>shareWithAll: Boolean to share with entire organization</li>\n<li>notifyUsers: Boolean to send email notifications</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["v1","callRecordings","share",":id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"480cd621-2556-430b-bf0b-7a6647e1cdef","description":{"content":"<p>Call Library ID</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"c915050f-0033-44ea-92e3-5ea538ff4fb3","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"userIds\": [101, 102, 103],\n    \"teamIds\": [5, 6],\n    \"message\": \"Please review this excellent call example for best practices\",\n    \"shareWithAll\": false,\n    \"notifyUsers\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v1/callRecordings/share/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"callLibraryId\": 1,\n        \"sharedWith\": {\n            \"users\": [101, 102, 103],\n            \"teams\": [5, 6]\n        },\n        \"totalUsersNotified\": 15,\n        \"sharedOn\": \"2024-11-19T14:30:00Z\",\n        \"message\": \"Call library successfully shared\"\n    }\n}"}],"_postman_id":"dae09794-1eeb-4a08-917d-b0a9bc99d1df"},{"name":"Call Library","id":"a7547d2c-c032-481b-9821-7ca4bf42eba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{base_url}}/v1/callRecordings/callLibrary/:id","description":"<p>Deletes a specific call library recording.</p>\n<p><strong>Access:</strong> Admin/Manager only</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id: Call Library ID (must be positive)</li>\n</ul>\n<p><strong>Note:</strong> This is a soft delete operation</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["v1","callRecordings","callLibrary",":id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"bae14a03-4923-4b0b-9d15-dc8f9b4d7efe","description":{"content":"<p>Call Library ID</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"bece2d05-4bc2-43bd-8af9-808619436317","name":"Call Library","originalRequest":{"method":"DELETE","header":[],"url":"{{base_url}}/v1/callRecordings/callLibrary/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 1,\n        \"deleted\": true,\n        \"deletedOn\": \"2024-11-19T14:35:00Z\",\n        \"message\": \"Call library successfully deleted\"\n    }\n}"}],"_postman_id":"a7547d2c-c032-481b-9821-7ca4bf42eba6"}],"id":"ca2b7e2c-d0c6-4fff-b9e4-14846ee2165e","description":"<p>Call Library will store call recordings that need to be kept permanently.</p>\n<p>Its purpose is to move selected recordings from the Call Recording module into the library.</p>\n<p>Since recordings in the Call Recording module get automatically deleted after 180 days, the Call Library ensures that important recordings are retained forever.</p>\n","_postman_id":"ca2b7e2c-d0c6-4fff-b9e4-14846ee2165e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Call Recordings","id":"f369da06-2520-4436-990c-3df1bac86272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Koncert-API-Key","value":"","type":"text"}],"url":"https://{{koncert_dialers_api}}/callRecordings?page[limit]=25&page[offset]=0&filter[startDate]=2026-03-01T00:00:00Z&filter[endDate]=2026-03-31T00:00:00Z&filter[user][id]=:[31031]&filter[productId]=:[TD,AIFD,AIPD,CD]&filter[callDisposition]=:[64206,64212,64208,64209,64174,64218,64216,64219,64215,64210,64223,64211,64207,64220,64217,64221]&filter[listname]=:[51566]&sort[callStartTime]=desc","description":"<p>To view all the call recordings based on teams, users, call dispositions, products, date range and list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callRecordings"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"page[limit]","value":"25"},{"key":"page[offset]","value":"0"},{"key":"filter[startDate]","value":"2026-03-01T00:00:00Z"},{"key":"filter[endDate]","value":"2026-03-31T00:00:00Z"},{"key":"filter[user][id]","value":":[31031]"},{"key":"filter[productId]","value":":[TD,AIFD,AIPD,CD]"},{"key":"filter[callDisposition]","value":":[64206,64212,64208,64209,64174,64218,64216,64219,64215,64210,64223,64211,64207,64220,64217,64221]"},{"key":"filter[listname]","value":":[51566]"},{"key":"sort[callStartTime]","value":"desc"}],"variable":[]}},"response":[{"id":"ee72a890-6326-4fc1-9688-1d2e87fb9ef8","name":"Call Recordings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callRecordings?page[limit]=25&page[offset]=0&filter[startDate]=2026-03-01T00:00:00Z&filter[endDate]=2026-03-31T00:00:00Z&filter[user][id]=:[31031,31062,31037,31036,28515,28514,28513,31047,31044,31059,31042,31027,31033,28522,31024,31052,31017,31043,31046,40243,31019,47606,31056,40240,31051,28517,40374,31029,31023,31055,28512,31034,28518,31038,31016,31015,31012,31014,31041,31026,31030,31061,31053,31057,31048,31039,28679,31054,31018,28516,28519,31035,31020,31045,31049,31050,31025,42778,46854,47527,45453,42976,31013,31028,28504]&filter[productId]=:[TD,AIFD,AIPD,CD]&filter[callDisposition]=:[64206,64212,64208,64209,64174,64218,64216,64219,64215,64210,64223,64211,64207,64220,64217,64221]&filter[listname]=:[51566]&sort[callStartTime]=desc","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callRecordings"],"query":[{"key":"page[limit]","value":"25"},{"key":"page[offset]","value":"0"},{"key":"filter[startDate]","value":"2026-03-01T00:00:00Z"},{"key":"filter[endDate]","value":"2026-03-31T00:00:00Z"},{"key":"filter[user][id]","value":":[31031,31062,31037,31036,28515,28514,28513,31047,31044,31059,31042,31027,31033,28522,31024,31052,31017,31043,31046,40243,31019,47606,31056,40240,31051,28517,40374,31029,31023,31055,28512,31034,28518,31038,31016,31015,31012,31014,31041,31026,31030,31061,31053,31057,31048,31039,28679,31054,31018,28516,28519,31035,31020,31045,31049,31050,31025,42778,46854,47527,45453,42976,31013,31028,28504]"},{"key":"filter[productId]","value":":[TD,AIFD,AIPD,CD]"},{"key":"filter[callDisposition]","value":":[64206,64212,64208,64209,64174,64218,64216,64219,64215,64210,64223,64211,64207,64220,64217,64221]"},{"key":"filter[listname]","value":":[51566]"},{"key":"sort[callStartTime]","value":"desc"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": \"40155\",\r\n            \"userName\": \"swathi ziva\",\r\n            \"phoneType\": \"Mobile\",\r\n            \"tdXferStartTime\": \"10/10/2025 08:59 AM\",\r\n            \"accountName\": \"Tesing Prospect Data\",\r\n            \"personName\": \"Ainhoa Berry\",\r\n            \"Title\": \"Manager\",\r\n            \"callDisposition\": \"Dialed - No conversation\",\r\n            \"callComments\": \"-\",\r\n            \"TalkerFilePath\": null,\r\n            \"TalkerID\": \"20223\",\r\n            \"productId\": \"AIFD\",\r\n            \"dialedPhoneNumber\": \"+16039522500\",\r\n            \"callDuration\": \"00:00:32\",\r\n            \"isCallRatingDone\": \"N\",\r\n            \"callRecordingUrl\": \"?rt=gcr&crid=34CBAF40C014C2A979D56CFEF599155C9CB17DF54C4E1517294F508752561913E51B86CACBDBC43C6D63C7EF48395200BF39B3CB598D466A\",\r\n            \"listname\": \"1500 Prospect Lists (1).csv\",\r\n            \"isTwoPartyConsentState\": \"t\",\r\n            \"arrowType\": \"DOUBLE\",\r\n            \"tag\": [\r\n                \"No Tags\"\r\n            ],\r\n            \"crmTaskId\": \"\",\r\n            \"crmId\": \"crmgenkey_7bf47a81-b97d-3e86-90c8-8552bc33ebb2\",\r\n            \"phraseTag\": null,\r\n            \"iscallRecordingExist\": \"t\",\r\n            \"isCallTranscriptExist\": \"t\",\r\n            \"recordType\": null,\r\n            \"listCrmName\": null,\r\n            \"activityId\": null,\r\n            \"reviewCall\": \"f\",\r\n            \"phraseIds\": \"6561__DEL__0\",\r\n            \"coachingNoteExist\": \"f\",\r\n            \"wordsPerMin\": \"154.71809308543743\",\r\n            \"conversationSentiment\": \"neutral\",\r\n            \"ratedBy\": \"\",\r\n            \"gongContactId\": \"\",\r\n            \"gongLeadId\": \"\",\r\n            \"totalProspectWords\": 66,\r\n            \"totalTalkerWords\": 27\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 1,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"f369da06-2520-4436-990c-3df1bac86272"},{"name":"Call Recording","id":"5395251f-2a83-4754-9a9b-807db847af9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"callratingComments1\":\"good\",\r\n\"callRatingScore1\":\"4.5\",\r\n\"tag\":[\"new tag\"]}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callRecordings/:productType/:id","description":"<p>This API used to update call recording details based on the product type like call ratings, tag, etc..aad</p>\n<p>Accepted product types are FD,CD,AAD,AIFD,AIPD.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callRecordings",":productType",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"45ddb13f-3869-4e16-99b9-6a6e3430d5d6","type":"any","value":"aifd","key":"productType"},{"id":"6fd401b0-9fcd-4c82-baef-bff2bbe5b967","type":"any","value":"2345","key":"id"}]}},"response":[{"id":"75e7d184-437e-4f55-b224-838fd29493ad","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"callratingComments1\":\"good\",\r\n\"callRatingScore1\":\"4.5\",\r\n\"tag\":[\"new tag\"]}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/callRecordings/:productType/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callRecordings",":productType",":id"],"variable":[{"key":"productType","value":"aifd"},{"key":"id","value":"2345"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 68,\r\n            \"userName\": \"API, Client\",\r\n            \"productId\": \"AIDSL\",\r\n            \"tdTransferFlag\": \"N\",\r\n            \"tdXferStartTime\": \"2022-07-08T14:00:52Z\",\r\n            \"tdXferEndTime\": \"2022-07-08T14:00:54Z\",\r\n            \"reportSessionId\": 81278,\r\n            \"crmId\": \"crmgenkey_fcf5166b-8d3f-3578-93ee-9a065ad93e51\",\r\n            \"accountName\": \"Britannia\",\r\n            \"personName\": \"key5 Moon\",\r\n            \"phoneNumber\": \"6033860304\",\r\n            \"title\": \"test engineer\",\r\n            \"emailId\": \"moon5@gmail.com\",\r\n            \"callStartTime\": \"2022-04-01T04:00:25Z\",\r\n            \"callDuration\": \"12:00:02\",\r\n            \"callDisposition\": \"Not Interested\",\r\n            \"callComments\": \"-\",\r\n            \"leftVmFlag\": \"N\",\r\n            \"listname\": \"key 6 records.csv\",\r\n            \"callListRecordsPk\": 1602591,\r\n            \"userType\": \"TALKER\",\r\n            \"callRatingComments1\": \"good\",\r\n            \"callRatingScore1\": \"3.5\",\r\n            \"phoneType\": \"phone\",\r\n            \"ratedByUser\": \"Manimegalai\",\r\n            \"ratedByUserId\": 10958,\r\n            \"isCallRatingDone\": \"Y\",\r\n            \"callRecordingUrl\": \"?rt=gcr&crid=0BD7EF0CDF5B1C80A97C54F8E1E01C45E2FE0D12AE467686A324EC977F8C57C9635B1F88B0B932A7E3C41D71A8A98D374252FE7F282333CA\",\r\n            \"isTwoPartyConsentState\": true,\r\n            \"arrowType\": \"SINGLE\",\r\n            \"tag\": [\r\n                \"new tag\"\r\n            ],\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ],\r\n                \"recording\": [\r\n                    {\r\n                        \"id\": \"0BD7EF0CDF5B1C80A97C54F8E1E01C45E2FE0D12AE467686A324EC977F8C57C9635B1F88B0B932A7E3C41D71A8A98D374252FE7F282333CA\"\r\n                    }\r\n                ]\r\n            },\r\n            \"crId\": \"0BD7EF0CDF5B1C80A97C54F8E1E01C45E2FE0D12AE467686A324EC977F8C57C9635B1F88B0B932A7E3C41D71A8A98D374252FE7F282333CA\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"5395251f-2a83-4754-9a9b-807db847af9e"},{"name":"Call Recording","id":"d6fdb579-ad00-42b5-9322-910223be2c84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/callRecordings/:productType/:id","description":"<p>This API used to delete the call recording data</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callRecordings",":productType",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"0f053995-fb97-4540-8b22-29455b0d9113","type":"any","value":"aifd","key":"productType"},{"id":"b549035b-9bb2-42bd-980e-c7994852b6d7","type":"any","value":"4567","key":"id"}]}},"response":[{"id":"e3f3394b-e240-4a6d-8f1a-d4240a14b737","name":"Call Recording","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callRecordings/:productType/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callRecordings",":productType",":id"],"variable":[{"key":"productType","value":"aifd"},{"key":"id","value":"4567"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\":\"success\"\r\n}"}],"_postman_id":"d6fdb579-ad00-42b5-9322-910223be2c84"},{"name":"Call Recording by Id","id":"b8f5238b-1bf4-4677-aead-6c69f7c3d781","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callRecordings/:productType/:id","description":"<p>Get single call recording row based on the product type. Accepted product types are FD, CD, AAD, AIFD, AIPD.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callRecordings",":productType",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"5f026910-3246-466a-a6a2-2964dd70dec1","type":"any","value":"aifd","key":"productType"},{"id":"f97a766e-18d9-492a-bf14-61431b06df97","type":"any","value":"7865","key":"id"}]}},"response":[{"id":"7b6d268e-9141-4581-8f80-d5be2c18fcf4","name":"Call Recording","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callRecordings/:productType/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callRecordings",":productType",":id"],"variable":[{"key":"productType","value":"aifd"},{"key":"id","value":"7865"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 68,\r\n            \"userName\": \"API, Client\",\r\n            \"productId\": \"AIDSL\",\r\n            \"tdTransferFlag\": \"N\",\r\n            \"tdXferStartTime\": \"2022-07-08T14:00:52Z\",\r\n            \"tdXferEndTime\": \"2022-07-08T14:00:54Z\",\r\n            \"reportSessionId\": 81278,\r\n            \"crmId\": \"crmgenkey_fcf5166b-8d3f-3578-93ee-9a065ad93e51\",\r\n            \"accountName\": \"Britannia\",\r\n            \"personName\": \"key5 Moon\",\r\n            \"phoneNumber\": \"6033860304\",\r\n            \"title\": \"test engineer\",\r\n            \"emailId\": \"moon5@gmail.com\",\r\n            \"callStartTime\": \"2022-04-01T04:00:25Z\",\r\n            \"callDuration\": \"12:00:02\",\r\n            \"callDisposition\": \"Not Interested\",\r\n            \"callComments\": \"-\",\r\n            \"leftVmFlag\": \"N\",\r\n            \"listname\": \"key 6 records.csv\",\r\n            \"callListRecordsPk\": 1602591,\r\n            \"userType\": \"TALKER\",\r\n            \"callRatingComments1\": \"good\",\r\n            \"callRatingScore1\": \"3.5\",\r\n            \"phoneType\": \"phone\",\r\n            \"ratedByUser\": \"Manimegalai\",\r\n            \"ratedByUserId\": 10958,\r\n            \"isCallRatingDone\": \"Y\",\r\n            \"callRecordingUrl\": \"?rt=gcr&crid=0BD7EF0CDF5B1C80A97C54F8E1E01C45E2FE0D12AE467686A324EC977F8C57C9635B1F88B0B932A7E3C41D71A8A98D374252FE7F282333CA\",\r\n            \"isTwoPartyConsentState\": true,\r\n            \"arrowType\": \"SINGLE\",\r\n            \"tag\": [\r\n                \"new tag\"\r\n            ],\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ],\r\n                \"recording\": [\r\n                    {\r\n                        \"id\": \"0BD7EF0CDF5B1C80A97C54F8E1E01C45E2FE0D12AE467686A324EC977F8C57C9635B1F88B0B932A7E3C41D71A8A98D374252FE7F282333CA\"\r\n                    }\r\n                ]\r\n            },\r\n            \"crId\": \"0BD7EF0CDF5B1C80A97C54F8E1E01C45E2FE0D12AE467686A324EC977F8C57C9635B1F88B0B932A7E3C41D71A8A98D374252FE7F282333CA\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b8f5238b-1bf4-4677-aead-6c69f7c3d781"},{"name":"Share","id":"5647327f-56e3-49de-b2ee-b3bc7b0b68ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"comments\": \"text\",\r\n    \"sharedTo\": [\r\n        {\r\n            \"id\": 10958\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callRecordings/share/:productType/:id?referrer=https://development.koncert.com","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callRecordings","share",":productType",":id"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"referrer","value":"https://development.koncert.com"}],"variable":[{"id":"23995acf-677d-468f-937b-c7670d578c40","type":"any","value":"aifd","key":"productType"},{"id":"be7f754f-f969-4eef-bf20-ad5edf539111","type":"any","value":"124","key":"id"}]}},"response":[],"_postman_id":"5647327f-56e3-49de-b2ee-b3bc7b0b68ae"},{"name":"Prospect Phrases","id":"a2494331-7624-4c11-be46-88343121f72e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/prospectPhrases","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["prospectPhrases"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"613252af-5ca1-46fd-a868-4e6831d31aa8","name":"Prospect Phrases","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/prospectPhrases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2,\n            \"orgId\": 0,\n            \"callType\": null,\n            \"phraseTag\": \"Not a good timing\",\n            \"phrase\": \"I'm afraid this isn't the right time for us to pursue this opportunity.\",\n            \"score\": -5,\n            \"createdBy\": null,\n            \"modifiedBy\": null,\n            \"createdDateTime\": \"2023-06-27T15:50:52.154509\",\n            \"modifiedDateTime\": \"2023-06-27T15:50:52.154509\"\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 84,\n        \"limit\": 500,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"a2494331-7624-4c11-be46-88343121f72e"},{"name":"Download Recording","id":"e4e1de46-6118-468e-9a97-a754eaf62275","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Koncert-API-Key","value":"","type":"text"}],"url":"https://{{koncert_dialers_api}}/callRecordings/loadRecordings/:productType/:id","description":"<p>Downloads a call recording file for a given product type and recording ID. Returns the audio file as a binary stream (<code>audio/x-wave</code>) with a <code>Content-Disposition</code> header for download.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callRecordings","loadRecordings",":productType",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"type":"any","value":"Dialer Product","key":"productType"},{"type":"any","value":"CallRecording id","key":"id"}]}},"response":[{"id":"49b57673-a521-4a91-b789-62e3370aae74","name":"Download Recording","originalRequest":{"method":"GET","header":[{"key":"X-Koncert-API-Key","value":"1s9uoJ5URG2S1njLfOTmko1pZjwMyD3ttIlopOT0vEbu0XWXblTDI_A1","type":"text"}],"url":"https://{{koncert_dialers_api}}/callRecordings/loadRecordings/AIFD/1331762"},"status":"Partial Content","code":206,"_postman_previewlanguage":"","header":[{"key":"Content-Type","value":"audio/x-wave","description":"","type":"text"},{"key":"Content-Disposition","value":"attachment; filename=fda00dd3-05be-47c5-9338-5d93b58214c3.wav","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"e4e1de46-6118-468e-9a97-a754eaf62275"}],"id":"953c21e0-821f-4b1b-aeba-f014f0fc97f4","description":"<p>To view all the call recordings based on teams, users, call dispositions, products, date range and list name.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary key of the table.</td>\n<td></td>\n</tr>\n<tr>\n<td>sessionDate  <br /><code>Timestamp</code></td>\n<td>Start date of the dialing session.</td>\n<td></td>\n</tr>\n<tr>\n<td>accountName  <br /><code>String</code></td>\n<td>organization name of the prospect.</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>contactName  <br /><code>String</code></td>\n<td>name of the prospect</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>title  <br /><code>String</code></td>\n<td>designation of the prospect</td>\n<td></td>\n</tr>\n<tr>\n<td>callDisposition  <br /><code>String</code></td>\n<td>call result of the connected calls.</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>callComments  <br /><code>String</code></td>\n<td>information of the connected prospect</td>\n<td></td>\n</tr>\n<tr>\n<td>productType  <br /><code>String</code></td>\n<td>Type of the dialing product</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>phone  <br /><code>String</code></td>\n<td>Number of the phone</td>\n<td></td>\n</tr>\n<tr>\n<td>callDuration  <br /><code>String</code></td>\n<td>Duration of the connected calls</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>isCallRatingDone  <br /><code>String</code></td>\n<td>To show the call is rated or not</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingUrl  <br /><code>String</code></td>\n<td>get the recorded calls</td>\n<td></td>\n</tr>\n<tr>\n<td>listName  <br /><code>String</code></td>\n<td>to find prospects is called from which list</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"953c21e0-821f-4b1b-aeba-f014f0fc97f4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"CallerID","item":[{"name":"Settings","item":[{"name":"Settings","id":"3fb5b3cf-4311-4dda-ba1d-faf32579770d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callerIdSettings","description":"<p>Get callerID settings data based on the org.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdSettings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"ac33da7b-6605-438f-8176-7101c6f7b5b9","name":"Settings","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callerIdSettings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1084,\n            \"callsPerCallerIdDuration\": \"1 days\",\n            \"notificationInterval\": \"15 minutes\",\n            \"useOrgDataForCallerIdSort\": true,\n            \"sortInterval\": \"15 minutes\",\n            \"lastNotifiedDateTime\": null,\n            \"callerIdNotificationsPurgeInterval\": \"30 days\",\n            \"maxCallsPerCallerId\": 3000,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"3fb5b3cf-4311-4dda-ba1d-faf32579770d"},{"name":"Settings","id":"b099104e-81b3-4000-8c8a-bb8fc4860de8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callsPerCallerIdDuration\": \"1 days\",\r\n    \"notificationInterval\": \"15 minutes\",\r\n    \"maxCallsPerCallerId\": 200\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIdSettings","description":"<p>This request used to update callerID settings.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdSettings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"d27873e6-5f18-4ef3-8d7f-101bcc52bace","name":"Settings","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callsPerCallerIdDuration\": \"1 days\",\r\n    \"notificationInterval\": \"15 minutes\",\r\n    \"maxCallsPerCallerId\": 200\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIdSettings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 1084,\r\n            \"callsPerCallerIdDuration\": \"1 days\",\r\n            \"notificationInterval\": \"15 minutes\",\r\n            \"useOrgDataForCallerIdSort\": true,\r\n            \"sortInterval\": \"15 minutes\",\r\n            \"lastNotifiedDateTime\": null,\r\n            \"callerIdNotificationsPurgeInterval\": \"30 days\",\r\n            \"maxCallsPerCallerId\": 200,\r\n            \"associations\": {\r\n                \"org\": [\r\n                    {\r\n                        \"id\": 2355\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b099104e-81b3-4000-8c8a-bb8fc4860de8"},{"name":"user permission to purchase callerid","id":"e9178f4e-7493-4899-a06d-cf383523fc2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n        \"purchaseCustomCallerIds\": true\r\n}\r\n    ","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/users/:id","description":"<p>This used to provide permission to the users to purchase custom caller ids</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"867c7c53-f265-4b3c-883c-6508cae0880d","type":"any","value":null,"key":"id"}]}},"response":[{"id":"0331749d-0953-481c-b3eb-976fffde510f","name":"user permission to purchase callerid","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": 10958,\r\n        \"purchaseCustomCallerIds\": true\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/users/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["users",":id"],"variable":[{"key":"id","value":"10958"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 10958,\r\n            \"sfUserId\": \"STD-28253\",\r\n            \"name\": \"Manimegalai\",\r\n            \"userType\": null,\r\n            \"loginName\": \"apiuser24\",\r\n            \"emailId\": \"manimegalaieeesjce@outlook.com\",\r\n            \"userLicense\": \"TD,PD,CD,TC,AIDML,AIDSL\",\r\n            \"startUpPageShowFlag\": \"Y\",\r\n            \"reportFolder\": \"Connect Leader\",\r\n            \"talkerSessionMode\": \"macro\",\r\n            \"timeZone\": \"America/New_York\",\r\n            \"talkerAgentType\": \"Level 1\",\r\n            \"talkerPhoneType\": \"SIP\",\r\n            \"transferPacingPerHour\": 7,\r\n            \"prioritizationDelayMinutes\": 0,\r\n            \"transferUrl\": \"\",\r\n            \"isManagerUser\": \"N\",\r\n            \"lastProductType\": \"PD\",\r\n            \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\r\n            \"rcUrl\": \"https://dev.koncert.com/remotecoach/rcserver\",\r\n            \"bullhornUserType\": \"Sales\",\r\n            \"isSimulatorUser\": \"N\",\r\n            \"allowCallMeJoinConference\": \"Y\",\r\n            \"phoneNumber\": \"\",\r\n            \"isInternalUser\": \"N\",\r\n            \"isActive\": \"Y\",\r\n            \"callRecordingEnabledByManager\": \"Y\",\r\n            \"callRecordingUserPermission\": \"NYN\",\r\n            \"callRecordingEnabledByUser\": \"Y\",\r\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n            \"enableScheduleCheck\": \"Y\",\r\n            \"isAdminUser\": \"Y\",\r\n            \"allowAdaptilytics\": \"Y\",\r\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n            \"allowDataEnrichment\": \"N\",\r\n            \"allowModifyDataEnrichmentSettings\": \"N\",\r\n            \"token\": null,\r\n            \"cdPhoneMinutesUsed\": 0.00,\r\n            \"showAccountsBy\": null,\r\n            \"isTrucadenceLeftmenuExpanded\": true,\r\n            \"accessTokenCreatedAt\": null,\r\n            \"accessTokenExpiresIn\": null,\r\n            \"outreachUserId\": null,\r\n            \"lastExecutedDataListIds\": null,\r\n            \"hasCreateEmailTemplate\": true,\r\n            \"hasCreateCadence\": true,\r\n            \"salesloftUserId\": null,\r\n            \"salesloftGuid\": null,\r\n            \"showLeadScorePopup\": \"Y\",\r\n            \"remoteCoachCallListenUsers\": [],\r\n            \"remoteCoachCallListen\": false,\r\n            \"createdBy\": \"cl master\",\r\n            \"modifiedBy\": \"cl master\",\r\n            \"createdDate\": \"2022-08-18T03:52:59.000+00:00\",\r\n            \"modifiedDate\": \"2023-02-22T06:44:30.000+00:00\",\r\n            \"zipwhipSessionKey\": null,\r\n            \"regionId\": \"EU_WEST_1\",\r\n            \"firstName\": null,\r\n            \"lastName\": null,\r\n            \"isCreateAddProspect\": true,\r\n            \"defaultActivityFilter\": \"all\",\r\n            \"auth0Id\": \"auth0|62fe04f2e6af28270479963b\",\r\n            \"displayName\": \"Manimegalai\",\r\n            \"crmtemplateLoadingPage\": \"mysession\",\r\n            \"allowUserToeditListUploadedByManager\": \"Y\",\r\n            \"disableDialingSession\": false,\r\n            \"workStartHour\": null,\r\n            \"workEndHour\": null,\r\n            \"isEmailPreviewEnabled\": true,\r\n            \"emailFontFace\": \"Arial\",\r\n            \"emailFontSize\": 14,\r\n            \"defaultCadenceWidgets\": null,\r\n            \"callmecountrycodeprefixed\": false,\r\n            \"defaultManager\": -1,\r\n            \"fallthroughPendingCalls\": false,\r\n            \"sendEmailOnSessionStart\": false,\r\n            \"location\": \"-1\",\r\n            \"openExternalLinksInNewWindow\": true,\r\n            \"hubspotUserId\": null,\r\n            \"apiEnabled\": false,\r\n            \"exportProspects\": false,\r\n            \"allowSwitchingBetweenGeoLocations\": \"false\",\r\n            \"isFirstTimeUser\": false,\r\n            \"notes\": \"\",\r\n            \"lockDownDialingInstructions\": false,\r\n            \"customCallerIds\": \"+19282326166 [US],+16033860304 [US],+14793091376 [US],+44123456789000000 [GB]\",\r\n            \"purchaseCustomCallerIds\": true,\r\n            \"purchasePrivilegeGivenBy\": \"API Client Manager\",\r\n            \"fallthroughTodo\": true,\r\n            \"gongUserId\": null,\r\n            \"enableCrmEmailIcon\": false,\r\n            \"salesloftAccessToken\": null,\r\n            \"salesloftAccessTokenCreatedAt\": null,\r\n            \"salesloftAccessTokenExpiresIn\": null,\r\n            \"salesloftRefreshToken\": null,\r\n            \"salesloftVerifiedFlag\": false,\r\n            \"outreachAccessToken\": null,\r\n            \"outreachAccessTokenCreatedAt\": null,\r\n            \"outreachAccessTokenExpiresIn\": null,\r\n            \"outreachRefreshToken\": null,\r\n            \"outreachVerifiedFlag\": false,\r\n            \"thirdPartyInstanceUrl\": null,\r\n            \"allowMultiEmailAccounts\": true\r\n        }\r\n    ]\r\n}"}],"_postman_id":"e9178f4e-7493-4899-a06d-cf383523fc2b"},{"name":"User pemission to multiple users","id":"2c87706f-3bc0-41f7-b61e-ad548a84458a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": 10958,\r\n        \"purchaseCustomCallerIds\": true\r\n    },\r\n    {\r\n        \"id\": 7424,\r\n        \"purchaseCustomCallerIds\": false\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c87706f-3bc0-41f7-b61e-ad548a84458a"}],"id":"6651754b-ec62-4d29-afc4-e140be702f7e","description":"<p>This folder used to update caller id settings data.</p>\n","_postman_id":"6651754b-ec62-4d29-afc4-e140be702f7e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Custom","item":[{"name":"CallerID's","id":"2a253ec4-a543-4dc0-8253-67a25829aada","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/customCallerId","description":"<p>This request used to get all the custom callerids based on the org.</p>\n<p>StartFragmentStartFragmentEndFragment</p>\n<p>EndFragmen</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary key of the data</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>callerId  <br /><code>String</code></td>\n<td>callerId value</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>twilioSid  <br /><code>String</code></td>\n<td>unique id from twili</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>isActive  <br /><code>Boolean</code></td>\n<td>used to check valid or not</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>Timestamp</code></td>\n<td>created date time</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>country  <br /><code>IncludeAssociation</code></td>\n<td>having country details</td>\n<td><code>IncludableAssociation</code></td>\n</tr>\n<tr>\n<td><code>user   IncludeAssociation</code></td>\n<td>assigned user ids</td>\n<td><code>IncludableAssociation</code></td>\n</tr>\n<tr>\n<td>createdBy  <br /><code>IncludeAssociation</code></td>\n<td>created user</td>\n<td><code>IncludableAssociation</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["customCallerId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"0dd66267-8251-45fd-aaf8-ec54828ad9d8","name":"CallerID's","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/customCallerId"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 875,\r\n            \"callerId\": 442083423890,\r\n            \"twilioSid\": null,\r\n            \"userIds\": [\r\n                7660\r\n            ],\r\n            \"associations\": {\r\n                \"country\": [\r\n                    {\r\n                        \"id\": 227\r\n                    }\r\n                ],\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ],\r\n                \"createdByUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            },\r\n            \"isActive\": true,\r\n            \"createdDate\": \"2022-08-18T08:50:47\"\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 18,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"2a253ec4-a543-4dc0-8253-67a25829aada"},{"name":"CallerID","id":"f13833b6-7146-41f7-88c6-fc5543f06d71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/customCallerId/:id","description":"<p>This request used to delete custom caller ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["customCallerId",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"d67ac3a6-1b96-4d38-aa46-091f8fb4954f","type":"any","value":"10958","key":"id"}]}},"response":[{"id":"11540bc4-a3f4-4345-a2be-4cdb11624fcd","name":"CallerID","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/customCallerId/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["customCallerId",":id"],"variable":[{"key":"id","value":"10958"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"f13833b6-7146-41f7-88c6-fc5543f06d71"},{"name":"CallerID Assigned","id":"d90a7c06-88d5-4171-bf27-2ccdfd30723c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/customCallerId/assigned","description":"<p>This request used to get assigned callerIDs for current user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["customCallerId","assigned"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7884d006-b3c6-44e2-961c-94a5f7bcaf5e","name":"CallerID Assigned","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/customCallerId/assigned"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 948,\r\n            \"callerId\": 7866666568,\r\n            \"twilioSid\": null,\r\n            \"userIds\": [\r\n                7661,\r\n                7424,\r\n                7660,\r\n                8276,\r\n                7844,\r\n                7432,\r\n                7662,\r\n                7951,\r\n                7910,\r\n                10358,\r\n                9597,\r\n                9595,\r\n                11264,\r\n                11053,\r\n                10958,\r\n                9775,\r\n                9593,\r\n                10306,\r\n                10795,\r\n                10919,\r\n                10976,\r\n                9596,\r\n                11310,\r\n                9479\r\n            ],\r\n            \"associations\": {\r\n                \"country\": [\r\n                    {\r\n                        \"id\": 228\r\n                    }\r\n                ],\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    },\r\n                    {\r\n                        \"id\": 7424\r\n                    },\r\n                    {\r\n                        \"id\": 7660\r\n                    },\r\n                    {\r\n                        \"id\": 8276\r\n                    },\r\n                    {\r\n                        \"id\": 7844\r\n                    },\r\n                    {\r\n                        \"id\": 7432\r\n                    },\r\n                    {\r\n                        \"id\": 7662\r\n                    },\r\n                    {\r\n                        \"id\": 7951\r\n                    },\r\n                    {\r\n                        \"id\": 7910\r\n                    },\r\n                    {\r\n                        \"id\": 10358\r\n                    },\r\n                    {\r\n                        \"id\": 9597\r\n                    },\r\n                    {\r\n                        \"id\": 9595\r\n                    },\r\n                    {\r\n                        \"id\": 11264\r\n                    },\r\n                    {\r\n                        \"id\": 11053\r\n                    },\r\n                    {\r\n                        \"id\": 10958\r\n                    },\r\n                    {\r\n                        \"id\": 9775\r\n                    },\r\n                    {\r\n                        \"id\": 9593\r\n                    },\r\n                    {\r\n                        \"id\": 10306\r\n                    },\r\n                    {\r\n                        \"id\": 10795\r\n                    },\r\n                    {\r\n                        \"id\": 10919\r\n                    },\r\n                    {\r\n                        \"id\": 10976\r\n                    },\r\n                    {\r\n                        \"id\": 9596\r\n                    },\r\n                    {\r\n                        \"id\": 11310\r\n                    },\r\n                    {\r\n                        \"id\": 9479\r\n                    }\r\n                ],\r\n                \"createdByUser\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ]\r\n            },\r\n            \"isActive\": true,\r\n            \"createdDate\": \"2022-10-17T13:51:13\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"d90a7c06-88d5-4171-bf27-2ccdfd30723c"},{"name":"CallerID","id":"74114cd2-bc03-4cdf-a90b-8fb97883a9cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callerId\": 87676767688,\r\n    \"country\": {\r\n        \"countryCodeId\": 228\r\n    },\r\n    \"users\": [\r\n        {\r\n            \"id\": 7431\r\n        },\r\n        {\r\n            \"id\": 7661\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/customCallerId","description":"<p>This request used to create custom caller ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["customCallerId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"223a956f-929b-48d3-b464-0d933787cc98","name":"input","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callerId\": 87676767688,\r\n    \"country\": {\r\n        \"countryCodeId\": 228\r\n    },\r\n    \"users\": [\r\n        {\r\n            \"id\": 7431\r\n        },\r\n        {\r\n            \"id\": 7661\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/customCallerId"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 875,\r\n            \"callerId\": \"(546) 546-5468\",\r\n            \"twilioSid\": null,\r\n            \"userIds\": [\r\n                7431,7660\r\n            ],\r\n            \"associations\": {\r\n                \"country\": [\r\n                    {\r\n                        \"id\": 227\r\n                    }\r\n                ],\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ],\r\n                \"createdByUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            },\r\n            \"isActive\": true,\r\n            \"createdDate\": \"2022-08-18T08:50:47\"\r\n        }\r\n        ]\r\n        }"}],"_postman_id":"74114cd2-bc03-4cdf-a90b-8fb97883a9cf"},{"name":"Countries","id":"c2fc7925-1bcc-4599-94d4-e8f9f26f203e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/countryCode","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["countryCode"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c2fc7925-1bcc-4599-94d4-e8f9f26f203e"}],"id":"5c048fb0-929c-4c31-a6a3-e812ff20a1b8","description":"<p>This forlder is having custom callerID's related CURD operations.</p>\n","_postman_id":"5c048fb0-929c-4c31-a6a3-e812ff20a1b8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Group","item":[{"name":"CallerID","id":"1f951cf0-1495-4704-809c-66310e74d9cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callerIdGroup","description":"<p>This request used to fetch all the caller id groups in the org.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary key value</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>name oof the callerIdGroup</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>timestamp</code></td>\n<td>date of created</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedDate  <br /><code>timestamp</code></td>\n<td>date of modified</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>createdBy  <br /><code>String</code></td>\n<td>name of the created user</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedBy  <br /><code>String</code></td>\n<td>name of the modified user</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdGroup"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"2929a4fd-39bb-476a-a2bc-e03c3313a5c3","name":"CallerID","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callerIdGroup"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 2100,\r\n            \"name\": \"12345\",\r\n            \"createdDate\": \"2022-04-20T08:16:26.176981\",\r\n            \"modifiedDate\": \"2023-03-13T09:50:23.583896\",\r\n            \"createdBy\": \"API Client Manager\",\r\n            \"modifiedBy\": \"Manimegalai\",\r\n            \"isDefault\": true\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 3,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"1f951cf0-1495-4704-809c-66310e74d9cc"},{"name":"CallerID","id":"f8f563e6-28c8-4760-80f7-4e1bb7caae32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callerIdGroup/:id","description":"<p>This request used to get single callerIdGroup</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdGroup",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"897510d6-6d60-48b9-bad4-b71f5ffc6809","type":"any","value":"5677","key":"id"}]}},"response":[{"id":"53914050-4003-4073-a0ca-7ef3112bf31f","name":"CallerID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callerIdGroup/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callerIdGroup",":id"],"variable":[{"key":"id","value":"5677"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 3374,\r\n            \"name\": \"megalai API test1\",\r\n            \"createdDate\": \"2023-03-28T13:22:25\",\r\n            \"modifiedDate\": \"2023-03-28T13:24:32\",\r\n            \"createdBy\": \"API Client Manager\",\r\n            \"modifiedBy\": \"API Client Manager\",\r\n            \"isDefault\": true\r\n        }\r\n    ]\r\n}"}],"_postman_id":"f8f563e6-28c8-4760-80f7-4e1bb7caae32"},{"name":"CallerID","id":"33dc5f4e-351f-497e-a8bc-4c5a540e0cef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/callerIdGroup/:Id","description":"<p>This request used to delete the callerId group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdGroup",":Id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"84f35cca-b22e-4d96-a0d3-dc5ae37f6f0f","type":"any","value":null,"key":"Id"}]}},"response":[{"id":"a19835c0-9ff9-40b8-ab09-277387d984f0","name":"CallerID","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callerIdGroup/:Id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callerIdGroup",":Id"],"variable":[{"key":"Id","value":"544"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"33dc5f4e-351f-497e-a8bc-4c5a540e0cef"},{"name":"CallerID","id":"a036fadb-e903-49db-b10e-b590cdb264c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/callerIdGroup","description":"<p>This request used to create the callerid group</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdGroup"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7f9c233d-35c6-4849-9a13-490cd5b9c886","name":"CallerID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"megalai API test\",\r\n    \"isDefault\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIdGroup"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 3374,\r\n            \"name\": \"megalai API test\",\r\n            \"createdDate\": \"2023-03-28T13:22:25\",\r\n            \"modifiedDate\": \"2023-03-28T13:22:25\",\r\n            \"createdBy\": \"API Client Manager\",\r\n            \"modifiedBy\": null,\r\n            \"isDefault\": true\r\n        }\r\n    ]\r\n}"}],"_postman_id":"a036fadb-e903-49db-b10e-b590cdb264c4"},{"name":"CallerID","id":"86453451-b077-4bf7-80fd-9dce573c2a06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/callerIdGroup/:id","description":"<p>Thiss request used to update the callerId group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdGroup",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"1bd52888-e2bc-4735-808d-9bbf031a8080","type":"any","value":null,"key":"id"}]}},"response":[{"id":"adda0e15-e96f-46ac-9ab8-7b5f79aa63c0","name":"CallerID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"megalai API test\",\r\n    \"isDefault\": true\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/callerIdGroup/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callerIdGroup",":id"],"variable":[{"key":"id","value":"4454"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 3374,\r\n            \"name\": \"megalai API test\",\r\n            \"createdDate\": \"2023-03-28T13:22:25\",\r\n            \"modifiedDate\": \"2023-03-28T13:22:25\",\r\n            \"createdBy\": \"API Client Manager\",\r\n            \"modifiedBy\": null,\r\n            \"isDefault\": true\r\n        }\r\n    ]\r\n}"}],"_postman_id":"86453451-b077-4bf7-80fd-9dce573c2a06"},{"name":"Upload","id":"def7b94b-9a6b-4e34-8452-5f73b7440099","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/callerIdGroup/upload/:callerIdGroupId?file={{selected file}}","description":"<p>This request used to upload callerids.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdGroup","upload",":callerIdGroupId"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"file","value":"{{selected file}}"}],"variable":[{"id":"5ee7c8f0-cb21-4428-9656-0eb5bbeda650","type":"any","value":"647","key":"callerIdGroupId"}]}},"response":[],"_postman_id":"def7b94b-9a6b-4e34-8452-5f73b7440099"},{"name":"Signed key","id":"60159ebe-099d-4aca-8761-665b1b1bd4ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callerIdGroup\": {\r\n        \"id\": 786\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/callerId/export","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["sign","callerId","export"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"33f44ef3-5b89-4889-ba77-1e2f7bae808c","name":"Signed key","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callerIdGroup\": {\r\n        \"id\": 786\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/callerId/export"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"key\": \"6E0816EE4615E030058D68093AAD8879FB2C389C48C3ECDE345FFEBB557BBD7CFD776605B6E6B7C3C1FADA4E355D897C1EBB67477A1A3A4D\",\n            \"na\": \"4408FD89F4A9D7B7A1525F40B7763A4A01F053461C98D170C8A135703399E894\"\n        }\n    ]\n}"}],"_postman_id":"60159ebe-099d-4aca-8761-665b1b1bd4ff"},{"name":"Export","id":"4fb2324b-92a0-4487-8d5b-94f2d0e63cd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/callerId/export/{{signedKey}}?na={{naParams}}","description":"<p>This request used to export callerid list</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["public","callerId","export","{{signedKey}}"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"na","value":"{{naParams}}"}],"variable":[]}},"response":[],"_postman_id":"4fb2324b-92a0-4487-8d5b-94f2d0e63cd3"}],"id":"e7a6ecaf-741a-4889-829d-e82fe2322066","description":"<p>This folder contains CURD operations of CallerID Group</p>\n","_postman_id":"e7a6ecaf-741a-4889-829d-e82fe2322066","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Mapping data","item":[{"name":"All WhitelistLookup","id":"22fa8545-e86a-4803-8f7d-f6f5c584151a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/whiteListPhoneLookup?filter[callerIdGroupId][id]=647","description":"<p>This request used to all the areacodes data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["whiteListPhoneLookup"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[callerIdGroupId][id]","value":"647"}],"variable":[]}},"response":[{"id":"f15c1337-5f71-40e5-96a8-1434cc5c4758","name":"All WhitelistLookup","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/whiteListPhoneLookup?filter[callerIdGroupId][id]=647","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["whiteListPhoneLookup"],"query":[{"key":"filter[callerIdGroupId][id]","value":"647"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 2024066,\r\n            \"countryCode\": \"1\",\r\n            \"areaCode\": \"928\",\r\n            \"locationName\": \"Arizona\",\r\n            \"locationGroupName\": \"United States Landline\",\r\n            \"tdCallRatePerMinute\": 0,\r\n            \"callerIdGroup\": \"(938) 253-9185,(928) 754-8951,(928) 916-5872\",\r\n            \"pdCallRatePerMinute\": 0,\r\n            \"twoPartyConsentStateFlag\": \"N\",\r\n            \"timezone\": \"PST\",\r\n            \"fileName\": null,\r\n            \"updatedDateTime\": \"2023-04-04T04:12:51.282817\",\r\n            \"minNoOfCallerIds\": 2,\r\n            \"maxNoOfCallerIds\": 20,\r\n            \"noOfCallsAllowed\": 125,\r\n            \"noOfCallerIdsAllowed\": null,\r\n            \"fdEnabled\": true,\r\n            \"aadEnabled\": true,\r\n            \"cdEnabled\": true,\r\n            \"aifdEnabled\": true,\r\n            \"aipdEnabled\": true,\r\n            \"enabledBy\": null,\r\n            \"enabledDate\": null,\r\n            \"associations\": {\r\n                \"callerIdGroup\": [\r\n                    {\r\n                        \"id\": 647\r\n                    }\r\n                ],\r\n                \"callerIdPurchaseLog\": [\r\n                    {\r\n                        \"id\": 1237\r\n                    },\r\n                    {\r\n                        \"id\": 1407\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"22fa8545-e86a-4803-8f7d-f6f5c584151a"},{"name":"whitelist","id":"1ad905b0-1c3e-473d-8f85-8c54c7d7d9b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": 2024066,\r\n        \"callerIdGroup\": \"(956)876-9087,(938) 876-1234,(938) 253-9185,(928) 754-8951,(928) 916-5872\"\r\n    },\r\n    {\r\n        \"id\": 2024906,\r\n        \"callerIdGroup\": \"(956)876-9087,(938) 876-1234,(938) 253-9185,(928) 754-8951,(928) 916-5872\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/whiteListPhoneLookup","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["whiteListPhoneLookup"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"833644ee-8463-42a2-93db-af68c1c8c602","name":"whitelist","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": 2024066,\r\n        \"callerIdGroup\": \"(956)876-9087,(938) 876-1234,(938) 253-9185,(928) 754-8951,(928) 916-5872\"\r\n    },\r\n    {\r\n        \"id\": 2024906,\r\n        \"callerIdGroup\": \"(956)876-9087,(938) 876-1234,(938) 253-9185,(928) 754-8951,(928) 916-5872\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/whiteListPhoneLookup"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 2024066,\r\n            \"countryCode\": \"1\",\r\n            \"areaCode\": \"928\",\r\n            \"locationName\": \"Arizona\",\r\n            \"locationGroupName\": \"United States Landline\",\r\n            \"tdCallRatePerMinute\": 0,\r\n            \"callerIdGroup\": \"(956)876-9087,(938) 876-1234,(938) 253-9185,(928) 754-8951,(928) 916-5872\",\r\n            \"pdCallRatePerMinute\": 0,\r\n            \"twoPartyConsentStateFlag\": \"N\",\r\n            \"timezone\": \"PST\",\r\n            \"fileName\": null,\r\n            \"updatedDateTime\": \"2023-04-06T07:47:04\",\r\n            \"minNoOfCallerIds\": 2,\r\n            \"maxNoOfCallerIds\": 20,\r\n            \"noOfCallsAllowed\": 125,\r\n            \"noOfCallerIdsAllowed\": null,\r\n            \"fdEnabled\": true,\r\n            \"aadEnabled\": true,\r\n            \"cdEnabled\": true,\r\n            \"aifdEnabled\": true,\r\n            \"aipdEnabled\": true,\r\n            \"enabledBy\": null,\r\n            \"enabledDate\": null,\r\n            \"associations\": {\r\n                \"callerIdGroup\": [\r\n                    {\r\n                        \"id\": 647\r\n                    }\r\n                ],\r\n                \"callerIdPurchaseLog\": [\r\n                    {\r\n                        \"id\": 1237\r\n                    },\r\n                    {\r\n                        \"id\": 1407\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"1ad905b0-1c3e-473d-8f85-8c54c7d7d9b9"}],"id":"91e70eda-a752-46d2-b672-0efe96d74a1a","_postman_id":"91e70eda-a752-46d2-b672-0efe96d74a1a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Locations","id":"96d81558-dc1c-43f8-926b-51f2237dec61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/masterWhiteListPhoneLookup/locations","description":"<p>This request used to get location details to purchase twilio callerids.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["masterWhiteListPhoneLookup","locations"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"8f404c61-3152-4a7d-a6b3-066f00c817ab","name":"Locations","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/masterWhiteListPhoneLookup/locations"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"locationGroupName\": \"United States Landline\",\r\n            \"stateName\": \"Connecticut\",\r\n            \"areaCode\": \"959\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"96d81558-dc1c-43f8-926b-51f2237dec61"},{"name":"Heat map","id":"36efb2c3-71a0-48d0-9f43-17df127671bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callerIdPurchaseLog/heatMap/:callerIdGroupId","description":"<p>This request used to show heat map details for callerIDGroup.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdPurchaseLog","heatMap",":callerIdGroupId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"57174093-a05a-442b-a6d1-1f06c371cbe8","type":"any","value":"647","key":"callerIdGroupId"}]}},"response":[{"id":"420b72f6-a59f-4c9b-84c1-b75b59c72269","name":"Heat map","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callerIdPurchaseLog/heatMap/:callerIdGroupId","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callerIdPurchaseLog","heatMap",":callerIdGroupId"],"variable":[{"key":"callerIdGroupId","value":"647"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"state\": \"Arizona\",\r\n            \"areaCode\": \"928\",\r\n            \"callerId\": \"(928) 754-8951\",\r\n            \"callsPerCallerId\": 0,\r\n            \"maxCallsPerCallerId\": 3000\r\n        }\r\n    ]\r\n}"}],"_postman_id":"36efb2c3-71a0-48d0-9f43-17df127671bd"},{"name":"From twilio","id":"e5cdd4ec-3272-4d96-b53a-01b506282990","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/purchaseCallerId/local-phone-numbers?searchByState=true&areaCodes=479&state=AR&locationGroupName=United States Landline","description":"<p>This request used to get callerids from twilio.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["purchaseCallerId","local-phone-numbers"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"searchByState","value":"true"},{"key":"areaCodes","value":"479"},{"key":"state","value":"AR"},{"key":"locationGroupName","value":"United States Landline"}],"variable":[]}},"response":[{"id":"cb5870dd-4d9f-48f8-809f-7a59b689ac6a","name":"From twilio","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/purchaseCallerId/local-phone-numbers?searchByState=true&areaCodes=479&state=AR&locationGroupName=United States Landline","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["purchaseCallerId","local-phone-numbers"],"query":[{"key":"searchByState","value":"true"},{"key":"areaCodes","value":"479"},{"key":"state","value":"AR"},{"key":"locationGroupName","value":"United States Landline"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"name\": \"(479) 309-3193\",\r\n            \"phoneNumber\": \"+14793093193\",\r\n            \"postalCode\": \"72945\",\r\n            \"locality\": \"Midland\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"e5cdd4ec-3272-4d96-b53a-01b506282990"},{"name":"Generate code","id":"78b1fee6-7f27-4663-b8a9-86a5a1b1579f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"205\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"Custom Caller Id\",\r\n            \"gCallerIdType\": \"mapped\",\r\n            \"id\": 2023801,\r\n            \"selectedCallerIds\": [\r\n                \"+12059474618\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/purchaseCallerId/generate-transaction-code","description":"<p>This gequest used to generate transaction code to purchase callerid.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["purchaseCallerId","generate-transaction-code"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"93fe5f79-5a40-4aab-835d-d3109d82848b","name":"custom","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"205\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"Custom Caller Id\",\r\n            \"gCallerIdType\": \"custom\",\r\n            \"id\": 2023801,\r\n            \"selectedCallerIds\": [\r\n                \"+12058985871\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/purchaseCallerId/generate-transaction-code"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"},{"id":"4e660bd9-ec9a-472e-a5a4-f45a0b5c932e","name":"mapped","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"205\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"test\",\r\n            \"gCallerIdType\": \"mapped\",\r\n            \"id\": 2023801,\r\n            \"selectedCallerIds\": [\r\n                \"+12059474618\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/purchaseCallerId/generate-transaction-code"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"78b1fee6-7f27-4663-b8a9-86a5a1b1579f"},{"name":"Validate code","id":"fb522025-9c8e-4f00-a4cd-3c42dd2f1d6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"205\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"Custom Caller Id\",\r\n            \"gCallerIdType\": \"custom\",\r\n            \"id\": 2023801,\r\n            \"selectedCallerIds\": [\r\n                \"+12058985871\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/purchaseCallerId/validate-transaction-code?transactionCode=JrVIw59B&mapToOtherAreaCodes=Alabama&gCallerIdType=mapped","description":"<p>This request used to validate transaction code and purchase callerid fom twilio.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["purchaseCallerId","validate-transaction-code"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"transactionCode","value":"JrVIw59B"},{"key":"mapToOtherAreaCodes","value":"Alabama"},{"key":"gCallerIdType","value":"mapped"}],"variable":[]}},"response":[{"id":"6dae9623-ae4f-4094-ae3c-bd349e217aa0","name":"custom","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"205\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"Custom Caller Id\",\r\n            \"gCallerIdType\": \"custom\",\r\n            \"id\": 2023801,\r\n            \"selectedCallerIds\": [\r\n                \"+12058985871\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/purchaseCallerId/validate-transaction-code?transactionCode=JrVIw59B&mapToOtherAreaCodes=Alabama&gCallerIdType=mapped","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["purchaseCallerId","validate-transaction-code"],"query":[{"key":"transactionCode","value":"JrVIw59B"},{"key":"mapToOtherAreaCodes","value":"Alabama"},{"key":"gCallerIdType","value":"mapped"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n            \"cartData\": [\r\n                {\r\n                    \"areaCode\": \"205\",\r\n                    \"callerIdGroup\": {\r\n                        \"id\": 647\r\n                    },\r\n                    \"callerIdGroupName\": \"Custom Caller Id\",\r\n                    \"gCallerIdType\": \"custom\",\r\n                    \"id\": 2023801,\r\n                    \"selectedCallerIds\": [\r\n                        \"+12058985871\"\r\n                    ],\r\n                    \"state\": \"Alabama\",\r\n                    \"purchaseSuccess\": [\r\n                        {\r\n                            \"sid\": \"PNbf6329c697fcd5920ae1e22f5723ea47\",\r\n                            \"phoneNumber\": \"+12058985871\",\r\n                            \"formattedPhoneNumber\": \"(205) 898-5871\",\r\n                            \"accountSid\": \"AC4a3d2cc0b101bf178aeaaee01e14bd44\",\r\n                            \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n                            \"userIds\": 7424,\r\n                            \"country\": \"US\"\r\n                        }\r\n                    ],\r\n                    \"purchaseFail\": []\r\n                }\r\n            ],\r\n            \"user\": [\r\n                {\r\n                    \"id\": 7424\r\n                },\r\n                {\r\n                    \"id\": 7660\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"},{"id":"2c4ad6b5-6d43-49ff-8550-d32133c7af03","name":"mapped","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"205\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"test\",\r\n            \"gCallerIdType\": \"mapped\",\r\n            \"id\": 2023801,\r\n            \"selectedCallerIds\": [\r\n                \"+12058985871\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/purchaseCallerId/validate-transaction-code?transactionCode=JrVIw59B&mapToOtherAreaCodes=Alabama&gCallerIdType=mapped","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["purchaseCallerId","validate-transaction-code"],"query":[{"key":"transactionCode","value":"JrVIw59B"},{"key":"mapToOtherAreaCodes","value":"Alabama"},{"key":"gCallerIdType","value":"mapped"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n            \"cartData\": [\r\n                {\r\n                    \"areaCode\": \"205\",\r\n                    \"callerIdGroup\": {\r\n                        \"id\": 647\r\n                    },\r\n                    \"callerIdGroupName\": \"test\",\r\n                    \"gCallerIdType\": \"mapped\",\r\n                    \"id\": 2023801,\r\n                    \"selectedCallerIds\": [\r\n                        \"+12058985871\"\r\n                    ],\r\n                    \"state\": \"Alabama\",\r\n                    \"purchaseSuccess\": [\r\n                        {\r\n                            \"sid\": \"PNbf6329c697fcd5920ae1e22f5723ea47\",\r\n                            \"phoneNumber\": \"+12058985871\",\r\n                            \"formattedPhoneNumber\": \"(205) 898-5871\",\r\n                            \"accountSid\": \"AC4a3d2cc0b101bf178aeaaee01e14bd44\",\r\n                            \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n                            \"userIds\": 7424,\r\n                            \"country\": \"US\"\r\n                        }\r\n                    ],\r\n                    \"purchaseFail\": []\r\n                }\r\n            ],\r\n            \"user\": [\r\n                {\r\n                    \"id\": 7424\r\n                },\r\n                {\r\n                    \"id\": 7660\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"fb522025-9c8e-4f00-a4cd-3c42dd2f1d6f"},{"name":"Purchase List","id":"82b2c11d-143f-443f-b1c1-c308d13457e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callerIdPurchaseLog/list?page[limit]=25&filter[callerIdGroup][id]=647&filter[isReleased]=false","description":"<p>This request fetch purchased details.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary key value of the data</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>purchasedDateTime  <br /><code>timestamp</code></td>\n<td>Datetime of the purchase</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>phoneNumber  <br /><code>String</code></td>\n<td>purchase number</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>formattedPhoneNumber  <br /><code>String</code></td>\n<td>formatted phone number</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>callForwardPhoneNumber  <br /><code>String</code></td>\n<td>number used to forward calls</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>sid  <br /><code>String</code></td>\n<td>unique id of callerid from twilio</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>areaCode  <br /><code>String</code></td>\n<td>areacode of the callerid</td>\n<td><code>Filterable   </code>Sortable</td>\n</tr>\n<tr>\n<td>locationName  <br /><code>String</code></td>\n<td>name of the state</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>releasedDateTime  <br /><code>timestamp</code></td>\n<td>releasedDate time of the callerid</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>isReleased  <br /><code>boolean</code></td>\n<td>used to check if the callerid is released or not.</td>\n<td><code>Filterable   </code>Sortable</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdPurchaseLog","list"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"page[limit]","value":"25"},{"key":"filter[callerIdGroup][id]","value":"647"},{"key":"filter[isReleased]","value":"false"}],"variable":[]}},"response":[{"id":"e277aaa3-75f3-409a-8636-b3bcbb3634b4","name":"Purchase List","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callerIdPurchaseLog/list?page[limit]=25&filter[callerIdGroup][id]=647&filter[isReleased]=false","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callerIdPurchaseLog","list"],"query":[{"key":"page[limit]","value":"25"},{"key":"filter[callerIdGroup][id]","value":"647"},{"key":"filter[isReleased]","value":"false"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 1237,\r\n            \"purchasedDateTime\": \"2022-04-29T13:51:02.454278\",\r\n            \"phoneNumber\": \"+19287548951\",\r\n            \"formattedPhoneNumber\": \"(928) 754-8951\",\r\n            \"callForwardPhoneNumber\": \"(313) 131-3131\",\r\n            \"sid\": \"PN23d92ac6d6b4fc35ab532b673b347b6c\",\r\n            \"areaCode\": \"928\",\r\n            \"locationName\": \"Arizona\",\r\n            \"whiteListPhoneLookup\": null,\r\n            \"releasedDateTime\": null,\r\n            \"isReleased\": false,\r\n            \"associations\": {\r\n                \"callerIdGroup\": [\r\n                    {\r\n                        \"id\": 647\r\n                    }\r\n                ],\r\n                \"whitelistPhoneLookup\": [\r\n                    {\r\n                        \"id\": 2024066\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 20,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"82b2c11d-143f-443f-b1c1-c308d13457e0"},{"name":"Purchase CallerID","id":"f69366d9-2167-4d4f-b99f-dd795429b923","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"callForwardPhoneNumber\":\"(543)543-5455\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIdPurchaseLog/:id","description":"<p>This request used to update call forward numbers for purchased list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIdPurchaseLog",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"c7c3b443-ea3e-4626-905d-8edd82accd70","type":"any","value":null,"key":"id"}]}},"response":[{"id":"cd520993-bf5b-4919-8dd0-8fa45f8ac659","name":"Purchase CallerID","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"callForwardPhoneNumber\":\"(543)543-5455\"}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/callerIdPurchaseLog/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callerIdPurchaseLog",":id"],"variable":[{"key":"id","value":"666"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 1408,\r\n            \"purchasedDateTime\": \"2023-02-09T10:48:46.264693\",\r\n            \"phoneNumber\": \"+15012158848\",\r\n            \"formattedPhoneNumber\": \"(501) 215-8848\",\r\n            \"callForwardPhoneNumber\": \"(543)543-5455\",\r\n            \"sid\": \"PN3eee069a672657969ff55aa21e9b34a5\",\r\n            \"areaCode\": \"501\",\r\n            \"locationName\": \"Arkansas\",\r\n            \"whiteListPhoneLookup\": null,\r\n            \"releasedDateTime\": null,\r\n            \"isReleased\": false,\r\n            \"associations\": {\r\n                \"callerIdGroup\": {\r\n                    \"id\": null\r\n                }\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"f69366d9-2167-4d4f-b99f-dd795429b923"},{"name":"Realese","id":"3cb0ac54-cb14-4050-85a3-682447715ab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/purchaseCallerId/remove-caller-id/:callerIdGroupId?callerId=(928) 754-8951,(707) 470-3844&isTwilioCallerId=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["purchaseCallerId","remove-caller-id",":callerIdGroupId"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"callerId","value":"(928) 754-8951,(707) 470-3844"},{"key":"isTwilioCallerId","value":"true"}],"variable":[{"id":"b0e8c08b-e988-4c5a-9815-c4ec63d4acd8","type":"any","value":"647","key":"callerIdGroupId"}]}},"response":[],"_postman_id":"3cb0ac54-cb14-4050-85a3-682447715ab2"}],"id":"52618563-4572-4131-a421-601783002cf6","description":"<p>Purchase callerID's from twilio or add your own callerID's to dial.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Primary value of the data</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>callsPerCallerIdDuration  <br /><code>String</code></td>\n<td>To show number of dials per caller id based on the duration.</td>\n<td><code>Updatable</code></td>\n</tr>\n<tr>\n<td>maxCallsPerCallerId  <br /><code>Integer</code></td>\n<td>No of dials need to do per caller ids per day</td>\n<td><code>Updatable</code></td>\n</tr>\n<tr>\n<td>notificationInterval  <br /><code>String</code></td>\n<td>Notification interval duration</td>\n<td><code>Updatable</code></td>\n</tr>\n<tr>\n<td>sortInterval  <br /><code>String</code></td>\n<td>Sorting of caller id duration</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>useOrgDataForCallerIdSort  <br /><code>Boolean</code></td>\n<td>org data used for caller id sort.</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"52618563-4572-4131-a421-601783002cf6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"CallerID V2","item":[{"name":"List","id":"6745da31-d2ac-42d7-9116-f7d5f1ca4eda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https:{{koncert_dialers_api}}/callerIds?page[limit]=50&includeAssociations[]=callerIdGroup&includeAssociations[]=whiteListPhoneLookup&includeAssociations[]=user&includeAssociations[]=assigned&includeAssociations[]=country&filter[type]=custom","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"port":"{{koncert_dialers_api}}","path":["callerIds"],"host":["https"],"query":[{"key":"page[limit]","value":"50"},{"key":"includeAssociations[]","value":"callerIdGroup"},{"key":"includeAssociations[]","value":"whiteListPhoneLookup"},{"key":"includeAssociations[]","value":"user"},{"key":"includeAssociations[]","value":"assigned"},{"key":"includeAssociations[]","value":"country"},{"key":"filter[type]","value":"custom"}],"variable":[]}},"response":[{"id":"3faf29a4-ee12-4bae-8707-7037bcc1d5bd","name":"List","originalRequest":{"method":"GET","header":[],"url":{"raw":"https:{{koncert_dialers_api}}/callerIds?page[limit]=50&includeAssociations[]=callerIdGroup&includeAssociations[]=whiteListPhoneLookup&includeAssociations[]=user&includeAssociations[]=assigned&includeAssociations[]=country&filter[type]=custom","host":["https"],"port":"{{koncert_dialers_api}}","path":["callerIds"],"query":[{"key":"page[limit]","value":"50"},{"key":"includeAssociations[]","value":"callerIdGroup"},{"key":"includeAssociations[]","value":"whiteListPhoneLookup"},{"key":"includeAssociations[]","value":"user"},{"key":"includeAssociations[]","value":"assigned"},{"key":"includeAssociations[]","value":"country"},{"key":"filter[type]","value":"custom"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [    \n    {\n            \"id\": 35707,\n            \"createDateTime\": \"2025-08-21T09:20:04\",\n            \"phoneNumber\": \"9876543212\",\n            \"isReleased\": false,\n            \"initiallyCreated\": false,\n            \"type\": \"custom\",\n            \"deviceCloudFlag\": false,\n            \"verizonIphoneFlag\": false,\n            \"verizonAndroidFlag\": false,\n            \"attIphoneFlag\": false,\n            \"attAndroidFlag\": false,\n            \"tmobileIphoneFlag\": false,\n            \"tmobileAndroidFlag\": false,\n            \"nomoroboFlag\": false,\n            \"ftcReportedFlag\": false,\n            \"suppressRelease\": false,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 28833\n                    }\n                ],\n                \"country\": [\n                    {\n                        \"id\": 228\n                    }\n                ],\n                \"assigned\": [\n                    {\n                        \"id\": 28833\n                    }\n                ]\n            }\n        }\n    ],\n        \"includeAssociation\": {\n        \"country\": [\n            {\n                \"countryCodeId\": 228,\n                \"countryIsoCode\": \"US\",\n                \"countryDialCode\": 1,\n                \"countryName\": \"UNITED STATES\"\n            }\n        ],\n         \"user\": [\n            {\n                \"id\": 31441,\n                \"sfUserId\": \"STD-183512\",\n                \"name\": \"Georgia\",\n                \"userType\": null,\n                \"loginName\": \"betufi@azuretechtalk.net\",\n                \"email\": \"betufi@azuretechtalk.net\",\n                \"userLicense\": \"TD,CD,TC,AIDML,AIDSL\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 2\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": null,\n                \"isManagerUser\": \"Y\",\n                \"lastProductType\": \"AIDSL\",\n                \"lastProductUrl\": \"https://na500-aidialer1-b.koncert.com/na500aidialer1-b/dialerserver\",\n                \"rcUrl\": null,\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"Y\",\n                \"callRecordingUserPermission\": \"YYY\",\n                \"callRecordingEnabledByUser\": \"Y\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n                \"enableScheduleCheck\": \"N\",\n                \"isAdminUser\": \"Y\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": null,\n                \"showAccountsBy\": null,\n                \"purchaseCustomCallerIds\": true,\n                \"isTrucadenceLeftmenuExpanded\": null,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"gongUserId\": null,\n                \"lastExecutedDataListIds\": \"69008\",\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"N\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"Base-App\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2025-03-29T11:37:06Z\",\n                \"modifiedDate\": \"2025-08-04T07:14:07Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": null,\n                \"displayName\": \"Georgia\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": [\n                    \"calls\",\n                    \"emails\",\n                    \"social\",\n                    \"linkedin\",\n                    \"task\",\n                    \"unassigned\"\n                ],\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": false,\n                \"isFirstTimeUser\": false,\n                \"associations\": {\n                    \"org\": [\n                        {\n                            \"id\": 8771\n                        }\n                    ]\n                },\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\n                \"location\": null,\n                \"allowMultiEmailAccounts\": false,\n                \"salesloftVerifiedFlag\": null,\n                \"outreachVerifiedFlag\": null,\n                \"crmtemplateLoadingPage\": \"reports\",\n                \"isFirstTimeDialed\": true,\n                \"apolloUserId\": null,\n                \"lockDownDialingInstructions\": false\n            }\n        ],\n         \"assigned\": [\n            {\n                \"id\": 28762,\n                \"sfUserId\": \"STD-178233\",\n                \"name\": \"SudersonTest\",\n                \"userType\": null,\n                \"loginName\": \"gipali9078@degcos.com\",\n                \"email\": \"gipali9078@degcos.com\",\n                \"userLicense\": \"TD,CD,TC,AIDML,AIDSL\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 2\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": null,\n                \"isManagerUser\": \"Y\",\n                \"lastProductType\": \"AIDML\",\n                \"lastProductUrl\": \"https://na500-aidialer3-b.koncert.com/na500aidialer3-b/dialerserver\",\n                \"rcUrl\": \"https://rcs.koncert.com/remotecoachv12/rcserver\",\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"919363176800\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"Y\",\n                \"callRecordingUserPermission\": \"YYN\",\n                \"callRecordingEnabledByUser\": \"Y\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n                \"enableScheduleCheck\": \"N\",\n                \"isAdminUser\": \"Y\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": null,\n                \"showAccountsBy\": null,\n                \"purchaseCustomCallerIds\": true,\n                \"isTrucadenceLeftmenuExpanded\": null,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": 1,\n                \"gongUserId\": null,\n                \"lastExecutedDataListIds\": \"78984\",\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"N\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"Base-App\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2024-09-21T09:04:50Z\",\n                \"modifiedDate\": \"2025-08-04T07:14:07Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": null,\n                \"displayName\": \"SudersonTest\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": [\n                    \"calls\",\n                    \"emails\",\n                    \"social\",\n                    \"linkedin\",\n                    \"task\",\n                    \"unassigned\"\n                ],\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": false,\n                \"isFirstTimeUser\": false,\n                \"associations\": {\n                    \"org\": [\n                        {\n                            \"id\": 8771\n                        }\n                    ]\n                },\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\n                \"location\": null,\n                \"allowMultiEmailAccounts\": false,\n                \"salesloftVerifiedFlag\": null,\n                \"outreachVerifiedFlag\": true,\n                \"crmtemplateLoadingPage\": \"reports\",\n                \"isFirstTimeDialed\": true,\n                \"apolloUserId\": null,\n                \"lockDownDialingInstructions\": false\n            }] },\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 100,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"6745da31-d2ac-42d7-9116-f7d5f1ca4eda"},{"name":"Generate code","id":"bb2b6213-6cbb-4690-bcb8-7953a99c2480","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"659\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"us mapped edited\",\r\n            \"type\": \"mapped\",\r\n            \"id\": 2024134,\r\n            \"selectedCallerIds\": [\r\n                \"+16592075303\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIds/generate-code","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIds","generate-code"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"e1d55067-1a20-4028-9684-97f6f7ae542c","name":"Generate code","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"659\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"us mapped edited\",\r\n            \"type\": \"mapped\",\r\n            \"id\": 2024134,\r\n            \"selectedCallerIds\": [\r\n                \"+16592075303\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIds/generate-code"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bb2b6213-6cbb-4690-bcb8-7953a99c2480"},{"name":"Validate code","id":"0754761e-860b-4ace-9ae3-f3d7304e2088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"callForwardPhoneNumber\": \"(454) 545-4545\",\r\n    \"cartData\": [\r\n        {\r\n            \"areaCode\": \"659\",\r\n            \"callerIdGroup\": {\r\n                \"id\": 647\r\n            },\r\n            \"callerIdGroupName\": \"us mapped edited\",\r\n            \"type\": \"mapped\",\r\n            \"id\": 2024134,\r\n            \"selectedCallerIds\": [\r\n                \"+16592075303\"\r\n            ],\r\n            \"state\": \"Alabama\"\r\n        }\r\n    ],\r\n    \"user\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ]\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIds/validate-code?transactionCode=AzfybRfD&mapToOtherAreaCodes=Alabama","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIds","validate-code"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"transactionCode","value":"AzfybRfD"},{"key":"mapToOtherAreaCodes","value":"Alabama"}],"variable":[]}},"response":[],"_postman_id":"0754761e-860b-4ace-9ae3-f3d7304e2088"},{"name":"Release","id":"a3f4b171-1f16-46a8-a296-1df77626d483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/caallerIds/:callerIdGroupId/:ids","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["caallerIds",":callerIdGroupId",":ids"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"4051d8aa-da9f-43ec-ac3b-1af1417274d2","type":"any","value":null,"key":"callerIdGroupId"},{"id":"b9ca8444-416f-4484-a536-fdf7271b83d2","type":"any","value":null,"key":"ids"}]}},"response":[],"_postman_id":"a3f4b171-1f16-46a8-a296-1df77626d483"},{"name":"Custom","id":"d83ffa2c-3920-4b83-ae01-b8c33ddeb7db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"phoneNumber\": 6369300856,\r\n    \"country\": {\r\n        \"countryCodeId\": 228\r\n    },\r\n    \"assignedTo\": [\r\n        {\r\n            \"id\": 7431\r\n        },\r\n        {\r\n            \"id\": 7661\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIds/custom","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIds","custom"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"39944e78-db4a-43d6-8853-c9522fea2930","name":"Custom","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"phoneNumber\": 6369300856,\r\n    \"country\": {\r\n        \"countryCodeId\": 228\r\n    },\r\n    \"assignedTo\": [\r\n        {\r\n            \"id\": 7431\r\n        },\r\n        {\r\n            \"id\": 7661\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIds/custom"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d83ffa2c-3920-4b83-ae01-b8c33ddeb7db"},{"name":"ScreenShoturl","id":"64105441-79f0-4533-a99b-f44a4f81d992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callerIds/screenshotUrl/:deviceCloudPartnerId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIds","screenshotUrl",":deviceCloudPartnerId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"fb3da0e0-32af-44af-8c06-ae3e4a8c7dcb","type":"any","value":null,"key":"deviceCloudPartnerId"}]}},"response":[],"_postman_id":"64105441-79f0-4533-a99b-f44a4f81d992"},{"name":"callerId","id":"baa6f7ec-1312-42ef-be01-9009eaf06935","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"baa6f7ec-1312-42ef-be01-9009eaf06935"},{"name":"callerid","id":"689dd5dc-d990-4a80-b48a-f94fd478dbad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"callForwardNumber\":\"8974383442\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/callerIds/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callerIds",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"10ce5f63-18b2-430e-9d94-8ee968591bff","type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"689dd5dc-d990-4a80-b48a-f94fd478dbad"}],"id":"8858db48-6e7d-43d8-aa96-1feed28667be","_postman_id":"8858db48-6e7d-43d8-aa96-1feed28667be","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Campaign","item":[{"name":"Campaign","id":"5f476503-1ba5-492e-9aa1-57f0e4ef1153","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/campaign","description":"<p>Get campaign information assigned to currentUser</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["campaign"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"6b3b2a16-082b-482e-b40e-7be11136a56f","name":"Campaigns","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/campaign?filter[user][id]=24875&includeAssociations[]=user&field=[id,countryCodePrefix,tdOpenSfView,pdAllowAutoCallLogEntry,openLinkedinWindow,aidOpenCdForEachCall,aidEnableVisualCallNavigation,aidDetectLeaveSkipVms,aidDetectSkipDialTrees,aidSkipRinging30Seconds,aidSkipBusyFailedCalls,aidSilenceRingTone,aidDecideNoOfMultipleLines,aidNoOfMultipleLines,canAgentsPlayVm,tdAllowAutoCallLogEntry,initalXferGreeting,recordedMessages,hideNonDialableRecords,enableIvrNavigationAifd,enableIvrNavigationAipd,beepSoundLevel,aiSkipRingingSeconds]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["campaign"],"query":[{"key":"filter[user][id]","value":"24875"},{"key":"includeAssociations[]","value":"user"},{"key":"field","value":"[id,countryCodePrefix,tdOpenSfView,pdAllowAutoCallLogEntry,openLinkedinWindow,aidOpenCdForEachCall,aidEnableVisualCallNavigation,aidDetectLeaveSkipVms,aidDetectSkipDialTrees,aidSkipRinging30Seconds,aidSkipBusyFailedCalls,aidSilenceRingTone,aidDecideNoOfMultipleLines,aidNoOfMultipleLines,canAgentsPlayVm,tdAllowAutoCallLogEntry,initalXferGreeting,recordedMessages,hideNonDialableRecords,enableIvrNavigationAifd,enableIvrNavigationAipd,beepSoundLevel,aiSkipRingingSeconds]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 9159,\r\n            \"tdOpenSfView\": \"Y\",\r\n            \"initalXferGreeting\": \"N\",\r\n            \"pdAllowAutoCallLogEntry\": \"Y\",\r\n            \"countryCodePrefix\": \"N\",\r\n            \"tdAllowAutoCallLogEntry\": \"N\",\r\n            \"canAgentsPlayVm\": \"N\",\r\n            \"aidEnableVisualCallNavigation\": false,\r\n            \"aidDetectLeaveSkipVms\": true,\r\n            \"aidDetectSkipDialTrees\": false,\r\n            \"aidSkipRinging30Seconds\": true,\r\n            \"aidSkipBusyFailedCalls\": true,\r\n            \"aidSilenceRingTone\": true,\r\n            \"aidDecideNoOfMultipleLines\": true,\r\n            \"aidNoOfMultipleLines\": 2,\r\n            \"openLinkedinWindow\": false,\r\n            \"aidOpenCdForEachCall\": true,\r\n            \"hideNonDialableRecords\": false,\r\n            \"enableIvrNavigationAifd\": true,\r\n            \"enableIvrNavigationAipd\": true,\r\n            \"aiSkipRingingSeconds\": 30,\r\n            \"beepSoundLevel\": 50,\r\n            \"recordedMessages\": [\r\n                {\r\n                    \"id\": 5855,\r\n                    \"messageName\": \"1minvm\",\r\n                    \"messageType\": \"VM\",\r\n                    \"activeFlag\": \"Y\",\r\n                    \"defaultVmFlag\": \"N\",\r\n                    \"duration\": 60,\r\n                    \"isVoiceRecordingDone\": true\r\n                }\r\n            ],\r\n            \"associations\": {\r\n                \"user\": {\r\n                    \"id\": 24875\r\n                }\r\n            }\r\n        }\r\n    ],\r\n    \"includedAssociations\": {\r\n        \"user\": [\r\n            {\r\n                \"id\": 24875,\r\n                \"sfUserId\": \"005bm00000B4uLRAAZ\",\r\n                \"name\": \"Tessa\",\r\n                \"loginName\": \"tessana100-sf@outlook.com\",\r\n                \"email\": \"tessana100-sf@outlook.com\",\r\n                \"userLicense\": \"TD,CD,TC,CO,AIDML,AIDSL\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"America/New_York\",\r\n                \"talkerAgentType\": \"Level 2\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 0,\r\n                \"isManagerUser\": \"Y\",\r\n                \"lastProductType\": \"AIDML\",\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"N\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"isInternalUser\": \"N\",\r\n                \"isActive\": \"Y\",\r\n                \"callRecordingEnabledByManager\": \"Y\",\r\n                \"callRecordingUserPermission\": \"YYY\",\r\n                \"callRecordingEnabledByUser\": \"Y\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"isAdminUser\": \"Y\",\r\n                \"allowAdaptilytics\": \"N\",\r\n                \"allowModifyAdaptilyticsSettings\": \"N\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"cdPhoneMinutesUsed\": 2.00,\r\n                \"purchaseCustomCallerIds\": true,\r\n                \"isTrucadenceLeftmenuExpanded\": null,\r\n                \"lastExecutedDataListIds\": \"35332\",\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"showLeadScorePopup\": \"N\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"Base-App\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2025-01-30T10:08:33Z\",\r\n                \"modifiedDate\": \"2025-08-20T06:22:53Z\",\r\n                \"regionId\": \"US_EAST_1\",\r\n                \"isCreateAddProspect\": true,\r\n                \"defaultActivityFilter\": null,\r\n                \"displayName\": \"Tessa\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Arial\",\r\n                \"emailFontSize\": 11,\r\n                \"defaultCadenceWidgets\": [\r\n                    \"calls\",\r\n                    \"emails\",\r\n                    \"social\",\r\n                    \"linkedin\",\r\n                    \"task\",\r\n                    \"unassigned\"\r\n                ],\r\n                \"openExternalLinksInNewWindow\": true,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": false,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 8561\r\n                        }\r\n                    ]\r\n                },\r\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\r\n                \"allowMultiEmailAccounts\": false,\r\n                \"crmtemplateLoadingPage\": \"reports\",\r\n                \"isFirstTimeDialed\": true,\r\n                \"lockDownDialingInstructions\": false\r\n            }\r\n        ]\r\n    },\r\n    \"paging\": {\r\n        \"totalCount\": 1,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"},{"id":"47b30a4c-17b6-406c-8e97-de4b61982a62","name":"Campaign with sparseFieldSets","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/campaign?filter[user][id]=7424&includeAssociations[]=user&field[user]=[id,name]&field=[id,campaignName]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["campaign"],"query":[{"key":"filter[user][id]","value":"7424"},{"key":"includeAssociations[]","value":"user"},{"key":"field[user]","value":"[id,name]"},{"key":"field","value":"[id,campaignName]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2910,\n            \"campaignName\": \"Cadence - Pending Calls - Jan 27, 2023 06:55 AM\",\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"user\": [\n            {\n                \"id\": 7424,\n                \"name\": \"API Client Manager\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"5f476503-1ba5-492e-9aa1-57f0e4ef1153"},{"name":"Campaign by Id","id":"80e308a8-a7d6-4b25-87bf-b7d6b5b72833","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/campaign/:{id}","description":"<p>Get campaign details by CampaignId</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["campaign",":{id}"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"2cd50ac0-3a04-4573-9a05-83f8dfa89a6f","type":"any","value":"Campaign Id","key":"{id}"}]}},"response":[{"id":"84b245bb-32e0-4ce5-acb2-9aa2df56a177","name":"Campaign by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/campaign/14806?filter[user][id]=7424&includeAssociations[]=user","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["campaign","14806"],"query":[{"key":"filter[user][id]","value":"7424"},{"key":"includeAssociations[]","value":"user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 14806,\n            \"campaignName\": \"Anish US Hotel List (2).csv - May 31, 2024 09:49 AM\",\n            \"campaignStartTime\": null,\n            \"campaignEndTime\": null,\n            \"dialingAgentUserIds\": null,\n            \"talkerName\": \"Test DND March\",\n            \"dialingAgentNames\": null,\n            \"recCreatedDate\": \"2024-03-13T11:17:36Z\",\n            \"recModifiedDate\": \"2024-05-31T09:49:31Z\",\n            \"conferenceId\": 126161,\n            \"conferencePin\": 126162,\n            \"recDeletedFlag\": \"Y\",\n            \"recCreatorId\": null,\n            \"recMofiferId\": null,\n            \"campaignInstructions\": null,\n            \"campaignCompletedFlag\": \"N\",\n            \"campaignSession\": \"195701\",\n            \"tdCallerIdList\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n            \"tdCallerIdDisplay\": \"AB-CID\",\n            \"phoneServerId\": 1,\n            \"pdCallerIdDisplay\": \"AB-CID\",\n            \"pdCallerIdNumber\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n            \"tdSortBy\": \"contact_name ASC NULLS LAST\",\n            \"tdStartRow\": null,\n            \"pdStartRow\": null,\n            \"tdMusicOnHold\": \"N\",\n            \"pdMusicOnHold\": \"N\",\n            \"tdOpenSfView\": \"N\",\n            \"pdOpenSfView\": \"N\",\n            \"pdSortBy\": \"contact_name ASC NULLS LAST\",\n            \"initalXferGreeting\": \"N\",\n            \"pdOpenCallDisposition\": \"Y\",\n            \"pdAllowRingingCallInit\": \"Y\",\n            \"pdAllowAutoCallLogEntry\": \"Y\",\n            \"tdCreateCallLogWhenPlayVm\": \"N\",\n            \"pdCreateCallLogWhenPlayVm\": \"N\",\n            \"countryCodePrefix\": \"N\",\n            \"tdAllowAutoCallLogEntry\": \"N\",\n            \"pdEnableAutoDialing\": \"N\",\n            \"dialerColumnName\": \"phone, custom_phone_1, custom_phone_2\",\n            \"campaignStatus\": \"N\",\n            \"tdOpenShadetreeView\": \"N\",\n            \"pdOpenShadetreeView\": \"N\",\n            \"tdLastRowDialed\": 1,\n            \"pdLastRowDialed\": 0,\n            \"campaignInstructionsBreakdown\": null,\n            \"crmOpenActivityFlag\": \"N\",\n            \"crmCallDispositionActivityAction\": \"insert\",\n            \"canAgentsPlayVm\": \"N\",\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"technologyDataWeight\": 60,\n            \"intentDataWeight\": 40,\n            \"technologyDataLogicalOperator\": \"AND\",\n            \"intentDataLogicalOperator\": \"AND\",\n            \"directPhoneAvailableWeight\": 40,\n            \"liveConversationRateWeight\": 40,\n            \"contactVerifiedRecentlyWeight\": 30,\n            \"cdCallerIdMode\": \"ABCID\",\n            \"cdSelectedCallerIds\": null,\n            \"cdCreateCallLogForEachDial\": \"N\",\n            \"cdCreateCallLogWhenPlayVm\": \"N\",\n            \"cdIsInternationalDialCodePrefixed\": \"N\",\n            \"cdOpenDetail\": \"N\",\n            \"maxAttemptsPerday\": 1,\n            \"pdSortByRecordType\": \"contact_name,\",\n            \"tdSortByRecordType\": \"contact_name,\",\n            \"campaignDialerInfo\": \"Test DND March__DEL__Test DND March\",\n            \"lastModDivisionValue\": null,\n            \"enableDefaultCallComments\": false,\n            \"masterDialerColumnName\": null,\n            \"aidEnableVisualCallNavigation\": false,\n            \"aidDetectLeaveSkipVms\": true,\n            \"aidDetectSkipDialTrees\": false,\n            \"aidSkipRinging30Seconds\": true,\n            \"aidSkipBusyFailedCalls\": true,\n            \"aidSilenceRingTone\": true,\n            \"aidDecideNoOfMultipleLines\": true,\n            \"aidNoOfMultipleLines\": 4,\n            \"aidmlEnableVisualCallNavigation\": false,\n            \"openLinkedinWindow\": false,\n            \"aidOpenCdForEachCall\": true,\n            \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n            \"recordedMessages\": [],\n            \"defaultVm\": null,\n            \"defaultIg\": null,\n            \"listName\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 19039\n                }\n            },\n            \"sortBy\": \"contact_name\",\n            \"hideNonDialableRecords\": false,\n            \"enableIvrNavigationAifd\": false,\n            \"enableIvrNavigationAipd\": false,\n            \"prospectStartTime\": \"00:00:00\",\n            \"prospectEndTime\": \"23:30:00\",\n            \"enableDoubleTap\": false,\n            \"aiSkipRingingSeconds\": 30,\n            \"beepSoundLevel\": 50,\n            \"thirdPartyCrmStepNameVmName\": null\n        }\n    ],\n    \"includedAssociations\": {\n        \"user\": [\n            {\n                \"id\": 19039,\n                \"sfUserId\": \"STD-59801\",\n                \"name\": \"Test DND March\",\n                \"userType\": null,\n                \"loginName\": \"testdndmarch@gmail.com\",\n                \"email\": \"testdndmarch@gmail.com\",\n                \"userLicense\": \"CD,TC,AIDML,AIDSL\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \" \",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/Cancun\",\n                \"talkerAgentType\": \"Level 1\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 15,\n                \"transferUrl\": null,\n                \"isManagerUser\": \"Y\",\n                \"lastProductType\": \"AIDSL\",\n                \"lastProductUrl\": \"https://devqads.koncert.com/aidialerserverupgrade/dialerserver\",\n                \"rcUrl\": null,\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": null,\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"Y\",\n                \"callRecordingUserPermission\": \"YYN\",\n                \"callRecordingEnabledByUser\": \"Y\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n                \"enableScheduleCheck\": \"N\",\n                \"isAdminUser\": \"Y\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": null,\n                \"showAccountsBy\": \"MY_ACCOUNT\",\n                \"purchaseCustomCallerIds\": true,\n                \"isTrucadenceLeftmenuExpanded\": null,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"gongUserId\": null,\n                \"lastExecutedDataListIds\": \"35395\",\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"N\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"Base-App\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2024-03-13T15:17:29Z\",\n                \"modifiedDate\": \"2024-05-16T19:20:14Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": null,\n                \"displayName\": \"Test DND March\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": [\n                    \"calls\",\n                    \"emails\",\n                    \"social\",\n                    \"linkedin\",\n                    \"task\",\n                    \"unassigned\"\n                ],\n                \"openExternalLinksInNewWindow\": false,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": false,\n                \"isFirstTimeUser\": false,\n                \"associations\": {\n                    \"org\": [\n                        {\n                            \"id\": 13437\n                        }\n                    ]\n                },\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\n                \"location\": null,\n                \"allowMultiEmailAccounts\": false,\n                \"salesloftVerifiedFlag\": null,\n                \"outreachVerifiedFlag\": null,\n                \"crmtemplateLoadingPage\": \"mysession\",\n                \"isFirstTimeDialed\": true,\n                \"apolloUserId\": null\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"80e308a8-a7d6-4b25-87bf-b7d6b5b72833"},{"name":"Update Campaign","id":"8f80ff96-8461-400f-88dd-605ccc5aef0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/campaigns/:Id","urlObject":{"protocol":"https","path":["campaigns",":Id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"2ffd9c52-a5a9-48d6-8b52-5649f974cb8d","description":{"content":"<p>Campaign Id</p>\n","type":"text/plain"},"type":"any","value":null,"key":"Id"}]}},"response":[{"id":"b3eb0a23-7844-495b-8dbe-39193584a768","name":"Update Campaign","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 4105,\r\n    \"talkerName\": \"Pinkpanther\",\r\n    \"conferenceId\": 38174,\r\n    \"conferencePin\": 38174,\r\n    \"recDeletedFlag\": \"N\",\r\n    \"campaignCompletedFlag\": \"N\",\r\n    \"tdCallerIdDisplay\": \"AB-CID\",\r\n    \"phoneServerId\": 1,\r\n    \"pdCallerIdDisplay\": \"AB-CID\",\r\n    \"tdSortBy\": \"contact_name ASC\",\r\n    \"tdMusicOnHold\": \"N\",\r\n    \"pdMusicOnHold\": \"N\",\r\n    \"tdOpenSfView\": \"N\",\r\n    \"pdOpenSfView\": \"N\",\r\n    \"pdSortBy\": \"contact_name ASC\",\r\n    \"initalXferGreeting\": \"N\",\r\n    \"pdOpenCallDisposition\": \"Y\",\r\n    \"pdAllowRingingCallInit\": \"Y\",\r\n    \"pdAllowAutoCallLogEntry\": \"Y\",\r\n    \"tdCreateCallLogWhenPlayVm\": \"N\",\r\n    \"pdCreateCallLogWhenPlayVm\": \"N\",\r\n    \"countryCodePrefix\": \"N\",\r\n    \"tdAllowAutoCallLogEntry\": \"N\",\r\n    \"pdEnableAutoDialing\": \"N\",\r\n    \"dialerColumnName\": \"phone,custom_phone_3,custom_phone_1\",\r\n    \"tdOpenShadetreeView\": \"N\",\r\n    \"pdOpenShadetreeView\": \"N\",\r\n    \"tdLastRowDialed\": 0,\r\n    \"pdLastRowDialed\": 0,\r\n    \"crmOpenActivityFlag\": \"N\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/campaigns/4105"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 14905,\n            \"campaignName\": \"35332_Koncert Number List.csv - Aug 21, 2025 10:29 AM\",\n            \"campaignStartTime\": null,\n            \"campaignEndTime\": null,\n            \"dialingAgentUserIds\": null,\n            \"talkerName\": \"Kate Liana\",\n            \"dialingAgentNames\": null,\n            \"recCreatedDate\": \"2024-04-16T12:51:43Z\",\n            \"recModifiedDate\": \"2025-08-21T10:29:52Z\",\n            \"conferenceId\": 149459,\n            \"conferencePin\": 149460,\n            \"recDeletedFlag\": \"Y\",\n            \"recCreatorId\": null,\n            \"recMofiferId\": null,\n            \"campaignInstructions\": \"Please transfer call for testing\",\n            \"campaignCompletedFlag\": \"N\",\n            \"campaignSession\": \"209573\",\n            \"tdCallerIdList\": \"+19705123326,+19704505008,+12402624395,+13018884890,+14432912179,+13015790496,+14432189731,+14439982953,+14434572048,+14434572015,+13345255911,+14432057232\",\n            \"tdCallerIdDisplay\": \"AB-CID\",\n            \"phoneServerId\": 1,\n            \"pdCallerIdDisplay\": \"AB-CID\",\n            \"pdCallerIdNumber\": \"+19705123326,+19704505008,+12402624395,+13018884890,+14432912179,+13015790496,+14432189731,+14439982953,+14434572048,+14434572015,+13345255911,+14432057232\",\n            \"tdSortBy\": \"last_dialed_date ASC NULLS FIRST\",\n            \"tdStartRow\": null,\n            \"pdStartRow\": null,\n            \"tdMusicOnHold\": \"N\",\n            \"pdMusicOnHold\": \"N\",\n            \"tdOpenSfView\": \"N\",\n            \"pdOpenSfView\": \"N\",\n            \"pdSortBy\": \"last_dialed_date ASC NULLS FIRST\",\n            \"initalXferGreeting\": \"N\",\n            \"pdOpenCallDisposition\": \"Y\",\n            \"pdAllowRingingCallInit\": \"Y\",\n            \"pdAllowAutoCallLogEntry\": \"Y\",\n            \"tdCreateCallLogWhenPlayVm\": \"N\",\n            \"pdCreateCallLogWhenPlayVm\": \"N\",\n            \"countryCodePrefix\": \"N\",\n            \"tdAllowAutoCallLogEntry\": \"N\",\n            \"pdEnableAutoDialing\": \"N\",\n            \"dialerColumnName\": \"custom_phone_1,custom_phone_1_sub_1,custom_phone_1_sub_2,phone,phone_sub_1,phone_sub_2\",\n            \"campaignStatus\": \"N\",\n            \"tdOpenShadetreeView\": \"N\",\n            \"pdOpenShadetreeView\": \"N\",\n            \"tdLastRowDialed\": 0,\n            \"pdLastRowDialed\": 0,\n            \"campaignInstructionsBreakdown\": null,\n            \"crmOpenActivityFlag\": \"N\",\n            \"crmCallDispositionActivityAction\": \"insert\",\n            \"canAgentsPlayVm\": \"N\",\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"technologyDataWeight\": 60,\n            \"intentDataWeight\": 40,\n            \"technologyDataLogicalOperator\": \"AND\",\n            \"intentDataLogicalOperator\": \"AND\",\n            \"directPhoneAvailableWeight\": 40,\n            \"liveConversationRateWeight\": 40,\n            \"contactVerifiedRecentlyWeight\": 30,\n            \"cdCallerIdMode\": \"ABCID\",\n            \"cdSelectedCallerIds\": null,\n            \"cdCreateCallLogForEachDial\": \"N\",\n            \"cdCreateCallLogWhenPlayVm\": \"N\",\n            \"cdIsInternationalDialCodePrefixed\": \"N\",\n            \"cdOpenDetail\": \"N\",\n            \"maxAttemptsPerday\": 1,\n            \"pdSortByRecordType\": \"contact_name ASC\",\n            \"tdSortByRecordType\": \"contact_name ASC\",\n            \"campaignDialerInfo\": \"Kate Liana__DEL__Kate OR Test ORG - DND - Do Not Delete\",\n            \"lastModDivisionValue\": null,\n            \"enableDefaultCallComments\": false,\n            \"masterDialerColumnName\": null,\n            \"aidEnableVisualCallNavigation\": false,\n            \"aidDetectLeaveSkipVms\": false,\n            \"aidDetectSkipDialTrees\": false,\n            \"aidSkipRinging30Seconds\": true,\n            \"aidSkipBusyFailedCalls\": true,\n            \"aidSilenceRingTone\": true,\n            \"aidDecideNoOfMultipleLines\": true,\n            \"aidNoOfMultipleLines\": 2,\n            \"aidmlEnableVisualCallNavigation\": false,\n            \"openLinkedinWindow\": false,\n            \"aidOpenCdForEachCall\": true,\n            \"callerIds\": null,\n            \"recordedMessages\": null,\n            \"defaultVm\": null,\n            \"defaultIg\": null,\n            \"listName\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 19141\n                },\n                \"playbook\": []\n            },\n            \"sortBy\": null,\n            \"hideNonDialableRecords\": false,\n            \"enableIvrNavigationAifd\": false,\n            \"enableIvrNavigationAipd\": false,\n            \"prospectStartTime\": null,\n            \"prospectEndTime\": null,\n            \"enableDoubleTap\": false,\n            \"aiSkipRingingSeconds\": 30,\n            \"beepSoundLevel\": 50,\n            \"thirdPartyCrmStepNameVmName\": null,\n            \"noOfAttemptsPerDay\": 5,\n            \"timeGapBetweenEachAttempt\": 60,\n            \"phoneFieldVmMapping\": null,\n            \"aidslDialerColumnName\": \"custom_phone_1,custom_phone_1_sub_1,custom_phone_1_sub_2,phone,phone_sub_1,phone_sub_2\",\n            \"aidmlDialerColumnName\": \"phone,phone_sub_1,phone_sub_2\",\n            \"liveAssistEnableConversationStage\": true,\n            \"liveAssistEnableRealTimeTranscription\": true\n        }\n    ]\n}"}],"_postman_id":"8f80ff96-8461-400f-88dd-605ccc5aef0c"}],"id":"2522c182-22fd-4dcc-bc29-cb15d963479b","description":"<p>Campaign will have all the information related to dialing for the user.</p>\n","_postman_id":"2522c182-22fd-4dcc-bc29-cb15d963479b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Coaching Notes","item":[{"name":"Get All Coaching Notes","event":[{"listen":"test","script":{"id":"f8e83b17-dc1a-4589-b048-37fa58f50da7","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"bec99ff3-37f8-4e10-9bf8-bba19a4cea87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/coachingNotes","description":"<p>Retrieves a paginated list of coaching notes with optional filtering, sorting, and association inclusion.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><strong>limit</strong> (optional): Number of records to return (default: 20, max: 100)</li>\n<li><strong>offset</strong> (optional): Number of records to skip for pagination</li>\n<li><strong>filters</strong> (optional): Filter parameters in format <code>field:operator:value</code></li>\n<li><strong>sorts</strong> (optional): Sort parameters in format <code>field:direction</code></li>\n<li><strong>includeAssociations</strong> (optional): Comma-separated list of associations to include</li>\n</ul>\n<h3 id=\"filter-examples\">Filter Examples</h3>\n<ul>\n<li><code>userId:EQUAL:789</code> - Get notes for specific user</li>\n<li><code>category:EQUAL:STRENGTHS</code> - Get notes by category</li>\n<li><code>createdDate:GREATER_THAN:2024-01-01</code> - Notes created after date</li>\n<li><code>isPrivate:EQUAL:false</code> - Only public notes</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Returns a paginated list of coaching notes with metadata.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["coachingNotes"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"d514f6a0-ab52-4a62-9aec-d16a23643030","name":"Success - Get All Coaching Notes","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/coachingNotes?filter[talkerDispositionId]=53888&includeAssociations[]=user&page[limit]=10&page[offset]=0&sort[createdDate]=DESC","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["coachingNotes"],"query":[{"key":"filter[talkerDispositionId]","value":"53888"},{"key":"includeAssociations[]","value":"user"},{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"},{"key":"sort[createdDate]","value":"DESC"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2938,\n            \"talkerDispositionId\": 53888,\n            \"comments\": \"testng notes completed\",\n            \"productType\": \"AIFD\",\n            \"createdDate\": \"2025-12-10T09:16:58Z\",\n            \"modifiedDate\": \"2025-12-10T09:17:22Z\",\n            \"createdBy\": 24975,\n            \"modifiedBy\": 24975,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24975\n                }\n            }\n        }\n    ],\n    \"includedAssociations\": {\n        \"user\": [\n            {\n                \"id\": 24975,\n                \"sfUserId\": \"STD-165985\",\n                \"name\": \"Admin login\",\n                \"userType\": null,\n                \"loginName\": \"jonota@dreamclarify.org\",\n                \"email\": \"jonota@dreamclarify.org\",\n                \"userLicense\": \"TD,CD,TC,AIDML,AIDSL\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"\",\n                \"talkerMaxAgentThreshold\": 4,\n                \"talkerMinAgentThreshold\": 4,\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 2\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": null,\n                \"lastProductType\": \"AIDML\",\n                \"lastProductUrl\": null,\n                \"rcMainNumber\": \"202-921-4337\",\n                \"rcAccessCode\": \"598-300-581\",\n                \"rcAuthkey\": \"b0t0Z2RYnr-CjRczuZsefkAr-MPDd7_Y\",\n                \"rcUrl\": \"https://na100cs3.koncert.com/remotecoachv12/rcserver\",\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"\",\n                \"isInternalUser\": \"N\",\n                \"callRecordingEnabledByManager\": \"Y\",\n                \"callRecordingUserPermission\": \"YYY\",\n                \"callRecordingEnabledByUser\": \"Y\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n                \"enableScheduleCheck\": \"N\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": null,\n                \"showAccountsBy\": null,\n                \"purchaseCustomCallerIds\": true,\n                \"isTrucadenceLeftmenuExpanded\": null,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"gongUserId\": null,\n                \"lastExecutedDataListIds\": \"37532\",\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"N\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"Base-App\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2025-02-27T06:55:36Z\",\n                \"modifiedDate\": \"2025-10-05T19:28:31Z\",\n                \"zipwhipSessionKey\": null,\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": null,\n                \"displayName\": \"Admin login\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": [\n                    \"calls\",\n                    \"emails\",\n                    \"social\",\n                    \"linkedin\",\n                    \"task\",\n                    \"unassigned\"\n                ],\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": false,\n                \"isFirstTimeUser\": false,\n                \"associations\": {\n                    \"org\": [\n                        {\n                            \"id\": 8693\n                        }\n                    ]\n                },\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\n                \"location\": null,\n                \"allowMultiEmailAccounts\": null,\n                \"salesloftVerifiedFlag\": null,\n                \"outreachVerifiedFlag\": null,\n                \"crmtemplateLoadingPage\": \"mysession\",\n                \"isFirstTimeDialed\": true,\n                \"apolloUserId\": null,\n                \"lockDownDialingInstructions\": false,\n                \"defaultManager\": -1,\n                \"enableCrmEmailIcon\": false,\n                \"workEndHour\": null,\n                \"fallthroughPendingCalls\": false,\n                \"fallthroughToDo\": true,\n                \"sendEmailOnSessionStart\": false,\n                \"allowUserToeditListUploadedByManager\": \"Y\",\n                \"workStartHour\": null,\n                \"fallthroughTodo\": true,\n                \"thirdPartyInstanceUrl\": null,\n                \"region\": \"US_EAST_1\",\n                \"admin\": \"Y\",\n                \"active\": \"Y\",\n                \"manager\": \"Y\",\n                \"allowUserToRemoveParkingLot\": false,\n                \"lastModeOfJoining\": \"bbd\",\n                \"thirdpartyVersion\": 11\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"bec99ff3-37f8-4e10-9bf8-bba19a4cea87"},{"name":"Create Coaching Note","event":[{"listen":"test","script":{"id":"8d99b9ef-a818-4f13-9557-4590a15150fe","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"eaac6cb2-c8e7-4c66-b223-55491f19ecc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"comments\": \"testng notes\",\n    \"talkerDispositionId\": 53888,\n    \"productType\": \"AIFD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/coachingNotes","description":"<p>Creates a new coaching note.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p><strong>Required Fields:</strong></p>\n<ul>\n<li><strong>callListRecordId</strong> (Long): The ID of the associated call list record</li>\n<li><strong>note</strong> (String): The coaching note content (max: 5000 characters)</li>\n</ul>\n<p><strong>Optional Fields:</strong></p>\n<ul>\n<li><strong>userId</strong> (Long): User ID (defaults to current user)</li>\n<li><strong>category</strong> (String): Note category (e.g., STRENGTHS, IMPROVEMENT, COACHING)</li>\n<li><strong>isPrivate</strong> (Boolean): Privacy flag (default: false)</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Returns the created coaching note with a generated ID and timestamps.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["coachingNotes"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"180520ba-a268-42bc-a704-83ed4b9d211c","name":"Success - Create Coaching Note","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"comments\": \"testng notes\",\n    \"talkerDispositionId\": 53888,\n    \"productType\": \"AIFD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/coachingNotes"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2938,\n            \"talkerDispositionId\": 53888,\n            \"comments\": \"testng notes\",\n            \"productType\": \"AIFD\",\n            \"createdDate\": \"2025-12-10T09:16:58Z\",\n            \"modifiedDate\": \"2025-12-10T09:16:58Z\",\n            \"createdBy\": 24975,\n            \"modifiedBy\": 24975,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24975\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"eaac6cb2-c8e7-4c66-b223-55491f19ecc2"},{"name":"Update Coaching Note","event":[{"listen":"prerequest","script":{"id":"2592566c-1d5f-4e95-92b0-6f405db4b81c","exec":[""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"50199c27-9546-46e3-8460-781e8f2193d8","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a5a7938c-b59f-4cf9-9b90-a515e35a9fa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"comments\": \"testng notes completed\",\r\n    \"talkerDispositionId\": 53888,\r\n    \"productType\": \"AIFD\",\r\n    \"id\": 2938\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/coachingNotes/:id","description":"<p>Updates an existing coaching note by ID.</p>\n<h3 id=\"path-parameters\">Path Parameters</h3>\n<ul>\n<li><strong>id</strong> (Long, required): The coaching note ID (must be a positive value)</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>All fields are optional. Only include the fields you want to update:</p>\n<ul>\n<li><strong>note</strong> (String): Updated note content (max: 5000 characters)</li>\n<li><strong>category</strong> (String): Updated category</li>\n<li><strong>isPrivate</strong> (Boolean): Updated privacy flag</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Returns the updated coaching note with the new <code>updatedDate</code> timestamp.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["coachingNotes",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"b0ba143a-2cd0-4ad1-8a40-411c98677367","name":"Success - Update Coaching Note","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"comments\": \"testng notes completed\",\n    \"talkerDispositionId\": 53888,\n    \"productType\": \"AIFD\",\n    \"id\": 2938\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/coachingNotes/2938"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2938,\n            \"talkerDispositionId\": 53888,\n            \"comments\": \"testng notes completed\",\n            \"productType\": \"AIFD\",\n            \"createdDate\": \"2025-12-10T09:16:58Z\",\n            \"modifiedDate\": \"2025-12-10T09:17:22Z\",\n            \"createdBy\": 24975,\n            \"modifiedBy\": 24975,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24975\n                }\n            }\n        }\n    ]\n}"},{"id":"c9e0477c-0cd5-45d6-9ae3-abb77f609332","name":"Error - Invalid ID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"comments\": \"testng notes completed\",\n    \"talkerDispositionId\": 53888,\n    \"productType\": \"AIFD\",\n    \"id\": 2938\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/coachingNotes/-1"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"error\",\n    \"errors\": [\n        {\n            \"errorCode\": \"INVALID_DATA\",\n            \"field\": \"id\",\n            \"message\": \"Coaching Notes id must be a Positive value\"\n        }\n    ],\n    \"requestId\": \"abc-123-def-456\"\n}"},{"id":"b03cc312-400d-414f-af35-fde57c1b0ba2","name":"Error - Note Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"comments\": \"testng notes completed\",\n    \"talkerDispositionId\": 53888,\n    \"productType\": \"AIFD\",\n    \"id\": 2938\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/coachingNotes/999999"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"error\",\n    \"errors\": [\n        {\n            \"errorCode\": \"NOT_FOUND\",\n            \"message\": \"Coaching note with ID 999999 not found\"\n        }\n    ],\n    \"requestId\": \"abc-123-def-456\"\n}"}],"_postman_id":"a5a7938c-b59f-4cf9-9b90-a515e35a9fa7"}],"id":"b124377c-0125-4e75-adec-3b1208f5ac28","_postman_id":"b124377c-0125-4e75-adec-3b1208f5ac28","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Conversation","item":[{"name":"Get All Phrases","id":"6b12aa4a-edc6-44d6-a51e-4e8c8418cd8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{koncert_dialers_api}}/conversation","description":"<p>Retrieves all conversation phrases for the current user's organization.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["conversation"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"71a89599-a1db-4344-8cc6-572a766ad405","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{koncert_dialers_api}}/conversation","description":"Retrieves all conversation phrases for the current user's organization."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"category\": \"Objection\",\n      \"subCategory\": \"Price\",\n      \"resolutionText\": \"Value proposition\",\n      \"categoryScore\": 10,\n      \"subCategoryScore\": 5,\n      \"resolutionTextScore\": 8\n    }\n  ]\n}"}],"_postman_id":"6b12aa4a-edc6-44d6-a51e-4e8c8418cd8b"},{"name":"Create Category","id":"1171293d-5197-4ceb-adc3-893aac6fbc2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"conversationType\": \"Objection\",\n    \"category\": \"Budget Concerns\",\n    \"categoryScore\": 10,\n    \"subCategory\": \"Too Expensive\",\n    \"subCategoryScore\": 8,\n    \"resolutionText\": \"ROI Discussion\",\n    \"resolutionTextScore\": 7,\n    \"active\": true\n  }\n]"},"url":"{{koncert_dialers_api}}/conversation/category","description":"<p>Creates new conversation categories. Requires ADMIN or MANAGER role.</p>\n<p>Required fields:</p>\n<ul>\n<li>conversationType: Type of conversation</li>\n<li>category: Main category name</li>\n<li>categoryScore: Score for the category</li>\n<li>subCategory: Sub-category name</li>\n<li>subCategoryScore: Score for sub-category</li>\n<li>resolutionText: Resolution text</li>\n<li>resolutionTextScore: Score for resolution</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["conversation","category"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"76ab8ab3-1120-4d0f-84f8-e9b4e522dd91","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"conversationType\": \"Objection\",\n    \"category\": \"Budget Concerns\",\n    \"categoryScore\": 10,\n    \"subCategory\": \"Too Expensive\",\n    \"subCategoryScore\": 8,\n    \"resolutionText\": \"ROI Discussion\",\n    \"resolutionTextScore\": 7,\n    \"active\": true\n  }\n]"},"url":"{{koncert_dialers_api}}/conversation/category","description":"Creates new conversation categories. Requires ADMIN or MANAGER role.\n\nRequired fields:\n- conversationType: Type of conversation\n- category: Main category name\n- categoryScore: Score for the category\n- subCategory: Sub-category name\n- subCategoryScore: Score for sub-category\n- resolutionText: Resolution text\n- resolutionTextScore: Score for resolution"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Category created successfully\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"conversationType\": \"Objection\",\n      \"category\": \"Budget Concerns\",\n      \"categoryScore\": 10,\n      \"subCategory\": \"Too Expensive\",\n      \"subCategoryScore\": 8,\n      \"resolutionText\": \"ROI Discussion\",\n      \"resolutionTextScore\": 7,\n      \"active\": true\n    }\n  ]\n}"}],"_postman_id":"1171293d-5197-4ceb-adc3-893aac6fbc2d"},{"name":"Delete Conversation Phrases","id":"ed846614-00b2-4571-a062-c8a31b41a140","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{koncert_dialers_api}}/conversation/category/1,2,3","description":"<p>Deletes one or more conversation phrases by their IDs. Requires ADMIN or MANAGER role.</p>\n<p>Path Parameters:</p>\n<ul>\n<li>ids[]: Comma-separated list of IDs to delete (e.g., 1,2,3)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["conversation","category","1,2,3"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"4c9704e3-1175-4932-a2d3-1f4b865975c4","name":"Success Response","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/conversation/category/1,2,3","description":"Deletes one or more conversation phrases by their IDs. Requires ADMIN or MANAGER role.\n\nPath Parameters:\n- ids[]: Comma-separated list of IDs to delete (e.g., 1,2,3)"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Conversation phrases deleted successfully\",\n  \"deletedCount\": 3\n}"}],"_postman_id":"ed846614-00b2-4571-a062-c8a31b41a140"},{"name":"Get Conversation Phrases with Filters","id":"e7162deb-f6b9-4201-a748-50f995f741fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{koncert_dialers_api}}/conversation/all?page[limit]=0&page[offset]=10&sort[id]=desc&filter[category]=Objection","description":"<p>Retrieves conversation phrases with pagination, sorting, and filtering capabilities.</p>\n<p>Supported filter operators:</p>\n<ul>\n<li>eq (equals)</li>\n<li>ne (not equals)</li>\n<li>gt (greater than)</li>\n<li>lt (less than)</li>\n<li>like (contains)</li>\n<li>in (in list)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["conversation","all"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Page number (zero-based)</p>\n","type":"text/plain"},"key":"page[limit]","value":"0"},{"description":{"content":"<p>Number of items per page</p>\n","type":"text/plain"},"key":"page[offset]","value":"10"},{"description":{"content":"<p>Sort by field and direction (asc/desc)</p>\n","type":"text/plain"},"key":"sort[id]","value":"desc"},{"description":{"content":"<p>Filter format: field:operator:value</p>\n","type":"text/plain"},"key":"filter[category]","value":"Objection"}],"variable":[]}},"response":[{"id":"3eb531a2-c4c1-4481-8b3a-c716ff26d959","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{koncert_dialers_api}}/conversation/all?page=0&size=10&sort=id,desc&filter=category:eq:Objection","host":["{{koncert_dialers_api}}"],"path":["conversation","all"],"query":[{"key":"page","value":"0","description":"Page number (zero-based)"},{"key":"size","value":"10","description":"Number of items per page"},{"key":"sort","value":"id,desc","description":"Sort by field and direction (asc/desc)"},{"key":"filter","value":"category:eq:Objection","description":"Filter format: field:operator:value"}]},"description":"Retrieves conversation phrases with pagination, sorting, and filtering capabilities.\n\nSupported filter operators:\n- eq (equals)\n- ne (not equals)\n- gt (greater than)\n- lt (less than)\n- like (contains)\n- in (in list)"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"content\": [\n      {\n        \"id\": 1,\n        \"category\": \"Objection\",\n        \"subCategory\": \"Price\",\n        \"resolutionText\": \"Value proposition\",\n        \"categoryScore\": 10,\n        \"subCategoryScore\": 5,\n        \"resolutionTextScore\": 8,\n        \"active\": true,\n        \"systemDefined\": false\n      }\n    ],\n    \"totalElements\": 1,\n    \"totalPages\": 1,\n    \"size\": 10,\n    \"number\": 0\n  }\n}"}],"_postman_id":"e7162deb-f6b9-4201-a748-50f995f741fb"},{"name":"Edit Category","id":"353c86b7-aec0-4345-804d-8a9dc9b7a040","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"category\": \"Budget Issues\",\n  \"categoryScore\": 12,\n  \"active\": true\n}"},"url":"{{koncert_dialers_api}}/conversation/all?name=Budget Concerns","description":"<p>Edits an existing category by name. Requires ADMIN or MANAGER role.</p>\n<p>Query Parameters:</p>\n<ul>\n<li>name: Current name of the category to edit</li>\n</ul>\n<p>Body: Updated category details</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["conversation","all"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Current name of the category to edit</p>\n","type":"text/plain"},"key":"name","value":"Budget Concerns"}],"variable":[]}},"response":[{"id":"e7d0d84b-ec0b-411a-be8d-b4f5dc162673","name":"Success Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"category\": \"Budget Issues\",\n  \"categoryScore\": 12,\n  \"active\": true\n}"},"url":{"raw":"{{koncert_dialers_api}}/conversation/all?name=Budget Concerns","host":["{{koncert_dialers_api}}"],"path":["conversation","all"],"query":[{"key":"name","value":"Budget Concerns","description":"Current name of the category to edit"}]},"description":"Edits an existing category by name. Requires ADMIN or MANAGER role.\n\nQuery Parameters:\n- name: Current name of the category to edit\n\nBody: Updated category details"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Category updated successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"category\": \"Budget Issues\",\n    \"categoryScore\": 12,\n    \"active\": true\n  }\n}"}],"_postman_id":"353c86b7-aec0-4345-804d-8a9dc9b7a040"},{"name":"Insert Prospect Conversation Score","id":"0a39b91a-8178-4e5e-a2e6-31bf01250743","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"talkerDetails\": {\n    \"prospectId\": 12345,\n    \"callId\": 67890,\n    \"userId\": 111,\n    \"callDuration\": 300,\n    \"callDate\": \"2025-01-15T10:30:00Z\"\n  },\n  \"conversationPhrase\": [\n    {\n      \"phraseId\": 1,\n      \"category\": \"Objection\",\n      \"subCategory\": \"Price\",\n      \"resolutionText\": \"ROI Discussion\",\n      \"timestamp\": \"2025-01-15T10:32:30Z\",\n      \"confidence\": 0.95\n    },\n    {\n      \"phraseId\": 2,\n      \"category\": \"Interest\",\n      \"subCategory\": \"Feature Question\",\n      \"resolutionText\": \"Demo Scheduled\",\n      \"timestamp\": \"2025-01-15T10:35:00Z\",\n      \"confidence\": 0.88\n    }\n  ]\n}"},"url":"{{koncert_dialers_api}}/conversation","description":"<p>Inserts conversation score data for a prospect.</p>\n<p>Required fields:</p>\n<ul>\n<li>talkerDetails: JSON object containing call/prospect details</li>\n<li>conversationPhrase: Array of conversation phrases detected during the call</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["conversation"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"65f2d81a-9a3c-4ac3-95a0-998aaa344307","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"talkerDetails\": {\n    \"prospectId\": 12345,\n    \"callId\": 67890,\n    \"userId\": 111,\n    \"callDuration\": 300,\n    \"callDate\": \"2025-01-15T10:30:00Z\"\n  },\n  \"conversationPhrase\": [\n    {\n      \"phraseId\": 1,\n      \"category\": \"Objection\",\n      \"subCategory\": \"Price\",\n      \"resolutionText\": \"ROI Discussion\",\n      \"timestamp\": \"2025-01-15T10:32:30Z\",\n      \"confidence\": 0.95\n    },\n    {\n      \"phraseId\": 2,\n      \"category\": \"Interest\",\n      \"subCategory\": \"Feature Question\",\n      \"resolutionText\": \"Demo Scheduled\",\n      \"timestamp\": \"2025-01-15T10:35:00Z\",\n      \"confidence\": 0.88\n    }\n  ]\n}"},"url":"{{koncert_dialers_api}}/conversation","description":"Inserts conversation score data for a prospect.\n\nRequired fields:\n- talkerDetails: JSON object containing call/prospect details\n- conversationPhrase: Array of conversation phrases detected during the call"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Conversation score inserted successfully\",\n  \"data\": {\n    \"prospectId\": 12345,\n    \"callId\": 67890,\n    \"totalScore\": 85,\n    \"phrasesDetected\": 2\n  }\n}"}],"_postman_id":"0a39b91a-8178-4e5e-a2e6-31bf01250743"},{"name":"Edit Sub-Category","id":"963b2929-b7d1-4a39-9f9e-1f7c065ad1a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"subCategory\": \"Price Objection\",\n  \"subCategoryScore\": 9,\n  \"active\": true\n}"},"url":"{{koncert_dialers_api}}/conversation/subCategory?name=Too Expensive","description":"<p>Edits an existing sub-category by name. Requires ADMIN or MANAGER role.</p>\n<p>Query Parameters:</p>\n<ul>\n<li>name: Current name of the sub-category to edit</li>\n</ul>\n<p>Body: Updated sub-category details</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["conversation","subCategory"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Current name of the sub-category to edit</p>\n","type":"text/plain"},"key":"name","value":"Too Expensive"}],"variable":[]}},"response":[{"id":"ed8307d2-94c1-452b-b749-753d967642f5","name":"Success Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"subCategory\": \"Price Objection\",\n  \"subCategoryScore\": 9,\n  \"active\": true\n}"},"url":{"raw":"{{koncert_dialers_api}}/conversation/subCategory?name=Too Expensive","host":["{{koncert_dialers_api}}"],"path":["conversation","subCategory"],"query":[{"key":"name","value":"Too Expensive","description":"Current name of the sub-category to edit"}]},"description":"Edits an existing sub-category by name. Requires ADMIN or MANAGER role.\n\nQuery Parameters:\n- name: Current name of the sub-category to edit\n\nBody: Updated sub-category details"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Sub-category updated successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"subCategory\": \"Price Objection\",\n    \"subCategoryScore\": 9,\n    \"active\": true\n  }\n}"}],"_postman_id":"963b2929-b7d1-4a39-9f9e-1f7c065ad1a1"},{"name":"Update Category by ID","id":"c6492b17-c824-4b7e-a5cd-aa45ecd62208","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"conversationType\": \"Objection\",\n  \"category\": \"Budget Concerns Updated\",\n  \"categoryScore\": 15,\n  \"subCategory\": \"Too Expensive\",\n  \"subCategoryScore\": 10,\n  \"resolutionText\": \"ROI Discussion Updated\",\n  \"resolutionTextScore\": 12,\n  \"active\": true\n}"},"url":"{{koncert_dialers_api}}/conversation/category/1","description":"<p>Updates a category by its ID. Requires ADMIN or MANAGER role.</p>\n<p>Path Parameters:</p>\n<ul>\n<li>id: The ID of the category to update (must be positive)</li>\n</ul>\n<p>Body: Complete updated category details</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"path":["conversation","category","1"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c6247600-7d46-4985-92d1-63cd5aa3d7a3","name":"Success Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"conversationType\": \"Objection\",\n  \"category\": \"Budget Concerns Updated\",\n  \"categoryScore\": 15,\n  \"subCategory\": \"Too Expensive\",\n  \"subCategoryScore\": 10,\n  \"resolutionText\": \"ROI Discussion Updated\",\n  \"resolutionTextScore\": 12,\n  \"active\": true\n}"},"url":"{{koncert_dialers_api}}/conversation/category/1","description":"Updates a category by its ID. Requires ADMIN or MANAGER role.\n\nPath Parameters:\n- id: The ID of the category to update (must be positive)\n\nBody: Complete updated category details"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Category updated successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"conversationType\": \"Objection\",\n    \"category\": \"Budget Concerns Updated\",\n    \"categoryScore\": 15,\n    \"subCategory\": \"Too Expensive\",\n    \"subCategoryScore\": 10,\n    \"resolutionText\": \"ROI Discussion Updated\",\n    \"resolutionTextScore\": 12,\n    \"active\": true\n  }\n}"}],"_postman_id":"c6492b17-c824-4b7e-a5cd-aa45ecd62208"}],"id":"800e32be-9e7e-4021-8914-8c8673c7ba0c","description":"<p>The Conversation API provides endpoints for managing conversation phrases, categories, sub-categories, and conversation scores. This API is used to track and analyze conversation patterns during calls.</p>\n","_postman_id":"800e32be-9e7e-4021-8914-8c8673c7ba0c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Customer App Details","item":[{"name":"Customer Details","id":"a5e0020c-6419-4a6b-b3cb-0d4ab63354c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://{{koncert_dialers_api}}/customerAppDetails","description":"<p>This request used to get customer app details for current org and spare fields should be applied for this API.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary value of the list.</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmType  <br /><code>String</code></td>\n<td>CRM of the org</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>customerName  <br /><code>String</code></td>\n<td>Name of the org</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>thirdPartyInstanceUrl  <br /><code>String</code></td>\n<td>URL of the third party app</td>\n<td><code>Updatable</code></td>\n</tr>\n<tr>\n<td>outreachEnable  <br /><code>Boolean</code></td>\n<td>org level flag for outreach</td>\n<td><code>Updatable</code></td>\n</tr>\n<tr>\n<td>salesLoftEnable  <br /><code>Boolean</code></td>\n<td>org level flag for salesloft</td>\n<td><code>Updatable</code></td>\n</tr>\n<tr>\n<td>gongEnabled  <br /><code>Boolean</code></td>\n<td>org level flag for gong</td>\n<td><code>Updatable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"http","path":["customerAppDetails"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"5502321a-43b2-4cb2-94db-9755f0b72f2c","name":"Customer Details","originalRequest":{"method":"GET","header":[],"url":"http://{{koncert_dialers_api}}/customerAppDetails"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 11074,\r\n            \"crmType\": \"standalone\",\r\n            \"customerName\": \"Kate OR Test ORG - DND - Do Not Delete\",\r\n            \"customerAppUrl\": null,\r\n            \"customerAppContextName\": null,\r\n            \"sfOrganizationName\": null,\r\n            \"sfConsumerKey\": null,\r\n            \"sfConsumerSecret\": null,\r\n            \"sfCallBackUrl\": null,\r\n            \"shadeTreeIntegrationAllowed\": null,\r\n            \"areaBasedCalleridEnabled\": null,\r\n            \"dialerVersion\": null,\r\n            \"encryptedFlag\": null,\r\n            \"salesLoftConsumerKey\": null,\r\n            \"salesLoftConsumerSecret\": null,\r\n            \"salesLoftRedirectURL\": null,\r\n            \"salesloftAdminLoginName\": null,\r\n            \"sfAccessToken\": null,\r\n            \"sfInstanceUrl\": null,\r\n            \"outreachConsumerKey\": \"3588202AD8E053FAA4FF4E0461EA019429EA3EAD3F4C974B7A73460467DB5F305520D677DC8E42E4D4E35BFB1AAE9BA3\",\r\n            \"outreachConsumerSecret\": \"D999CA35784DB871BE6171EFE0915AC5A2D7876372A2E97FB3CCC6CC404F8818A92D3D1B399C4204FA6755C6CF84AF9A\",\r\n            \"outreachRedirectURL\": \"https://devqa.koncert.com/outreachcb.action\",\r\n            \"outreachAdminLoginName\": null,\r\n            \"thirdPartyInstanceUrl\": null,\r\n            \"outreachEnable\": true,\r\n            \"salesLoftEnable\": false,\r\n            \"mscrmConsumerAadtenantDomain\": null,\r\n            \"outreachAccessToken\": null,\r\n            \"outreachRefreshToken\": null,\r\n            \"outreachVerifiedFlag\": null,\r\n            \"outreachAccessTokenCreatedAt\": null,\r\n            \"outreachAccessTokenExpiresIn\": null,\r\n            \"salesloftAccessToken\": null,\r\n            \"salesloftRefreshToken\": null,\r\n            \"salesloftVerifiedFlag\": null,\r\n            \"salesloftAccessTokenCreatedAt\": null,\r\n            \"salesloftAccessTokenExpiresIn\": null,\r\n            \"showCallStatus\": null,\r\n            \"sendLowBalanceNotification\": null,\r\n            \"disconnectThePhone\": null,\r\n            \"disableSendEmailFeature\": null,\r\n            \"disableCallLogForEachDial\": null,\r\n            \"autoCallLogForEachDial\": null,\r\n            \"trackRoi\": null,\r\n            \"collapseClickDialer\": null,\r\n            \"chooseCallLogForEachDial\": null,\r\n            \"callLogAddVmNameToActivity\": null,\r\n            \"email\": null,\r\n            \"defaultSessionoutTime\": null,\r\n            \"metricsInformation\": null,\r\n            \"checkCallStatusEvery\": null,\r\n            \"callLogForEachVmSubjectFieldName\": null,\r\n            \"callLogForEachVmDescriptionFieldName\": null,\r\n            \"callLogForEachDialSubjectFieldName\": null,\r\n            \"callLogForEachDialDescriptionFieldName\": null,\r\n            \"retriveTrackRoiOutcomes\": null,\r\n            \"gongEnable\": false,\r\n            \"gongAdminLoginName\": null,\r\n            \"gongVerifiedFlag\": null,\r\n            \"apolloApiKey\": null,\r\n            \"isApolloLicenseEnabled\": null,\r\n            \"slackAccessToken\": null,\r\n            \"slackRefreshToken\": null,\r\n            \"slackAccessTokenCreatedAt\": null,\r\n            \"slackAccessTokenExpiresIn\": null,\r\n            \"slackVerifiedFlag\": false,\r\n            \"slackUserId\": null,\r\n            \"slackAppId\": null,\r\n            \"slackInstanceUrl\": null,\r\n            \"callDispositionMapping\": \"USE_OUTREACH_DISPOSITION\"\r\n        }\r\n    ]\r\n}"},{"id":"5afb51b5-95ff-4ad7-a6d9-5c94e6f12f82","name":"Customer Details for specific fields","originalRequest":{"method":"GET","header":[],"url":"http://{{koncert_dialers_api}}/customerAppDetails"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 730,\r\n            \"crmType\": \"standalone\",\r\n            \"salesLoftEnable\": true\r\n        }\r\n    ]\r\n}"}],"_postman_id":"a5e0020c-6419-4a6b-b3cb-0d4ab63354c1"}],"id":"b3b3a061-b506-4141-af42-0884eade3ec8","description":"<p>To get customer app details for authorize , enable and disable third party CRM in dialers</p>\n","_postman_id":"b3b3a061-b506-4141-af42-0884eade3ec8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Customize Column","item":[{"name":"All Customize Column","id":"079107d7-0465-44ac-8cae-bec727013418","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/customizeViews","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["customizeViews"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"2c256a76-c489-4da5-b5a8-937af3e5f2b2","name":"All Customize Column","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/customizeViews?filter[recordType]=Default&filter[tabName]=call_list_records&filter[user][id]=:userId","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["customizeViews"],"query":[{"key":"filter[recordType]","value":"Default"},{"key":"filter[tabName]","value":"call_list_records"},{"key":"filter[user][id]","value":":userId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 60668,\r\n            \"tabName\": \"call_list_records\",\r\n            \"selectedColumns\": \"call_list_records.account_name,call_list_records.contact_name,call_list_records.phone,call_list_records.title,call_list_records.email_id,call_list_records.city,call_list_records.state,call_list_records.sf_report_name,call_list_records.record_type,call_list_records.subject, call_list_records.custom_phone_1, call_list_records.custom_phone_2,call_list_records.custom_phone_1,call_list_records.custom_numeric_1,call_list_records.custom_phone_3,call_list_records.custom_integer_1,call_list_records.custom_integer_2,call_list_records.custom_integer_3,call_list_records.custom_varchar_6,call_list_records.custom_varchar_5\",\r\n            \"selectedColumnsMetadata\": \"account_name : Account Name : 150px : left : Yes : Account Name : Y : N ~ contact_name : Contact Name : 150px : left : Yes : Contact Name : Y : N ~ phone : Phone : 125px : left : Yes : Phone : Y : Y ~ title : Title : 100px : left   : Yes : Title : Y : Y ~ email_id : Email : 100px : left : Yes : Email : Y : Y ~ city : City : 100px : left : Yes : City : Y : Y ~ state : State : 100px : left : Yes : State : Y : Y ~ sf_report_name : Report Name : 100px : left : Yes : Report Name : Y : Y ~ record_type : Record Type : 100px : left : Yes : Record Type : Y : Y ~ subject : Subject : 150px : left : Yes : Subject : Y : Y ~custom_phone_1 : Mobile : 10px : left :  Yes  : Mobile : Y : Y ~custom_phone_2 : Direct Phone : 10px : left :  Yes  : Direct Phone : Y : Y ~custom_phone_1 : Mobile : 125px : left : Yes : Mobile : Y : Y~custom_numeric_1 : Decimal number field : 100px : left : Yes : Decimal number field : Y : Y~custom_phone_3 : Decimal Number Phone Field 2 : 100px : left : Yes : Decimal Number Phone Field 2 : Y : Y~custom_integer_1 : Test Integer : 100px : left : Yes : Test Integer : Y : Y~custom_integer_2 : Decimal Integer : 100px : left : Yes : Decimal Integer : Y : Y~custom_integer_3 : Integer : 100px : left : Yes : Integer : Y : Y~custom_varchar_6 : aTest Field : 100px : left : Yes : aTest Field : Y : Y~custom_varchar_5 : Test Field : 100px : left : Yes : Test Field : Y : Y\",\r\n            \"recordType\": \"Default\",\r\n            \"defaultFlag\": \"Y\",\r\n            \"dialingScreenView\": \"full\",\r\n            \"columnMetadata\": {\r\n                \"account_name\": {\r\n                    \"fieldName\": \"account_name\",\r\n                    \"label\": \"Account Name\",\r\n                    \"width\": \"150px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Account Name\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"N\"\r\n                },\r\n                \"contact_name\": {\r\n                    \"fieldName\": \"contact_name\",\r\n                    \"label\": \"Contact Name\",\r\n                    \"width\": \"150px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Contact Name\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"N\"\r\n                },\r\n                \"phone\": {\r\n                    \"fieldName\": \"phone\",\r\n                    \"label\": \"Phone\",\r\n                    \"width\": \"125px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Phone\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"title\": {\r\n                    \"fieldName\": \"title\",\r\n                    \"label\": \"Title\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Title\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"email_id\": {\r\n                    \"fieldName\": \"email_id\",\r\n                    \"label\": \"Email\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Email\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"city\": {\r\n                    \"fieldName\": \"city\",\r\n                    \"label\": \"City\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"City\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"state\": {\r\n                    \"fieldName\": \"state\",\r\n                    \"label\": \"State\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"State\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"sf_report_name\": {\r\n                    \"fieldName\": \"sf_report_name\",\r\n                    \"label\": \"Report Name\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Report Name\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"record_type\": {\r\n                    \"fieldName\": \"record_type\",\r\n                    \"label\": \"Record Type\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Record Type\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"subject\": {\r\n                    \"fieldName\": \"subject\",\r\n                    \"label\": \"Subject\",\r\n                    \"width\": \"150px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Subject\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_phone_1\": {\r\n                    \"fieldName\": \"custom_phone_1\",\r\n                    \"label\": \"Mobile\",\r\n                    \"width\": \"10px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Mobile\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_phone_2\": {\r\n                    \"fieldName\": \"custom_phone_2\",\r\n                    \"label\": \"Direct Phone\",\r\n                    \"width\": \"10px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Direct Phone\",\r\n                    \"order\": 1,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_numeric_1\": {\r\n                    \"fieldName\": \"custom_numeric_1\",\r\n                    \"label\": \"Decimal number field\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Decimal number field\",\r\n                    \"order\": 4,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_phone_3\": {\r\n                    \"fieldName\": \"custom_phone_3\",\r\n                    \"label\": \"Decimal Number Phone Field 2\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Decimal Number Phone Field 2\",\r\n                    \"order\": 5,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_integer_1\": {\r\n                    \"fieldName\": \"custom_integer_1\",\r\n                    \"label\": \"Test Integer\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Test Integer\",\r\n                    \"order\": 6,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_integer_2\": {\r\n                    \"fieldName\": \"custom_integer_2\",\r\n                    \"label\": \"Decimal Integer\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Decimal Integer\",\r\n                    \"order\": 7,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_integer_3\": {\r\n                    \"fieldName\": \"custom_integer_3\",\r\n                    \"label\": \"Integer\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Integer\",\r\n                    \"order\": 8,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_varchar_6\": {\r\n                    \"fieldName\": \"custom_varchar_6\",\r\n                    \"label\": \"aTest Field\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"aTest Field\",\r\n                    \"order\": 10,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                },\r\n                \"custom_varchar_5\": {\r\n                    \"fieldName\": \"custom_varchar_5\",\r\n                    \"label\": \"Test Field\",\r\n                    \"width\": \"100px\",\r\n                    \"align\": \"left\",\r\n                    \"wrap\": \"Yes\",\r\n                    \"displayName\": \"Test Field\",\r\n                    \"order\": 11,\r\n                    \"nativeColumn\": \"Y\",\r\n                    \"daEditable\": \"Y\"\r\n                }\r\n            },\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 28847\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 1,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"079107d7-0465-44ac-8cae-bec727013418"},{"name":"Customize Column by Id","id":"69385872-1fae-4159-abfe-f1ae98b4740e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/customizeViews/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["customizeViews",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"0408fdba-7e59-4c2c-a270-5861100e4715","type":"any","value":"Customize Column Id","key":"id"}]}},"response":[{"id":"d6814e14-3651-4293-9c8f-24936da25f7b","name":"Customize Column","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://{{koncert_dialers_api}}/customizeViews/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["customizeViews",":id"],"variable":[{"key":"id","value":"Customize Column Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 11070,\n            \"tabName\": \"call_list_records\",\n            \"selectedColumns\": \"call_list_records.abc,call_list_records.account_name,call_list_records.contact_name\",\n            \"selectedColumnsMetadata\": \"abc:Subject:150px:Yes:Subject:Y:Y~account_name:Account Name:150px:Yes:Account:Y:Y~contact_name:Contact Name:150px:Yes:Contact:Y:Y\",\n            \"isExtensionAvailable\": \"N\",\n            \"isStatusAvailable\": \"N\",\n            \"recordType\": \"Activities\",\n            \"defaultFlag\": \"N\",\n            \"crmType\": null,\n            \"dialingScreenView\": \"default\",\n            \"noOfColumnsForDisplay\": null,\n            \"columnMetadata\": {\n                \"subject\": {\n                    \"fieldName\": \"subject\",\n                    \"label\": \"Subject\",\n                    \"width\": \"150px\",\n                    \"align\": \"left\",\n                    \"wrap\": \"Yes\",\n                    \"displayName\": \"Subject\",\n                    \"order\": 1,\n                    \"nativeColumn\": \"Y\",\n                    \"daEditable\": \"Y\"\n                },\n                \"account_name\": {\n                    \"fieldName\": \"account_name\",\n                    \"label\": \"Account Name\",\n                    \"width\": \"150px\",\n                    \"align\": \"left\",\n                    \"wrap\": \"Yes\",\n                    \"displayName\": \"Account\",\n                    \"order\": 2,\n                    \"nativeColumn\": \"Y\",\n                    \"daEditable\": \"Y\"\n                },\n                \"contact_name\": {\n                    \"fieldName\": \"contact_name\",\n                    \"label\": \"Contact Name\",\n                    \"width\": \"150px\",\n                    \"align\": \"left\",\n                    \"wrap\": \"Yes\",\n                    \"displayName\": \"Contact\",\n                    \"order\": 3,\n                    \"nativeColumn\": \"Y\",\n                    \"daEditable\": \"Y\"\n                }\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"69385872-1fae-4159-abfe-f1ae98b4740e"},{"name":"Update","id":"7921d7a0-8adb-4a57-9222-b74ca0ac4de9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"tabName\": \"call_list_records\",\r\n    \"customizeColumnMetadata\": [\r\n        {\r\n            \"fieldName\": \"abc\",\r\n            \"label\": \"Subject\",\r\n            \"width\": \"150px\",\r\n            \"align\": \"left\",\r\n            \"wrap\": \"Yes\",\r\n            \"displayName\": \"Subject\",\r\n            \"order\": 1\r\n        },\r\n        {\r\n            \"fieldName\": \"account_name\",\r\n            \"label\": \"Account Name\",\r\n            \"displayName\": \"Account\",\r\n            \"width\": \"150px\",\r\n            \"align\": \"left\",\r\n            \"wrap\": \"Yes\",\r\n            \"order\": 2\r\n        },\r\n        {\r\n            \"fieldName\": \"contact_name\",\r\n            \"label\": \"Contact Name\",\r\n            \"displayName\": \"Contact\",\r\n            \"width\": \"150px\",\r\n            \"align\": \"left\",\r\n            \"wrap\": \"Yes\",\r\n            \"order\": 3\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/customizeViews/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["customizeViews",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"d3985c26-9f40-4239-9dea-9d4fde49e524","type":"any","value":"Customize Column Id","key":"id"}]}},"response":[{"id":"22d1bc2b-a031-4a13-bc68-a309fae46056","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"tabName\": \"call_list_records\",\r\n    \"customizeColumnMetadata\": [\r\n        {\r\n            \"fieldName\": \"abc\",\r\n            \"label\": \"Subject\",\r\n            \"width\": \"150px\",\r\n            \"align\": \"left\",\r\n            \"wrap\": \"Yes\",\r\n            \"displayName\": \"Subject\",\r\n            \"order\": 1\r\n        },\r\n        {\r\n            \"fieldName\": \"account_name\",\r\n            \"label\": \"Account Name\",\r\n            \"displayName\": \"Account\",\r\n            \"width\": \"150px\",\r\n            \"align\": \"left\",\r\n            \"wrap\": \"Yes\",\r\n            \"order\": 2\r\n        },\r\n        {\r\n            \"fieldName\": \"contact_name\",\r\n            \"label\": \"Contact Name\",\r\n            \"displayName\": \"Contact\",\r\n            \"width\": \"150px\",\r\n            \"align\": \"left\",\r\n            \"wrap\": \"Yes\",\r\n            \"order\": 3\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/customizeViews/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["customizeViews",":id"],"variable":[{"key":"id","value":"Customize Column Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 60668,\n            \"tabName\": \"call_list_records\",\n            \"selectedColumns\": \"call_list_records.account_name,call_list_records.phone,call_list_records.title,call_list_records.contact_name,call_list_records.email_id,call_list_records.city,call_list_records.state,call_list_records.sf_report_name,call_list_records.record_type,call_list_records.subject,call_list_records.custom_phone_1,call_list_records.custom_phone_2,call_list_records.custom_numeric_1,call_list_records.custom_phone_3,call_list_records.custom_integer_1,call_list_records.custom_integer_2,call_list_records.custom_integer_3,call_list_records.custom_varchar_6,call_list_records.custom_varchar_5,call_list_records.custom_phone_3_sub_1,call_list_records.custom_phone_3_sub_2,call_list_records.custom_phone_2_sub_1,call_list_records.custom_phone_2_sub_2,call_list_records.custom_phone_1_sub_1,call_list_records.custom_phone_1_sub_2,call_list_records.phone_sub_1,call_list_records.phone_sub_2\",\n            \"selectedColumnsMetadata\": \"account_name : Account Name : 150px : left : Yes : Account Name: Y : Y ~ phone : Phone : 125px : left : Yes : Phone: Y : Y ~ title : Title : 100px : left : Yes : Title: Y : Y ~ contact_name : Contact Name : 150px : left : Yes : Contact Name: Y : Y ~ email_id : Email : 100px : left : Yes : Email: Y : Y ~ city : City : 100px : left : Yes : City: Y : Y ~ state : State : 100px : left : Yes : State: Y : Y ~ sf_report_name : Report Name : 100px : left : Yes : Report Name: Y : Y ~ record_type : Record Type : 100px : left : Yes : Record Type: Y : Y ~ subject : Subject : 150px : left : Yes : Subject: Y : Y ~ custom_phone_1 : Mobile : 10px : left : Yes : Mobile: Y : Y ~ custom_phone_2 : Direct Phone : 10px : left : Yes : Direct Phone: Y : Y ~ custom_numeric_1 : Decimal number field : 100px : left : Yes : Decimal number field: Y : Y ~ custom_phone_3 : Decimal Number Phone Field 2 : 100px : left : Yes : Decimal Number Phone Field 2: Y : Y ~ custom_integer_1 : Test Integer : 100px : left : Yes : Test Integer: Y : Y ~ custom_integer_2 : Decimal Integer : 100px : left : Yes : Decimal Integer: Y : Y ~ custom_integer_3 : Integer : 100px : left : Yes : Integer: Y : Y ~ custom_varchar_6 : aTest Field : 100px : left : Yes : aTest Field: Y : Y ~ custom_varchar_5 : Test Field : 100px : left : Yes : Test Field: Y : Y ~ custom_phone_3_sub_1 : Decimal Number Phone Field 2 Sub Phone 1 : 100px : left : Yes : Decimal Number Phone Field 2 Sub Phone 1: Y : Y ~ custom_phone_3_sub_2 : Decimal Number Phone Field 2 Sub Phone 2 : 100px : left : Yes : Decimal Number Phone Field 2 Sub Phone 2: Y : Y ~ custom_phone_2_sub_1 : Direct Phone Sub Phone 1 : 100px : left : Yes : Direct Phone Sub Phone 1: Y : Y ~ custom_phone_2_sub_2 : Direct Phone Sub Phone 2 : 100px : left : Yes : Direct Phone Sub Phone 2: Y : Y ~ custom_phone_1_sub_1 : Mobile Sub Phone 1 : 100px : left : Yes : Mobile Sub Phone 1: Y : Y ~ custom_phone_1_sub_2 : Mobile Sub Phone 2 : 100px : left : Yes : Mobile Sub Phone 2: Y : Y ~ phone_sub_1 : Phone Sub Phone 1 : 100px : left : Yes : Phone Sub Phone 1: Y : Y ~ phone_sub_2 : Phone Sub Phone 2 : 100px : left : Yes : Phone Sub Phone 2: Y : Y ~\",\n            \"recordType\": \"Default\",\n            \"defaultFlag\": \"Y\",\n            \"dialingScreenView\": \"full\",\n            \"columnMetadata\": {\n                \"account_name\": {\n                    \"fieldName\": \"account_name\",\n                    \"label\": \"Account Name\",\n                    \"width\": \"150px\",\n                    \"align\": \"left\",\n                    \"wrap\": \"Yes\",\n                    \"displayName\": \"Account Name\",\n                    \"order\": 1,\n                    \"nativeColumn\": \"Y\",\n                    \"daEditable\": \"Y\"\n                },\n                \"phone\": {\n                    \"fieldName\": \"phone\",\n                    \"label\": \"Phone\",\n                    \"width\": \"125px\",\n                    \"align\": \"left\",\n                    \"wrap\": \"Yes\",\n                    \"displayName\": \"Phone\",\n                    \"order\": 2,\n                    \"nativeColumn\": \"Y\",\n                    \"daEditable\": \"Y\"\n                },\n                \"title\": {\n                    \"fieldName\": \"title\",\n                    \"label\": \"Title\",\n                    \"width\": \"100px\",\n                    \"align\": \"left\",\n                    \"wrap\": \"Yes\",\n                    \"displayName\": \"Title\",\n                    \"order\": 3,\n                    \"nativeColumn\": \"Y\",\n                    \"daEditable\": \"Y\"\n                },\n                \"contact_name\": {\n                    \"fieldName\": \"contact_name\",\n                    \"label\": \"Contact Name\",\n                    \"width\": \"150px\",\n                    \"align\": \"left\",\n                    \"wrap\": \"Yes\",\n                    \"displayName\": \"Contact Name\",\n                    \"order\": 4,\n                    \"nativeColumn\": \"Y\",\n                    \"daEditable\": \"Y\"\n                },\n                \"email_id\": {\n                    \"fieldName\": \"email_id\",\n                    \"label\": \"Email\",\n                    \"width\": \"100px\",\n                    \"align\": \"left\",\n                    \"wrap\": \"Yes\",\n                    \"displayName\": \"Email\",\n                    \"order\": 5,\n                    \"nativeColumn\": \"Y\",\n                    \"daEditable\": \"Y\"\n                }\n            },\n             \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 28847\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"7921d7a0-8adb-4a57-9222-b74ca0ac4de9"}],"id":"e123a7fe-5ff6-4f4d-bdc0-833c798c8614","description":"<p>To customize the default column structure for my session</p>\n","_postman_id":"e123a7fe-5ff6-4f4d-bdc0-833c798c8614","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Dashboard","item":[{"name":"Usage Trend","id":"678c1ce1-b56c-4a51-acbb-ddf77f886c68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/dashboard?productType=&requestDataType=KUTR&logicalVariable=Current%20Month&startDate=11/1/2025&endDate=11/30/2025&userIds=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"productType","value":""},{"key":"requestDataType","value":"KUTR"},{"key":"logicalVariable","value":"Current%20Month"},{"key":"startDate","value":"11/1/2025"},{"key":"endDate","value":"11/30/2025"},{"key":"userIds","value":""}],"variable":[]}},"response":[{"id":"35c8340d-6518-4b7a-ad00-9949d3b9947f","name":"Usage Trend","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/dashboard?productType=&requestDataType=KUTR&logicalVariable=Current%20Month&startDate=11/1/2025&endDate=11/30/2025&userIds=","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["dashboard"],"query":[{"key":"productType","value":""},{"key":"requestDataType","value":"KUTR"},{"key":"logicalVariable","value":"Current%20Month"},{"key":"startDate","value":"11/1/2025"},{"key":"endDate","value":"11/30/2025"},{"key":"userIds","value":""}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"totalDials\": 47,\n            \"totalConnects\": 43,\n            \"validConnects\": 23,\n            \"meetingCount\": \"9\",\n            \"positiveConnects\": 21\n        }\n    ]\n}"}],"_postman_id":"678c1ce1-b56c-4a51-acbb-ddf77f886c68"},{"name":"Followup","id":"a5685c73-8c0d-41a3-90ff-01de32098a4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard",""],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c90f8004-e756-42a5-a02a-50f0eafc7a0c","name":"Followup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/dashboard/import/pendingtask"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"reportName\": \"PAST_DUE\",\n            \"recordsAvailable\": 17,\n            \"recordsImported\": 0,\n            \"duplicateCount\": 0,\n            \"reportError\": \"\",\n            \"missingColumnDetails\": {},\n            \"additionalFilterDetails\": {},\n            \"prospectsAssigned\": 0,\n            \"cadenceStatus\": null,\n            \"cadenceError\": [],\n            \"parkingLotCount\": 0,\n            \"ownedProspectsCount\": 0,\n            \"errorProspectCount\": 0,\n            \"duplicateAssignedProspectCount\": 0,\n            \"totalProspectCount\": 0,\n            \"lastImportedDate\": \"2025-11-19T08:11:28\"\n        },\n        {\n            \"reportName\": \"NOT_DUE\",\n            \"recordsAvailable\": 12,\n            \"recordsImported\": 0,\n            \"duplicateCount\": 0,\n            \"reportError\": \"\",\n            \"missingColumnDetails\": {},\n            \"additionalFilterDetails\": {},\n            \"prospectsAssigned\": 0,\n            \"cadenceStatus\": null,\n            \"cadenceError\": [],\n            \"parkingLotCount\": 0,\n            \"ownedProspectsCount\": 0,\n            \"errorProspectCount\": 0,\n            \"duplicateAssignedProspectCount\": 0,\n            \"totalProspectCount\": 0,\n            \"lastImportedDate\": \"2025-11-19T08:11:28\"\n        }\n    ]\n}"}],"_postman_id":"a5685c73-8c0d-41a3-90ff-01de32098a4a"},{"name":"Call Summary","id":"633585ec-5098-4040-a69d-2434b2d85d11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard?productType=&requestDataType=dialmetrics&logicalVariable=Current%20Month&startDate=11/1/2025&endDate=11/30/2025&userIds=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"productType","value":""},{"key":"requestDataType","value":"dialmetrics"},{"key":"logicalVariable","value":"Current%20Month"},{"key":"startDate","value":"11/1/2025"},{"key":"endDate","value":"11/30/2025"},{"key":"userIds","value":""}],"variable":[]}},"response":[{"id":"678f31eb-442b-47ae-828f-61e801c34585","name":"Call Summary","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/dashboard?productType=&requestDataType=dialmetrics&logicalVariable=Current%20Month&startDate=11/1/2025&endDate=11/30/2025&userIds=","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["dashboard"],"query":[{"key":"productType","value":""},{"key":"requestDataType","value":"dialmetrics"},{"key":"logicalVariable","value":"Current%20Month"},{"key":"startDate","value":"11/1/2025"},{"key":"endDate","value":"11/30/2025"},{"key":"userIds","value":""}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"talkerId\": 20991,\n            \"talkerName\": \"Saravanan K\",\n            \"totalDials\": 95,\n            \"validConnects\": 44,\n            \"followUpCount\": \"14\",\n            \"meetingCount\": 18,\n            \"positiveConnects\": 33,\n            \"doNotCall\": 24\n        }\n    ]\n}"}],"_postman_id":"633585ec-5098-4040-a69d-2434b2d85d11"},{"name":"Recently Used","id":"6ed2effa-94c8-40bd-a750-fe454528f86f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/list/recentlyUsed","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard","list","recentlyUsed"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"900f640d-e6b1-4222-93c9-27eb05b37ece","name":"Recently Used","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/list/recentlyUsed"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 61063,\n            \"sessionEndTime\": \"2025-11-14T13:18:29Z\",\n            \"name\": \"Prospect Lists_Contacts.csv\"\n        }\n    ]\n}"}],"_postman_id":"6ed2effa-94c8-40bd-a750-fe454528f86f"},{"name":"Followup Count","id":"e147e602-9e3e-43f5-9ea1-ca42e2db2993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/followup/counts","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard","followup","counts"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7ad4840d-3041-4b32-899e-9d8d5ef99b47","name":"Followup Count","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/followup/counts"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"pastDueCount\": 3,\n    \"notDueCount\": 2,\n    \"crm\": {\n        \"pastDueCount\": 18,\n        \"notDueCount\": 12\n    },\n    \"response\": \"success\"\n}"}],"_postman_id":"e147e602-9e3e-43f5-9ea1-ca42e2db2993"},{"name":"Pending Calls Count","id":"062d460e-a4bc-4711-a745-c354ad0eae64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/pendingCallsCount/{crm}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard","pendingCallsCount","{crm}"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"863d781a-5aee-4491-8598-32a711a3c3cd","name":"Pending Calls Count","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/pendingCallsCount/{crm}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"pendingCallsCount\": 321,\n            \"manualCallsCount\": 6\n        }\n    ]\n}"}],"_postman_id":"062d460e-a4bc-4711-a745-c354ad0eae64"},{"name":"Crm Followups","id":"49ab2168-acde-460f-b5ab-778582a32e25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/crm/followups?page[limit]=100&page[offset]=0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard","crm","followups"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"page[limit]","value":"100"},{"key":"page[offset]","value":"0"}],"variable":[]}},"response":[{"id":"98410d77-9497-4016-8764-8d1d1b954b1e","name":"Crm Followups","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/dashboard/crm/followups?page[limit]=100&page[offset]=0","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["dashboard","crm","followups"],"query":[{"key":"page[limit]","value":"100"},{"key":"page[offset]","value":"0"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"subject\": \"Call Back\",\r\n            \"contactName\": \"Alex Ware\",\r\n            \"accountName\": \"Testing.com\",\r\n            \"title\": \"Director\",\r\n            \"phone\": \"(603) 952-2500\",\r\n            \"emailId\": \"testing102@testing.com\",\r\n            \"recordType\": \"Activity\",\r\n            \"crmType\": \"hubspot\",\r\n            \"sequenceName\": null,\r\n            \"sequenceStepName\": null,\r\n            \"dueDate\": \"2025-07-04T00:00:00Z\",\r\n            \"linkedinUrl\": \"https://www.linkedin.com/in/victoria-gagnon/\",\r\n            \"listType\": \"Past due\",\r\n            \"crmId\": \"89557953238\",\r\n            \"createdDate\": \"2025-11-19T08:00:09\"\r\n        }],\r\n    \"paging\": {\r\n        \"totalCount\": 29,\r\n        \"limit\": 100,\r\n        \"offset\": 0\r\n    }\r\n\r\n}"}],"_postman_id":"49ab2168-acde-460f-b5ab-778582a32e25"},{"name":"Followups","id":"94df1a6e-e9af-49a2-8868-fea7595c5bc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/followups?page[limit]=100&page[offset]=0&filter[isCompletedActivity]=false&filter[sourceCrmType]=standalone&filter[taskType]=CALL&filter[talkerId]=20991","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard","followups"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"page[limit]","value":"100"},{"key":"page[offset]","value":"0"},{"key":"filter[isCompletedActivity]","value":"false"},{"key":"filter[sourceCrmType]","value":"standalone"},{"key":"filter[taskType]","value":"CALL"},{"key":"filter[talkerId]","value":"20991"}],"variable":[]}},"response":[{"id":"f92b52c6-c43a-4477-bfd6-765dc54750f9","name":"Followups","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/dashboard/followups?page[limit]=100&page[offset]=0&filter[isCompletedActivity]=false&filter[sourceCrmType]=standalone&filter[taskType]=CALL&filter[talkerId]=20991","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["dashboard","followups"],"query":[{"key":"page[limit]","value":"100"},{"key":"page[offset]","value":"0"},{"key":"filter[isCompletedActivity]","value":"false"},{"key":"filter[sourceCrmType]","value":"standalone"},{"key":"filter[taskType]","value":"CALL"},{"key":"filter[talkerId]","value":"20991"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"followUpSubject\": \"Call Back\",\r\n            \"contactName\": \"Abdiel Pittman\",\r\n            \"accountName\": \"Tesing Prospect Data\",\r\n            \"title\": \"Director\",\r\n            \"phoneNumber\": \"(603) 952-2500\",\r\n            \"email\": \"Testing576@testing.com\",\r\n            \"followUpDate\": \"2025-07-29T08:00:00Z\",\r\n            \"crmId\": \"crmgenkey_6e6dfc3b-c00d-3e4d-82d2-ccfbb07f6e1c\",\r\n            \"callListRecordsPk\": 2960051,\r\n            \"phoneType\": \"phone\"\r\n        }\r\n        \r\n        ],\"paging\": {\r\n        \"totalCount\": 5,\r\n        \"limit\": 100,\r\n        \"offset\": 0\r\n    }\r\n\r\n}"}],"_postman_id":"94df1a6e-e9af-49a2-8868-fea7595c5bc0"},{"name":"Call Back","id":"98e044d1-dc9f-45b1-80fa-9ccde7a0e3af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/inboundReport?filter[startDate]=2025-11-01T00:00:00Z&filter[endDate]=2025-11-30T23:59:59Z&page[limit]=100&page[offset]=0&sort[createdDatetime]=des","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["inboundReport"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[startDate]","value":"2025-11-01T00:00:00Z"},{"key":"filter[endDate]","value":"2025-11-30T23:59:59Z"},{"key":"page[limit]","value":"100"},{"key":"page[offset]","value":"0"},{"key":"sort[createdDatetime]","value":"des"}],"variable":[]}},"response":[{"id":"1200adef-703c-4d3d-95c6-4c0643ee1777","name":"Call Back","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/inboundReport?filter[startDate]=2025-11-01T00:00:00Z&filter[endDate]=2025-11-30T23:59:59Z&page[limit]=100&page[offset]=0&sort[createdDatetime]=des","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["inboundReport"],"query":[{"key":"filter[startDate]","value":"2025-11-01T00:00:00Z"},{"key":"filter[endDate]","value":"2025-11-30T23:59:59Z"},{"key":"page[limit]","value":"100"},{"key":"page[offset]","value":"0"},{"key":"sort[createdDatetime]","value":"des"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 499,\n            \"inboundFromPhoneNumber\": \"+919363739096\",\n            \"inboundToPhoneNumber\": \"+19383006813\",\n            \"inboundCallForwardNumber\": \"+16039522500\",\n            \"createdDatetime\": \"2025-11-12T08:15:38Z\",\n            \"accountName\": \"Braden International Prospect\",\n            \"contactName\": \"Anthony Compton\",\n            \"crmId\": \"crmgenkey_c696779e-94fa-327e-8e1a-fc4bfa6ce923\",\n            \"userType\": \"DA\",\n            \"productType\": \"AIDSL\",\n            \"reportDispositionId\": 58231,\n            \"listname\": \"International List (Indian numbers) - DND\",\n            \"reportSessionId\": 198336,\n            \"callDuration\": \"00:00:10\",\n            \"callStartTime\": \"2025-11-12T08:15:38Z\",\n            \"callEndTime\": \"2025-11-12T08:15:49Z\",\n            \"callStatus\": \"completed\",\n            \"isInboundTextSent\": true,\n            \"title\": \"CEO of Excel Tech\",\n            \"callListRecordPresent\": true\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 100,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"98e044d1-dc9f-45b1-80fa-9ccde7a0e3af"},{"name":"RecentlyUsed Metrics","id":"42f639f7-1d54-411a-8bc3-095558e6bb9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/recentlyUsed/59580/metrics","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard","recentlyUsed","59580","metrics"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c788e4c1-6269-4529-b722-71e84e9911f3","name":"RecentlyUsed Metrics","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/dashboard/recentlyUsed/59580/metrics"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"totalDials\": 65,\n            \"totalConnects\": 12,\n            \"dialable\": 48\n        }\n    ]\n}"}],"_postman_id":"42f639f7-1d54-411a-8bc3-095558e6bb9d"},{"name":"Third party Crm","id":"31801852-5dbe-4da0-b897-bd82d901b992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"listCrmName\":\"salesloft\",\"listName\":\"manual\",\"thirdPartyCrmReportType\":\"manual_calls_from_salesloft\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/dashboard/import/pendingtask","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard","import","pendingtask"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"fe355ce7-e2d8-4636-be25-18ed53bb66ff","name":"Third party Crm","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"listCrmName\":\"salesloft\",\"listName\":\"manual\",\"thirdPartyCrmReportType\":\"manual_calls_from_salesloft\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/dashboard/import/pendingtask"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"reportName\": \"manual\",\n            \"recordsAvailable\": 0,\n            \"recordsImported\": 6,\n            \"duplicateCount\": 0,\n            \"reportError\": \"\",\n            \"missingColumnDetails\": {},\n            \"additionalFilterDetails\": {},\n            \"prospectsAssigned\": 0,\n            \"cadenceStatus\": null,\n            \"cadenceError\": [],\n            \"parkingLotCount\": 0,\n            \"ownedProspectsCount\": 0,\n            \"errorProspectCount\": 0,\n            \"duplicateAssignedProspectCount\": 0,\n            \"totalProspectCount\": 6,\n            \"lastImportedDate\": \"2025-11-19T08:28:40\"\n        }\n    ]\n}"}],"_postman_id":"31801852-5dbe-4da0-b897-bd82d901b992"},{"name":"crm","id":"a5c6d64d-ce21-4681-b601-c45853132e3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/dashboard/import/pendingtask","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dashboard","import","pendingtask"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7ba4490c-ddee-45a5-8ed8-81af4c30803c","name":"crm","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/dashboard/import/pendingtask"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"reportName\": \"manual\",\n            \"recordsAvailable\": 0,\n            \"recordsImported\": 6,\n            \"duplicateCount\": 0,\n            \"reportError\": \"\",\n            \"missingColumnDetails\": {},\n            \"additionalFilterDetails\": {},\n            \"prospectsAssigned\": 0,\n            \"cadenceStatus\": null,\n            \"cadenceError\": [],\n            \"parkingLotCount\": 0,\n            \"ownedProspectsCount\": 0,\n            \"errorProspectCount\": 0,\n            \"duplicateAssignedProspectCount\": 0,\n            \"totalProspectCount\": 6,\n            \"lastImportedDate\": \"2025-11-19T08:28:40\"\n        }\n    ]\n}"}],"_postman_id":"a5c6d64d-ce21-4681-b601-c45853132e3c"}],"id":"38049416-ca65-4edc-bc7a-eb75ae067358","description":"<p>Dashboard API Documentation</p>\n<p>Base URL</p>\n<p>Endpoint: /v1/dashboard</p>\n<p>Query Parameters:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>•  requestDataType (string, required) - Type of data to retrieve\n•  startDate (string, required) - Start date for the data range\n•  endDate (string, required) - End date for the data range\n•  userIds (array of long, optional) - List of user IDs to filter\n•  productType (string, optional) - Type of product to filter\n•  logicalVariable (string, required) - Logical variable for filtering\n\n</code></pre>","_postman_id":"38049416-ca65-4edc-bc7a-eb75ae067358","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"DoNotCall","item":[{"name":"Accounts","item":[{"name":"Get All DNC Accounts","id":"c259555b-89dd-4095-90d0-3b49ed6833a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/dncAccounts?includeAssociations[]=user&page[limit]=10&page[offset]=0&sort[id]=desc","description":"<p>Retrieves all DNC (Do Not Call) accounts with pagination, filtering, and sorting support.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li>page: Page number (0-based)</li>\n<li>size: Records per page</li>\n<li>sort: Sort criteria (field,direction)</li>\n<li>filter: Filter criteria (field:operator:value)</li>\n<li>includeAssociations: Include related entities</li>\n</ul>\n<p><strong>Supported Filters:</strong></p>\n<ul>\n<li>accountName: Account name</li>\n<li>phoneNumber: Phone number</li>\n<li>createdOn: Creation date</li>\n<li>status: DNC status</li>\n</ul>\n<p><strong>Supported Sort Fields:</strong></p>\n<ul>\n<li>id</li>\n<li>accountName</li>\n<li>phoneNumber</li>\n<li>createdOn</li>\n<li>updatedOn</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dncAccounts"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Include user associations</p>\n","type":"text/plain"},"key":"includeAssociations[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include account associations</p>\n","type":"text/plain"},"key":"includeAssociations[]","value":"account"},{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"page[limit]","value":"10"},{"description":{"content":"<p>Page offset (0-based)</p>\n","type":"text/plain"},"key":"page[offset]","value":"0"},{"description":{"content":"<p>Sort by id in descending order</p>\n","type":"text/plain"},"key":"sort[id]","value":"desc"},{"disabled":true,"description":{"content":"<p>Filter by account name (optional)</p>\n","type":"text/plain"},"key":"filter[accountName]","value":"test"},{"disabled":true,"description":{"content":"<p>Filter by phone number (optional)</p>\n","type":"text/plain"},"key":"filter[phoneNumber]","value":"+1234567890"}],"variable":[]}},"response":[{"id":"b12166ec-7ee5-47f7-bc26-1f2855026b5d","name":"Success Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{koncert_dialers_api}}/dncAccounts?page[limit]=10&page[offset]=0&includeAssociations[]=createdBy","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["dncAccounts"],"query":[{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"},{"key":"includeAssociations[]","value":"createdBy"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 199,\n            \"accountName\": \"ACME Corporation\",\n            \"accountId\": \"account_14bace77-44d8-3bf4-8d35-8cd6814c7c36\",\n            \"createdDate\": \"2025-11-19T10:50:27\",\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 24047\n                }\n            }\n        },\n        {\n            \"id\": 200,\n            \"accountName\": \"Tech Solutions Inc\",\n            \"accountId\": \"account_24bace88-55d9-4cf5-9e46-9de7925d8d47\",\n            \"createdDate\": \"2025-11-18T14:20:00\",\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 24047\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"createdBy\": [\n            {\n                \"id\": 24047,\n                \"sfUserId\": \"STD-164538\",\n                \"name\": \"Admin User\",\n                \"loginName\": \"admin@example.com\",\n                \"userLicense\": \"TD,PD,CD,TC,AIDSL,AIDML\",\n                \"timeZone\": \"America/New_York\",\n                \"isManagerUser\": \"Y\",\n                \"isAdminUser\": \"Y\",\n                \"displayName\": \"Admin User\",\n                \"isActive\": \"Y\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 10,\n        \"offset\": 0\n    }\n}"},{"id":"561dba8b-5ae9-4861-a126-d1a691c9d8b9","name":"With Filter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{koncert_dialers_api}}/dncAccounts?page[limit]=10&page[offset]=0&filter[q]=Tesing%20Prospect%20Data&includeAssociations[]=createdBy","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["dncAccounts"],"query":[{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"},{"key":"filter[q]","value":"Tesing%20Prospect%20Data"},{"key":"includeAssociations[]","value":"createdBy"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 199,\n            \"accountName\": \"Tesing Prospect Data\",\n            \"accountId\": \"account_14bace77-44d8-3bf4-8d35-8cd6814c7c36\",\n            \"createdDate\": \"2025-11-19T10:50:27\",\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 24047\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"createdBy\": [\n            {\n                \"id\": 24047,\n                \"sfUserId\": \"STD-164538\",\n                \"name\": \"Admin ZIva\",\n                \"loginName\": \"naromose@teleg.eu\",\n                \"userLicense\": \"TD,PD,CD,TC,AIDSL,AIDML\",\n                \"timeZone\": \"America/New_York\",\n                \"isManagerUser\": \"Y\",\n                \"isAdminUser\": \"Y\",\n                \"displayName\": \"Admin ZIva\",\n                \"isActive\": \"Y\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 10,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"c259555b-89dd-4095-90d0-3b49ed6833a9"},{"name":"Delete DNC Accounts","id":"f2f25996-fb0a-45bf-9c27-1139041629e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/dncAccounts/:id[]","description":"<p>Deletes one or more DNC accounts by their IDs.</p>\n<p><strong>Access:</strong> Admin only</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id[]: Comma-separated list of DNC Account IDs to delete (e.g., 1,2,3)</li>\n</ul>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires ADMIN role</li>\n<li>Returns 403 Forbidden if user doesn't have admin privileges</li>\n</ul>\n<p><strong>Response:</strong></p>\n<ul>\n<li>Returns success status with count of deleted records</li>\n<li>If some IDs don't exist, they will be skipped</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["dncAccounts",":id[]"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"710e1588-b052-4eea-b747-65a81a0dd092","description":{"content":"<p>Comma-separated list of DNC Account IDs to delete</p>\n","type":"text/plain"},"type":"any","value":"1,2,3","key":"id[]"}]}},"response":[{"id":"e0cbc64f-7e09-44a8-a5b2-215697716dc5","name":"Success Response - Multiple Delete","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/dncAccounts/198,199,200"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"},{"id":"3d1ba01a-f2d5-434e-8dfb-0857e6ee8967","name":"Single Delete","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/dncAccounts/199"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"},{"id":"f448681b-7b73-48e9-a5d8-e4f7579f56b4","name":"Forbidden - Not Admin","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{koncert_dialers_api}}/dncAccounts/199"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Access denied. Admin role required to delete DNC accounts.\"\n}"},{"id":"d93de36e-9895-4e17-a297-431767216121","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[],"url":"{{base_url}}/v1/dncAccounts/1"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"error\",\n    \"message\": \"Unauthorized access. Please provide valid authentication token.\"\n}"}],"_postman_id":"f2f25996-fb0a-45bf-9c27-1139041629e3"}],"id":"dd57f824-aad3-4ad6-be12-e8dff2c25ef4","description":"<p>APIs to fetch and delete DNC (Do Not Contact) accounts.</p>\n","_postman_id":"dd57f824-aad3-4ad6-be12-e8dff2c25ef4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Create","id":"6ab12ccc-6bec-46db-b136-2cf49fd69ff2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"doNotCallUntil\":\"2023-02-27T10:06:12Z\",\r\n        \"callListRecordId\":1730302\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/donotcall","description":"<p>To create doNotCall for the call list records.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["donotcall"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"5ab9f12a-cd1e-49bb-a496-4bb8ccc264a8","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"doNotCallUntil\":\"2023-02-27T10:06:12Z\",\r\n        \"callListRecordId\":1730302\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/donotcall"},"status":"Ok","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 146599,\n            \"crmId\": \"crmgenkey_af50ceeb-354f-3d6c-81fb-c15476c1b204\",\n            \"accountName\": \"Dell\",\n            \"contactName\": \"Ella Taylor\",\n            \"phoneNumbers\": \"(603) 386-0304\",\n            \"emailId\": \"ella.taylor@gmail.com\",\n            \"doNotCallUntil\": \"2300-01-01T00:00:00Z\",\n            \"associations\": {\n                \"user\": {\n                    \"id\": 8398\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"6ab12ccc-6bec-46db-b136-2cf49fd69ff2"},{"name":"Delete","id":"25fb0abf-39ae-4fa9-a009-e0074bbd4cd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/donotcall?id=:id","description":"<p>To Delete the record by doNotCall Id</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["donotcall"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>DoNotCall Id</p>\n","type":"text/plain"},"key":"id","value":":id"}],"variable":[]}},"response":[{"id":"92fe9b96-c510-48ae-aadf-3bcc44801c4e","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/donotcall?id=1465","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["donotcall"],"query":[{"key":"id","value":"1465","description":"DoNotCall Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"25fb0abf-39ae-4fa9-a009-e0074bbd4cd2"},{"name":"Delete By CallListRecord Id","id":"614fa723-87bc-4dc7-b147-75b0ea69fe8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/donotcall/callListRecord?id=:id","description":"<p>To Delete the record by callListRecord Id.</p>\n<p>This will remove the DNC records based on call List record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["donotcall","callListRecord"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>DoNotCall Id</p>\n","type":"text/plain"},"key":"id","value":":id"}],"variable":[]}},"response":[{"id":"c16dbfa1-63b8-4733-a44a-0fbb1aee72c0","name":"Delete By CallListRecord Id","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/donotcall/callListRecord?id=146599","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["donotcall","callListRecord"],"query":[{"key":"id","value":"146599","description":"DoNotCall Id"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"614fa723-87bc-4dc7-b147-75b0ea69fe8b"},{"name":"clear All","id":"a388140f-9b4a-467a-a004-eb79dd5abaee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/donotcall/clearAll","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["donotcall","clearAll"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"5aedc282-908e-468a-92d6-eb2b11a64062","name":"clear All","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/donotcall/clearAll"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"a388140f-9b4a-467a-a004-eb79dd5abaee"}],"id":"e8196805-8b82-4295-a74c-08fbc3ba4119","description":"<p>To update do not call to the prospect record</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Do Not Call Id</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmId  <br /><code>String</code></td>\n<td>CrmId of the record</td>\n<td></td>\n</tr>\n<tr>\n<td>accountName  <br /><code>String</code></td>\n<td>AccountName of the record</td>\n<td></td>\n</tr>\n<tr>\n<td>contactName  <br /><code>String</code></td>\n<td>ContactName of the record</td>\n<td></td>\n</tr>\n<tr>\n<td>phoneNumbers  <br /><code>String</code></td>\n<td>PhoneNumber of the record</td>\n<td></td>\n</tr>\n<tr>\n<td>emailId  <br /><code>String</code></td>\n<td>EmailId of the record</td>\n<td></td>\n</tr>\n<tr>\n<td>doNotCallUntil  <br /><code>DateTime</code></td>\n<td>DoNotCallUntil Date - Dial should not go until this date</td>\n<td></td>\n</tr>\n<tr>\n<td>dateCreated  <br /><code>DateTime</code></td>\n<td>DnC Created DateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>updatedBy  <br /><code>String</code></td>\n<td>DnC UpdatedBy - Ex : <code>TALKER</code>,<code>DA</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>User  <br /><code>Object</code></td>\n<td>Owner of the Record</td>\n<td></td>\n</tr>\n<tr>\n<td>DataList  <br /><code>Object</code></td>\n<td>ListId of the record from which the record got imported</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e8196805-8b82-4295-a74c-08fbc3ba4119","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Enrichment","item":[{"name":"Settings","item":[{"name":"Enrichment Settings list","id":"772d17ee-73cd-4456-9d25-cebc12dccc3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/enrichment/setting/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment","setting",""],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c36bafa7-11a6-44e4-bc5a-6426d5547eb0","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/enrichment/setting"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1474,\n            \"groupName\": \"enrichment_level\",\n            \"name\": \"wiza\",\n            \"value\": \"phone\",\n            \"active\": true,\n            \"createdDateTime\": \"2025-06-24T10:55:47Z\",\n            \"updatedDateTime\": null,\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 14258\n                }\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 18,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"772d17ee-73cd-4456-9d25-cebc12dccc3f"},{"name":"Enrichment Settings","id":"c1092989-a1e4-4d9b-9908-31b573c03d0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"groupName\":\"enrichment_level\",\"name\":\"amply\",\"value\":\"phone,email\",\"active\":true}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/setting/542","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment","setting","542"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"19164fae-46d8-487e-983b-bf8a4e00a1e3","name":"Setting","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"groupName\":\"enrichment_level\",\"name\":\"amply\",\"value\":\"phone,email\",\"active\":true}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/setting/542"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 542,\n            \"groupName\": \"enrichment_level\",\n            \"name\": \"amply\",\n            \"value\": \"phone,email\",\n            \"active\": true,\n            \"createdDateTime\": \"2025-08-20T11:17:05Z\",\n            \"updatedDateTime\": \"2025-11-19T09:36:13Z\",\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 20991\n                },\n                \"modifiedBy\": {\n                    \"id\": 20991\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"c1092989-a1e4-4d9b-9908-31b573c03d0e"},{"name":"Enrichment Settings","id":"003c2edd-bb06-4b71-b9c7-7fb784dd9ec0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"name\":\"apollo\",\"groupName\":\"enrichment_order\",\"value\":4}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/setting","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment","setting"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"5da51a90-dd86-436e-a7db-b3dc85ddb5d4","name":"setting","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"name\":\"apollo\",\"groupName\":\"enrichment_order\",\"value\":4}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/setting"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3631,\n            \"groupName\": \"enrichment_order\",\n            \"name\": \"apollo\",\n            \"value\": \"4\",\n            \"active\": null,\n            \"createdDateTime\": \"2025-11-19T09:42:20Z\",\n            \"updatedDateTime\": null,\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 14258\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"003c2edd-bb06-4b71-b9c7-7fb784dd9ec0"},{"name":"Enrichment Settings","id":"f57158ad-b771-45d7-afa2-8a487c26f5dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"messageType\": \"VM\",\r\n    \"messageName\": \"Test1235\",\r\n    \"duration\":10\r\n}"},"url":"https://{{koncert_dialers_api}}/enrichment/setting/3631","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment","setting","3631"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"a88c4fcc-e22d-4305-b3fc-818beba52d56","name":"setting","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"messageType\": \"VM\",\r\n    \"messageName\": \"Test1235\",\r\n    \"duration\":10\r\n}"},"url":"https://{{koncert_dialers_api}}/enrichment/setting/3631"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"f57158ad-b771-45d7-afa2-8a487c26f5dc"},{"name":"group","id":"1962fd06-5d3c-454a-b291-ed01cd8bf50c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[{\"name\":\"contactout\",\"value\":\"1\"},{\"name\":\"wiza\",\"value\":\"2\"},{\"name\":\"amply\",\"value\":\"3\"}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/setting/group/enrichment_order","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment","setting","group","enrichment_order"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"730ca63c-97f2-47a8-bf90-585758aeebaa","name":"group","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[{\"name\":\"contactout\",\"value\":\"1\"},{\"name\":\"wiza\",\"value\":\"2\"},{\"name\":\"amply\",\"value\":\"3\"}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/setting/group/enrichment_order"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3632,\n            \"groupName\": \"enrichment_order\",\n            \"name\": \"contactout\",\n            \"value\": \"1\",\n            \"active\": true\n        }\n    ]\n}"}],"_postman_id":"1962fd06-5d3c-454a-b291-ed01cd8bf50c"}],"id":"6d873c24-f5f0-44a3-88cc-a43b8e103439","description":"<p>Enrichment Settings Api's</p>\n","_postman_id":"6d873c24-f5f0-44a3-88cc-a43b8e103439","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Get All Prospects","id":"3e44574a-f7db-4b31-b026-aff38be62fb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://{{koncert_dialers_api}}/enrichment?page[limit]=25&page[offset]=0&sort[firstName]=ASC","description":"<p>Retrieves all enrichment prospects with filtering, pagination, sorting, and association support.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment"],"host":["{{koncert_dialers_api}}"],"query":[{"disabled":true,"description":{"content":"<p>Filter criteria for DataEnrichmentProspects entity</p>\n","type":"text/plain"},"key":"filters","value":""},{"disabled":true,"description":{"content":"<p>Related entities to include in response</p>\n","type":"text/plain"},"key":"includeAssociations","value":""},{"description":{"content":"<p>Maximum number of records to return</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Number of records to skip</p>\n","type":"text/plain"},"key":"page[offset]","value":"0"},{"description":{"content":"<p>Sorting criteria - use field name as key and ASC/DESC as value</p>\n","type":"text/plain"},"key":"sort[firstName]","value":"ASC"}],"variable":[]}},"response":[{"id":"73b9a7ff-d8a2-4df6-bbce-169a52d3aa94","name":"Success Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/v1/enrichment?page[limit]=25&page[offset]=0&sort[firstName]=ASC","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["v1","enrichment"],"query":[{"key":"page[limit]","value":"25"},{"key":"page[offset]","value":"0"},{"key":"sort[firstName]","value":"ASC"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 34718,\n            \"crmId\": \"003J300000S4Fmg\",\n            \"recordType\": \"Contact\",\n            \"accountName\": \"Test\",\n            \"contactName\": \"Aden Carr\",\n            \"phone\": null,\n            \"title\": \"Team Lead\",\n            \"emailId\": \"testingprospect401@test.in\",\n            \"sequenceName\": null,\n            \"firstName\": \"Aden\",\n            \"lastName\": \"Carr\",\n            \"customPhone1\": \"(571) 290-2022\",\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"crmType\": \"salesforce\",\n            \"accountId\": \"001J300000JhQ8UIAV\",\n            \"sequenceStepName\": null,\n            \"ownerId\": null,\n            \"lastCallOutcome\": \"Talker busy - Unanswered call cancelled\",\n            \"listType\": \"MYLIST\",\n            \"linkedinUrl\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 14525\n                }\n            },\n            \"enrichment\": {\n                \"AMPLY\": {\n                    \"status\": \"ENRICHED\",\n                    \"enrichedDateTime\": \"2025-11-17T10:42:48Z\",\n                    \"phoneInfo\": {\n                        \"custom_phone_1\": \"(510) 508-3130\",\n                        \"dialer_column_formatted_custom_phone_1\": \"+15105083130\"\n                    }\n                }\n            }\n        }\n        ],\n    \"paging\": {\n        \"totalCount\": 12,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"3e44574a-f7db-4b31-b026-aff38be62fb8"},{"name":"Get Enrichment Credits","id":"d6f624e2-4977-4dff-8c38-abc9210124a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://{{koncert_dialers_api}}enrichment/credits","description":"<p>Retrieves the current enrichment credits available for the user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["credits"],"host":["{{koncert_dialers_api}}enrichment"],"query":[],"variable":[]}},"response":[{"id":"fe726f7b-27bf-474a-849e-c1436ef9ad66","name":"Get enrichment credits","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}enrichment/credits"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2740,\n            \"startDate\": \"2025-10-21\",\n            \"endDate\": \"2025-11-21\",\n            \"totalCredits\": 500,\n            \"usedCredits\": 4.50,\n            \"updatedDate\": \"2025-11-19T10:34:41Z\"\n        }\n    ]\n}"}],"_postman_id":"d6f624e2-4977-4dff-8c38-abc9210124a2"},{"name":"Validate Prospect to be Enriched","id":"9be99314-5c70-407c-acbf-afe826e75eaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"vendorName\": \"SalesIntel\",\n  \"enrichmentType\": \"email\",\n  \"prospectIds\": [1, 2, 3]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/validateProspect","description":"<p>Validates whether prospects meet the criteria for enrichment before processing.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment","validateProspect"],"host":["{{koncert_dialers_api}}"],"query":[{"disabled":true,"description":{"content":"<p>Filter criteria for prospects</p>\n","type":"text/plain"},"key":"filters","value":""},{"disabled":true,"description":{"content":"<p>Sorting criteria - use field name as key and ASC/DESC as value</p>\n","type":"text/plain"},"key":"sort[firstName]","value":"ASC"}],"variable":[]}},"response":[{"id":"a1dd050d-9793-4952-8b3a-4f7fa8b06d4e","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"enrichmentIds\": [\n        {\n            \"id\": 34719\n        }\n    ],\n    \"enrichmentType\": \"single\",\n    \"enrichmentLevel\": \"email\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}enrichment/validateProspect"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"blankEmailIds\": []\n        }\n    ]\n}"}],"_postman_id":"9be99314-5c70-407c-acbf-afe826e75eaa"},{"name":"Start Enrichment","id":"29a7364d-5a4b-4733-aa94-d0daf5383071","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enrichmentIds\": [\n        {\n            \"id\": 34716\n        },\n        {\n            \"id\": 34727\n        }\n    ],\n    \"enrichmentType\": \"waterfall\",\n    \"enrichmentLevel\": \"phone\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment","description":"<p>Initiates the enrichment process for selected prospects.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment"],"host":["{{koncert_dialers_api}}"],"query":[{"disabled":true,"description":{"content":"<p>Filter criteria for selecting prospects</p>\n","type":"text/plain"},"key":"filters","value":""},{"disabled":true,"description":{"content":"<p>Sorting criteria - use field name as key and ASC/DESC as value</p>\n","type":"text/plain"},"key":"sort[firstName]","value":"ASC"}],"variable":[]}},"response":[{"id":"1a0ec1cc-2c2d-4dfd-8462-daa88e83f202","name":"Start enrichment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"enrichmentIds\": [\n        {\n            \"id\": 34716\n        },\n        {\n            \"id\": 34727\n        }\n    ],\n    \"enrichmentType\": \"waterfall\",\n    \"enrichmentLevel\": \"phone\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}enrichment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3045,\n            \"startDateTime\": \"2025-11-19T11:06:56\",\n            \"endDateTime\": null,\n            \"status\": \"in_progress\",\n            \"description\": null,\n            \"submitted\": 2,\n            \"processed\": null,\n            \"crmType\": \"salesforce\",\n            \"sequenceId\": null,\n            \"sequenceName\": null,\n            \"listType\": \"MYLIST\",\n            \"enrichmentOrder\": [\n                \"AMPLY\",\n                \"WIZA\",\n                \"CONTACTOUT\"\n            ],\n            \"response\": null\n        }\n    ]\n}"},{"id":"04b408b1-32b7-4b1d-aaf3-a3b653afbe14","name":"Start Enrichment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enrichmentIds\": [\n        {\n            \"id\": 34719\n        },\n        {\n            \"id\": 34727\n        }\n    ],\n    \"enrichmentType\": \"single\",\n    \"enrichmentLevel\": \"phone\",\n    \"enrichment\": \"AMPLY\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/enrichment","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["enrichment"],"query":[{"key":"filters","value":"","description":"Filter criteria for selecting prospects","disabled":true},{"key":"sort[firstName]","value":"ASC","description":"Sorting criteria - use field name as key and ASC/DESC as value","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3046,\n            \"startDateTime\": \"2025-11-19T11:09:25\",\n            \"endDateTime\": null,\n            \"status\": \"in_progress\",\n            \"description\": null,\n            \"submitted\": 2,\n            \"processed\": null,\n            \"crmType\": \"salesforce\",\n            \"sequenceId\": null,\n            \"sequenceName\": null,\n            \"listType\": \"MYLIST\",\n            \"enrichmentOrder\": [\n                \"AMPLY\"\n            ],\n            \"response\": null\n        }\n    ]\n}"}],"_postman_id":"29a7364d-5a4b-4733-aa94-d0daf5383071"},{"name":"Add to Enrichment","id":"1e044192-3c49-457c-a8ff-b9cca404a64d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"source\": \"MYSESSION_RECORD\",\n    \"enrichment\": {\n        \"id\": [\n            885379,\n            885382,\n            885377,\n            885376,\n            3001998\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/addToEnrichment","description":"<p>Adds new prospects to the enrichment queue for processing.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["enrichment","addToEnrichment"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"56defca6-2581-481f-ada4-66a5cbc9d33f","name":"Add To Enrichment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"source\": \"MYSESSION_RECORD\",\n    \"enrichment\": {\n        \"id\": [\n            885379,\n            885382,\n            885377,\n            885376,\n            3001998\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/addToEnrichment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"insertCnt\": 5\n        }\n    ]\n}"},{"id":"2e4e1253-18b3-4042-a49e-bc91620fb3b2","name":"Add to Enrichment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"source\": \"MYSESSION_NONDIALABLE\",\n    \"enrichment\": {\n        \"filter\": [\n            \"NO_MOBILE\",\n            \"INVALID_MOBILE\",\n            \"PARKINGLOT\"\n        ],\n        \"listName\": [\n            \"10_Admin US Hotel List.csv\"\n        ],\n        \"id\": [\n            42009\n        ]\n    },\n    \"mysessionFilter\": {\n        \"prospect\": \"NONDIALABLE\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/enrichment/addToEnrichment"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"noMobile\": 3,\n            \"invalidMobile\": 0,\n            \"total\": 3,\n            \"insertCnt\": 3\n        }\n    ]\n}"}],"_postman_id":"1e044192-3c49-457c-a8ff-b9cca404a64d"}],"id":"7eceb9fd-2759-4cc6-991d-48d3da2108a0","description":"<p>Enrichment will find and add valuable contact information, such as email addresses and phone numbers, to your existing lists of leads or contacts. We support 3 vendors - Amply, Wiza and Contactout.</p>\n","_postman_id":"7eceb9fd-2759-4cc6-991d-48d3da2108a0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Fields","item":[{"name":"Mappings","item":[{"name":"Mapping list","id":"bf25c78b-47ae-4d99-a98c-6b9a0a5605ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialer-api}}/fieldMappings?filter[crmType]=salesloft&filter[fields][name]=owner&sort[crmType]=asc&page[limit]=1&page[offset]=5&includeAssociations[]=fields","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["fieldMappings"],"host":["{{koncert_dialer-api}}"],"query":[{"key":"filter[crmType]","value":"salesloft"},{"key":"filter[fields][name]","value":"owner"},{"key":"sort[crmType]","value":"asc"},{"key":"page[limit]","value":"1"},{"key":"page[offset]","value":"5"},{"key":"includeAssociations[]","value":"fields"}],"variable":[]}},"response":[{"id":"5f8dd3fa-3b4a-45d1-afb3-0003838dddf2","name":"Mapping list","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://{{koncert_dialer_api}}/fieldMappings?filter[crmType]=salesloft&filter[fields][name]=owner&sort[crmType]=asc&page[limit]=1&page[offset]=5&includeAssociations[]=fields","protocol":"http","host":["{{koncert_dialer_api}}"],"path":["fieldMappings"],"query":[{"key":"filter[crmType]","value":"salesloft"},{"key":"filter[fields][name]","value":"owner"},{"key":"sort[crmType]","value":"asc"},{"key":"page[limit]","value":"1"},{"key":"page[offset]","value":"5"},{"key":"includeAssociations[]","value":"fields"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 169140,\r\n            \"relationship\": \"action\",\r\n            \"syncRuleFromCadence\": null,\r\n            \"syncRuleToCadence\": null,\r\n            \"crmFieldName\": \"id\",\r\n            \"crmReportFieldName\": null,\r\n            \"crmActivityReportFieldName\": null,\r\n            \"salesloftCustomField\": false,\r\n            \"mailmergeValueMandatory\": false,\r\n            \"createdDateTime\": \"2023-04-20T13:43:46Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"crmType\": \"salesloft\",\r\n            \"recordType\": \"Prospect\",\r\n            \"associations\": {}\r\n        }\r\n    ],\r\n    \"includedAssociations\": {\r\n        \"fields\": {\r\n            \"response\": \"success\",\r\n            \"data\": [\r\n                {\r\n                    \"id\": 65373,\r\n                    \"name\": \"activityId\",\r\n                    \"mandatory\": true,\r\n                    \"implicit\": false,\r\n                    \"readonly\": true,\r\n                    \"cadence\": false,\r\n                    \"dialer\": true,\r\n                    \"hidden\": true,\r\n                    \"maxLength\": 255,\r\n                    \"createdDateTime\": \"2022-04-28T11:07:50Z\",\r\n                    \"modifiedDateTime\": null,\r\n                    \"label\": \"id\",\r\n                    \"controlType\": \"TEXT\",\r\n                    \"dataType\": \"TEXT\",\r\n                    \"sortable\": false,\r\n                    \"dialingAgentEditable\": false,\r\n                    \"dialingAgentViewable\": true,\r\n                    \"clNativeColumn\": false,\r\n                    \"clFieldName\": \"activity_id\",\r\n                    \"associations\": {\r\n                        \"fieldMapping\": [\r\n                            {\r\n                                \"id\": 169140\r\n                            }\r\n                        ]\r\n                    }\r\n                }\r\n            ],\r\n            \"paging\": {\r\n                \"totalCount\": 1,\r\n                \"limit\": 500,\r\n                \"offset\": 0\r\n            }\r\n        }\r\n    },\r\n    \"paging\": {\r\n        \"totalCount\": 14,\r\n        \"limit\": 1,\r\n        \"offset\": 5\r\n    }\r\n}"}],"_postman_id":"bf25c78b-47ae-4d99-a98c-6b9a0a5605ae"},{"name":"Mapping","id":"67fac998-eac6-49d4-af9a-8f6f5beaad3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"fields\": {\r\n        \"id\": 139744\r\n    },\r\n    \"crmType\": \"standalone\",\r\n    \"recordType\": \"Contact\",\r\n    \"crmFieldName\": \"dropfield\",\r\n    \"salesloftCustomField\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/fieldMappings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["fieldMappings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"bd8586af-d824-4aab-88fc-214b22a09cc7","name":"Mapping","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"fields\": {\r\n        \"id\": 154719\r\n    },\r\n    \"crmFieldName\": \"LastModifiedDate\",\r\n    \"crmType\": \"SALESFORCE\",\r\n    \"recordType\": \"Contact\",\r\n    \"salesloftCustomField\": false,\r\n    \"dropDownValues\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/fieldMappings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 196916,\r\n            \"relationship\": null,\r\n            \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n            \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n            \"crmFieldName\": \"LastModifiedDate\",\r\n            \"crmReportFieldName\": null,\r\n            \"crmActivityReportFieldName\": null,\r\n            \"salesloftCustomField\": false,\r\n            \"mailmergeValueMandatory\": false,\r\n            \"createdDateTime\": \"2024-05-31T08:34:28Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"crmType\": \"salesforce\",\r\n            \"recordType\": \"Contact\",\r\n            \"associations\": {},\r\n            \"dropDownValues\": null\r\n        }\r\n    ]\r\n}"}],"_postman_id":"67fac998-eac6-49d4-af9a-8f6f5beaad3e"},{"name":"Mapping","id":"56b8f6bf-06fc-4a78-a3a4-2139d2229967","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/fieldMappings/:id","urlObject":{"protocol":"https","path":["fieldMappings",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"e10b02c8-e297-4fa8-ae0f-ded8b0465caa","description":{"content":"<p>Field Mapping ID</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"a3addf8b-e4f5-41a4-9241-6831bd690d08","name":"Mapping","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": {\r\n            \"id\": 154719\r\n        },\r\n        \"id\": 196916,\r\n        \"crmFieldName\": \"CreatedDate\",\r\n        \"recordType\": \"Contact\",\r\n        \"crmType\": \"SALESFORCE\",\r\n        \"dropDownValues\": [],\r\n        \"salesloftCustomField\": false\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/fieldMappings/196916"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 196916,\n            \"crmFieldName\": \"CreatedDate\",\n            \"field\": null,\n            \"createdUser\": null,\n            \"modifiedUser\": null,\n            \"relationship\": null,\n            \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\",\n            \"syncRuleToTrucadence\": \"Use most recent data from either system be used to update the other\",\n            \"crmReportFieldName\": null,\n            \"crmActivityReportFieldName\": null,\n            \"salesloftCustomField\": false,\n            \"mailmergeValueMandatory\": false,\n            \"createdDateTime\": \"2024-05-31T08:34:28\",\n            \"modifiedDateTime\": null,\n            \"crmType\": \"SALESFORCE\",\n            \"recordType\": \"CONTACT\",\n            \"dropDownValues\": null\n        }\n    ]\n}"}],"_postman_id":"56b8f6bf-06fc-4a78-a3a4-2139d2229967"},{"name":"Mapping","id":"b530996a-bfb2-4079-9bcc-a5e6cc7dce8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/fieldMappings/:id","urlObject":{"protocol":"https","path":["fieldMappings",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"06e59048-060f-4c15-99ba-888de2434c72","description":{"content":"<p>Field Mapping ID</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"acd3d300-8c32-43a1-80d9-5784fc376c0e","name":"Mapping","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/fieldMappings/196916"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"b530996a-bfb2-4079-9bcc-a5e6cc7dce8c"}],"id":"e4a3e8b1-4896-42ab-8e33-fa094a2d32f8","_postman_id":"e4a3e8b1-4896-42ab-8e33-fa094a2d32f8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"CRM","item":[{"name":"CRM Fields","id":"4ad7f553-eb77-4c1c-86d0-54e17a99243e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/fields/fields/:crmType","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["fields","fields",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"94dd5f52-edd7-4cc7-84be-2ded3ab0b07a","type":"any","value":"User CrmType","key":"crmType"}]}},"response":[{"id":"f93cae26-09d9-4f5d-b37c-b1387933784a","name":"Salesfoce","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/fields/fields/SALESFORCE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"standardFields\": [\n        {\n            \"apiName\": \"IsDeleted\",\n            \"fieldLabel\": \"Deleted\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"boolean\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastName\",\n            \"fieldLabel\": \"Last Name\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"FirstName\",\n            \"fieldLabel\": \"First Name\",\n            \"maxLength\": 40,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Salutation\",\n            \"fieldLabel\": \"Salutation\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Mr.\",\n                    \"validFor\": null,\n                    \"value\": \"Mr.\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Ms.\",\n                    \"validFor\": null,\n                    \"value\": \"Ms.\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Mrs.\",\n                    \"validFor\": null,\n                    \"value\": \"Mrs.\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Dr.\",\n                    \"validFor\": null,\n                    \"value\": \"Dr.\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Prof.\",\n                    \"validFor\": null,\n                    \"value\": \"Prof.\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Name\",\n            \"fieldLabel\": \"Full Name\",\n            \"maxLength\": 121,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"OtherStreet\",\n            \"fieldLabel\": \"Other Street\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"textarea\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"OtherCity\",\n            \"fieldLabel\": \"Other City\",\n            \"maxLength\": 40,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"OtherState\",\n            \"fieldLabel\": \"Other State/Province\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"OtherPostalCode\",\n            \"fieldLabel\": \"Other Zip/Postal Code\",\n            \"maxLength\": 20,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"OtherCountry\",\n            \"fieldLabel\": \"Other Country\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"OtherLatitude\",\n            \"fieldLabel\": \"Other Latitude\",\n            \"maxLength\": 18,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"OtherLongitude\",\n            \"fieldLabel\": \"Other Longitude\",\n            \"maxLength\": 18,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"OtherGeocodeAccuracy\",\n            \"fieldLabel\": \"Other Geocode Accuracy\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Address\",\n                    \"validFor\": null,\n                    \"value\": \"Address\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"NearAddress\",\n                    \"validFor\": null,\n                    \"value\": \"NearAddress\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Block\",\n                    \"validFor\": null,\n                    \"value\": \"Block\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Street\",\n                    \"validFor\": null,\n                    \"value\": \"Street\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"ExtendedZip\",\n                    \"validFor\": null,\n                    \"value\": \"ExtendedZip\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Zip\",\n                    \"validFor\": null,\n                    \"value\": \"Zip\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Neighborhood\",\n                    \"validFor\": null,\n                    \"value\": \"Neighborhood\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"City\",\n                    \"validFor\": null,\n                    \"value\": \"City\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"County\",\n                    \"validFor\": null,\n                    \"value\": \"County\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"State\",\n                    \"validFor\": null,\n                    \"value\": \"State\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Unknown\",\n                    \"validFor\": null,\n                    \"value\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"MailingStreet\",\n            \"fieldLabel\": \"Mailing Street\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"textarea\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MailingCity\",\n            \"fieldLabel\": \"Mailing City\",\n            \"maxLength\": 40,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MailingState\",\n            \"fieldLabel\": \"Mailing State/Province\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MailingPostalCode\",\n            \"fieldLabel\": \"Mailing Zip/Postal Code\",\n            \"maxLength\": 20,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MailingCountry\",\n            \"fieldLabel\": \"Mailing Country\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MailingLatitude\",\n            \"fieldLabel\": \"Mailing Latitude\",\n            \"maxLength\": 18,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MailingLongitude\",\n            \"fieldLabel\": \"Mailing Longitude\",\n            \"maxLength\": 18,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MailingGeocodeAccuracy\",\n            \"fieldLabel\": \"Mailing Geocode Accuracy\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Address\",\n                    \"validFor\": null,\n                    \"value\": \"Address\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"NearAddress\",\n                    \"validFor\": null,\n                    \"value\": \"NearAddress\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Block\",\n                    \"validFor\": null,\n                    \"value\": \"Block\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Street\",\n                    \"validFor\": null,\n                    \"value\": \"Street\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"ExtendedZip\",\n                    \"validFor\": null,\n                    \"value\": \"ExtendedZip\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Zip\",\n                    \"validFor\": null,\n                    \"value\": \"Zip\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Neighborhood\",\n                    \"validFor\": null,\n                    \"value\": \"Neighborhood\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"City\",\n                    \"validFor\": null,\n                    \"value\": \"City\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"County\",\n                    \"validFor\": null,\n                    \"value\": \"County\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"State\",\n                    \"validFor\": null,\n                    \"value\": \"State\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Unknown\",\n                    \"validFor\": null,\n                    \"value\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Phone\",\n            \"fieldLabel\": \"Business Phone\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Fax\",\n            \"fieldLabel\": \"Business Fax\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MobilePhone\",\n            \"fieldLabel\": \"Mobile Phone\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"HomePhone\",\n            \"fieldLabel\": \"Home Phone\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"OtherPhone\",\n            \"fieldLabel\": \"Other Phone\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"AssistantPhone\",\n            \"fieldLabel\": \"Asst. Phone\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Email\",\n            \"fieldLabel\": \"Email\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"email\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Title\",\n            \"fieldLabel\": \"Title\",\n            \"maxLength\": 128,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Department\",\n            \"fieldLabel\": \"Department\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"AssistantName\",\n            \"fieldLabel\": \"Assistant's Name\",\n            \"maxLength\": 40,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"LeadSource\",\n            \"fieldLabel\": \"Lead Source\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Web\",\n                    \"validFor\": null,\n                    \"value\": \"Web\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Phone Inquiry\",\n                    \"validFor\": null,\n                    \"value\": \"Phone Inquiry\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Partner Referral\",\n                    \"validFor\": null,\n                    \"value\": \"Partner Referral\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Purchased List\",\n                    \"validFor\": null,\n                    \"value\": \"Purchased List\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Other\",\n                    \"validFor\": null,\n                    \"value\": \"Other\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Birthdate\",\n            \"fieldLabel\": \"Birthdate\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"date\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Description\",\n            \"fieldLabel\": \"Contact Description\",\n            \"maxLength\": 32000,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"textarea\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"DoNotCall\",\n            \"fieldLabel\": \"Do Not Call\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"boolean\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"CreatedDate\",\n            \"fieldLabel\": \"Created Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastModifiedDate\",\n            \"fieldLabel\": \"Last Modified Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"SystemModstamp\",\n            \"fieldLabel\": \"System Modstamp\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastActivityDate\",\n            \"fieldLabel\": \"Last Activity\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"date\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastCURequestDate\",\n            \"fieldLabel\": \"Last Stay-in-Touch Request Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastCUUpdateDate\",\n            \"fieldLabel\": \"Last Stay-in-Touch Save Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastViewedDate\",\n            \"fieldLabel\": \"Last Viewed Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastReferencedDate\",\n            \"fieldLabel\": \"Last Referenced Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"EmailBouncedReason\",\n            \"fieldLabel\": \"Email Bounced Reason\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"EmailBouncedDate\",\n            \"fieldLabel\": \"Email Bounced Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"IsEmailBounced\",\n            \"fieldLabel\": \"Is Email Bounced\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"boolean\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"PhotoUrl\",\n            \"fieldLabel\": \"Photo URL\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"Jigsaw\",\n            \"fieldLabel\": \"Data.com Key\",\n            \"maxLength\": 20,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"JigsawContactId\",\n            \"fieldLabel\": \"Jigsaw Contact ID\",\n            \"maxLength\": 20,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"CleanStatus\",\n            \"fieldLabel\": \"Clean Status\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"In Sync\",\n                    \"validFor\": null,\n                    \"value\": \"Matched\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Different\",\n                    \"validFor\": null,\n                    \"value\": \"Different\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Reviewed\",\n                    \"validFor\": null,\n                    \"value\": \"Acknowledged\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Not Found\",\n                    \"validFor\": null,\n                    \"value\": \"NotFound\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Inactive\",\n                    \"validFor\": null,\n                    \"value\": \"Inactive\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Not Compared\",\n                    \"validFor\": null,\n                    \"value\": \"Pending\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Select Match\",\n                    \"validFor\": null,\n                    \"value\": \"SelectMatch\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Skipped\",\n                    \"validFor\": null,\n                    \"value\": \"Skipped\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"IsDeleted\",\n            \"fieldLabel\": \"Deleted\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"boolean\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastName\",\n            \"fieldLabel\": \"Last Name\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"FirstName\",\n            \"fieldLabel\": \"First Name\",\n            \"maxLength\": 40,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Salutation\",\n            \"fieldLabel\": \"Salutation\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Mr.\",\n                    \"validFor\": null,\n                    \"value\": \"Mr.\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Ms.\",\n                    \"validFor\": null,\n                    \"value\": \"Ms.\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Mrs.\",\n                    \"validFor\": null,\n                    \"value\": \"Mrs.\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Dr.\",\n                    \"validFor\": null,\n                    \"value\": \"Dr.\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Prof.\",\n                    \"validFor\": null,\n                    \"value\": \"Prof.\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Name\",\n            \"fieldLabel\": \"Full Name\",\n            \"maxLength\": 121,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"Title\",\n            \"fieldLabel\": \"Title\",\n            \"maxLength\": 128,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Company\",\n            \"fieldLabel\": \"Company\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Street\",\n            \"fieldLabel\": \"Street\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"textarea\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"City\",\n            \"fieldLabel\": \"City\",\n            \"maxLength\": 40,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"State\",\n            \"fieldLabel\": \"State/Province\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"PostalCode\",\n            \"fieldLabel\": \"Zip/Postal Code\",\n            \"maxLength\": 20,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Country\",\n            \"fieldLabel\": \"Country\",\n            \"maxLength\": 80,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Latitude\",\n            \"fieldLabel\": \"Latitude\",\n            \"maxLength\": 18,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Longitude\",\n            \"fieldLabel\": \"Longitude\",\n            \"maxLength\": 18,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"GeocodeAccuracy\",\n            \"fieldLabel\": \"Geocode Accuracy\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Address\",\n                    \"validFor\": null,\n                    \"value\": \"Address\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"NearAddress\",\n                    \"validFor\": null,\n                    \"value\": \"NearAddress\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Block\",\n                    \"validFor\": null,\n                    \"value\": \"Block\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Street\",\n                    \"validFor\": null,\n                    \"value\": \"Street\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"ExtendedZip\",\n                    \"validFor\": null,\n                    \"value\": \"ExtendedZip\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Zip\",\n                    \"validFor\": null,\n                    \"value\": \"Zip\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Neighborhood\",\n                    \"validFor\": null,\n                    \"value\": \"Neighborhood\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"City\",\n                    \"validFor\": null,\n                    \"value\": \"City\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"County\",\n                    \"validFor\": null,\n                    \"value\": \"County\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"State\",\n                    \"validFor\": null,\n                    \"value\": \"State\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Unknown\",\n                    \"validFor\": null,\n                    \"value\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Phone\",\n            \"fieldLabel\": \"Phone\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"MobilePhone\",\n            \"fieldLabel\": \"Mobile Phone\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Fax\",\n            \"fieldLabel\": \"Fax\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Email\",\n            \"fieldLabel\": \"Email\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"email\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Website\",\n            \"fieldLabel\": \"Website\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"PhotoUrl\",\n            \"fieldLabel\": \"Photo URL\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"Description\",\n            \"fieldLabel\": \"Description\",\n            \"maxLength\": 32000,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"textarea\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"LeadSource\",\n            \"fieldLabel\": \"Lead Source\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Web\",\n                    \"validFor\": null,\n                    \"value\": \"Web\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Phone Inquiry\",\n                    \"validFor\": null,\n                    \"value\": \"Phone Inquiry\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Partner Referral\",\n                    \"validFor\": null,\n                    \"value\": \"Partner Referral\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Purchased List\",\n                    \"validFor\": null,\n                    \"value\": \"Purchased List\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Other\",\n                    \"validFor\": null,\n                    \"value\": \"Other\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Status\",\n            \"fieldLabel\": \"Status\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": true,\n                    \"label\": \"Open - Not Contacted\",\n                    \"validFor\": null,\n                    \"value\": \"Open - Not Contacted\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Working - Contacted\",\n                    \"validFor\": null,\n                    \"value\": \"Working - Contacted\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Closed - Converted\",\n                    \"validFor\": null,\n                    \"value\": \"Closed - Converted\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Closed - Not Converted\",\n                    \"validFor\": null,\n                    \"value\": \"Closed - Not Converted\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Industry\",\n            \"fieldLabel\": \"Industry\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Agriculture\",\n                    \"validFor\": null,\n                    \"value\": \"Agriculture\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Apparel\",\n                    \"validFor\": null,\n                    \"value\": \"Apparel\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Banking\",\n                    \"validFor\": null,\n                    \"value\": \"Banking\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Biotechnology\",\n                    \"validFor\": null,\n                    \"value\": \"Biotechnology\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Chemicals\",\n                    \"validFor\": null,\n                    \"value\": \"Chemicals\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Communications\",\n                    \"validFor\": null,\n                    \"value\": \"Communications\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Construction\",\n                    \"validFor\": null,\n                    \"value\": \"Construction\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Consulting\",\n                    \"validFor\": null,\n                    \"value\": \"Consulting\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Education\",\n                    \"validFor\": null,\n                    \"value\": \"Education\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Electronics\",\n                    \"validFor\": null,\n                    \"value\": \"Electronics\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Energy\",\n                    \"validFor\": null,\n                    \"value\": \"Energy\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Engineering\",\n                    \"validFor\": null,\n                    \"value\": \"Engineering\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Entertainment\",\n                    \"validFor\": null,\n                    \"value\": \"Entertainment\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Environmental\",\n                    \"validFor\": null,\n                    \"value\": \"Environmental\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Finance\",\n                    \"validFor\": null,\n                    \"value\": \"Finance\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Food & Beverage\",\n                    \"validFor\": null,\n                    \"value\": \"Food & Beverage\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Government\",\n                    \"validFor\": null,\n                    \"value\": \"Government\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Healthcare\",\n                    \"validFor\": null,\n                    \"value\": \"Healthcare\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Hospitality\",\n                    \"validFor\": null,\n                    \"value\": \"Hospitality\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Insurance\",\n                    \"validFor\": null,\n                    \"value\": \"Insurance\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Machinery\",\n                    \"validFor\": null,\n                    \"value\": \"Machinery\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Manufacturing\",\n                    \"validFor\": null,\n                    \"value\": \"Manufacturing\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Media\",\n                    \"validFor\": null,\n                    \"value\": \"Media\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Not For Profit\",\n                    \"validFor\": null,\n                    \"value\": \"Not For Profit\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Recreation\",\n                    \"validFor\": null,\n                    \"value\": \"Recreation\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Retail\",\n                    \"validFor\": null,\n                    \"value\": \"Retail\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Shipping\",\n                    \"validFor\": null,\n                    \"value\": \"Shipping\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Technology\",\n                    \"validFor\": null,\n                    \"value\": \"Technology\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Telecommunications\",\n                    \"validFor\": null,\n                    \"value\": \"Telecommunications\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Transportation\",\n                    \"validFor\": null,\n                    \"value\": \"Transportation\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Utilities\",\n                    \"validFor\": null,\n                    \"value\": \"Utilities\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Other\",\n                    \"validFor\": null,\n                    \"value\": \"Other\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Rating\",\n            \"fieldLabel\": \"Rating\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Hot\",\n                    \"validFor\": null,\n                    \"value\": \"Hot\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Warm\",\n                    \"validFor\": null,\n                    \"value\": \"Warm\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Cold\",\n                    \"validFor\": null,\n                    \"value\": \"Cold\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"IsConverted\",\n            \"fieldLabel\": \"Converted\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"boolean\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"ConvertedDate\",\n            \"fieldLabel\": \"Converted Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"date\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"IsUnreadByOwner\",\n            \"fieldLabel\": \"Unread By Owner\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"boolean\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"CreatedDate\",\n            \"fieldLabel\": \"Created Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastModifiedDate\",\n            \"fieldLabel\": \"Last Modified Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"SystemModstamp\",\n            \"fieldLabel\": \"System Modstamp\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastActivityDate\",\n            \"fieldLabel\": \"Last Activity\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"date\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastViewedDate\",\n            \"fieldLabel\": \"Last Viewed Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"LastReferencedDate\",\n            \"fieldLabel\": \"Last Referenced Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"Jigsaw\",\n            \"fieldLabel\": \"Data.com Key\",\n            \"maxLength\": 20,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"JigsawContactId\",\n            \"fieldLabel\": \"Jigsaw Contact ID\",\n            \"maxLength\": 20,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"CleanStatus\",\n            \"fieldLabel\": \"Clean Status\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"In Sync\",\n                    \"validFor\": null,\n                    \"value\": \"Matched\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Different\",\n                    \"validFor\": null,\n                    \"value\": \"Different\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Reviewed\",\n                    \"validFor\": null,\n                    \"value\": \"Acknowledged\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Not Found\",\n                    \"validFor\": null,\n                    \"value\": \"NotFound\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Inactive\",\n                    \"validFor\": null,\n                    \"value\": \"Inactive\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Not Compared\",\n                    \"validFor\": null,\n                    \"value\": \"Pending\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Select Match\",\n                    \"validFor\": null,\n                    \"value\": \"SelectMatch\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Skipped\",\n                    \"validFor\": null,\n                    \"value\": \"Skipped\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"CompanyDunsNumber\",\n            \"fieldLabel\": \"Company D-U-N-S Number\",\n            \"maxLength\": 9,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"EmailBouncedReason\",\n            \"fieldLabel\": \"Email Bounced Reason\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"EmailBouncedDate\",\n            \"fieldLabel\": \"Email Bounced Date\",\n            \"maxLength\": 255,\n            \"customField\": false,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"timestamp\",\n            \"readonly\": false\n        }\n    ],\n    \"customFields\": [\n        {\n            \"apiName\": \"Level__c\",\n            \"fieldLabel\": \"Level\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Secondary\",\n                    \"validFor\": null,\n                    \"value\": \"Secondary\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Tertiary\",\n                    \"validFor\": null,\n                    \"value\": \"Tertiary\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Primary\",\n                    \"validFor\": null,\n                    \"value\": \"Primary\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Languages__c\",\n            \"fieldLabel\": \"Languages\",\n            \"maxLength\": 100,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"CLDR__Active_Contacts__c\",\n            \"fieldLabel\": \"Active Contacts\",\n            \"maxLength\": 18,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": true\n        },\n        {\n            \"apiName\": \"Linkedin_URL__c\",\n            \"fieldLabel\": \"Linkedin URL\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Increment_call_counter__c\",\n            \"fieldLabel\": \"Increment call counter\",\n            \"maxLength\": 18,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"DA_Field_Update__c\",\n            \"fieldLabel\": \"DA Field Update\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Contact_3X3__c\",\n            \"fieldLabel\": \"Contact 3X3\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"textarea\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"CRM_List__c\",\n            \"fieldLabel\": \"CRM List\",\n            \"maxLength\": 32768,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"textarea\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"CL_Dialed_Phone__c\",\n            \"fieldLabel\": \"CL Dialed Phone\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Phone_1__c\",\n            \"fieldLabel\": \"Phone 1\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Phone_2__c\",\n            \"fieldLabel\": \"Phone 2\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"phone\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Note__c\",\n            \"fieldLabel\": \"Note\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"Message__c\",\n            \"fieldLabel\": \"Message\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"KC_Talker_Field_Update__c\",\n            \"fieldLabel\": \"KC Talker Field Update\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Contact\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"SICCode__c\",\n            \"fieldLabel\": \"SIC Code\",\n            \"maxLength\": 15,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"ProductInterest__c\",\n            \"fieldLabel\": \"Product Interest\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"GC1000 series\",\n                    \"validFor\": null,\n                    \"value\": \"GC1000 series\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"GC5000 series\",\n                    \"validFor\": null,\n                    \"value\": \"GC5000 series\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"GC3000 series\",\n                    \"validFor\": null,\n                    \"value\": \"GC3000 series\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"Primary__c\",\n            \"fieldLabel\": \"Primary\",\n            \"maxLength\": 255,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"select\",\n            \"readonly\": false,\n            \"options\": [\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"No\",\n                    \"validFor\": null,\n                    \"value\": \"No\"\n                },\n                {\n                    \"active\": true,\n                    \"defaultValue\": false,\n                    \"label\": \"Yes\",\n                    \"validFor\": null,\n                    \"value\": \"Yes\"\n                }\n            ]\n        },\n        {\n            \"apiName\": \"CurrentGenerators__c\",\n            \"fieldLabel\": \"Current Generator(s)\",\n            \"maxLength\": 100,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"text\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"NumberofLocations__c\",\n            \"fieldLabel\": \"Number of Locations\",\n            \"maxLength\": 3,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": false\n        },\n        {\n            \"apiName\": \"CLDR__Active_Leads__c\",\n            \"fieldLabel\": \"Active Leads\",\n            \"maxLength\": 18,\n            \"customField\": true,\n            \"kcFieldName\": \"\",\n            \"recordType\": \"Lead\",\n            \"fieldType\": \"numeric\",\n            \"readonly\": true\n        }\n    ],\n    \"response\": \"success\"\n}"}],"_postman_id":"4ad7f553-eb77-4c1c-86d0-54e17a99243e"}],"id":"52e23d37-6586-44f6-8353-93add6c7c69e","_postman_id":"52e23d37-6586-44f6-8353-93add6c7c69e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Field List","id":"0cb4061d-5410-4729-a35b-1e7c1bbc82b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/fields","description":"<p>Get All Fields Information</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["fields"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"1db0753f-e665-46c1-a3d0-77a8ace247e6","name":"Field List","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/fields?includeAssociations[]=fieldMappings&includeAssociations[]=fieldDropdownValues&page[limit]=200&sort[label]=ASC","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["fields"],"query":[{"key":"includeAssociations[]","value":"fieldMappings"},{"key":"includeAssociations[]","value":"fieldDropdownValues"},{"key":"page[limit]","value":"200"},{"key":"sort[label]","value":"ASC"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 35147,\r\n            \"name\": \"accountName\",\r\n            \"mandatory\": false,\r\n            \"implicit\": true,\r\n            \"readonly\": true,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": null,\r\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"Account Name\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": true,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"account_name\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 41559\r\n                    },\r\n                    {\r\n                        \"id\": 41564\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 58466,\r\n            \"name\": \"customVarchar14\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 100,\r\n            \"createdDateTime\": \"2022-01-21T08:13:41Z\",\r\n            \"modifiedDateTime\": \"2022-01-21T12:34:57Z\",\r\n            \"label\": \"API Custom Field\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": false,\r\n            \"clNativeColumn\": true,\r\n            \"clFieldName\": \"custom_varchar_14\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 58900,\r\n            \"name\": \"customVarchar13\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": false,\r\n            \"dialer\": false,\r\n            \"hidden\": false,\r\n            \"maxLength\": 100,\r\n            \"createdDateTime\": \"2022-01-25T12:41:53Z\",\r\n            \"modifiedDateTime\": \"2022-01-25T12:45:19Z\",\r\n            \"label\": \"API Custom Field-cy\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": false,\r\n            \"clNativeColumn\": true,\r\n            \"clFieldName\": \"custom_varchar_13\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 58465,\r\n            \"name\": \"customVarchar3\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": false,\r\n            \"dialer\": false,\r\n            \"hidden\": false,\r\n            \"maxLength\": 100,\r\n            \"createdDateTime\": \"2022-01-20T13:46:32Z\",\r\n            \"modifiedDateTime\": \"2022-01-21T12:10:36Z\",\r\n            \"label\": \"API Custom Field-m\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": false,\r\n            \"clNativeColumn\": true,\r\n            \"clFieldName\": \"custom_varchar_3\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 59757,\r\n            \"name\": \"customVarchar17\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": false,\r\n            \"dialer\": false,\r\n            \"hidden\": false,\r\n            \"maxLength\": 100,\r\n            \"createdDateTime\": \"2022-02-02T11:25:38Z\",\r\n            \"modifiedDateTime\": \"2022-02-02T11:38:41Z\",\r\n            \"label\": \"API Custom Field-Test\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": false,\r\n            \"clNativeColumn\": true,\r\n            \"clFieldName\": \"custom_varchar_17\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 74628,\r\n            \"name\": \"customVarchar21\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 100,\r\n            \"createdDateTime\": \"2022-08-12T11:20:20Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"API Custom Field-Test-1\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": false,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_varchar_21\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 74449,\r\n            \"name\": \"customVarchar22\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 100,\r\n            \"createdDateTime\": \"2022-08-11T13:05:30Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"API Custom Field-Test-2\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": false,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_varchar_22\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 74450,\r\n            \"name\": \"customVarchar23\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 100,\r\n            \"createdDateTime\": \"2022-08-11T13:09:23Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"API Custom Field-Test-3\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": false,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_varchar_23\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 54911,\r\n            \"name\": \"customVarchar2\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 255,\r\n            \"createdDateTime\": \"2021-07-29T11:40:12Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"Appointment Date\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_varchar_2\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 65828\r\n                    },\r\n                    {\r\n                        \"id\": 65829\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 55223,\r\n            \"name\": \"customBoolean2\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 255,\r\n            \"createdDateTime\": \"2021-09-07T05:42:18Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"Boolean\",\r\n            \"controlType\": \"BOOLEAN\",\r\n            \"dataType\": \"BOOLEAN\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_boolean_2\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 66165\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 66554,\r\n            \"name\": \"customBoolean4\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 255,\r\n            \"createdDateTime\": \"2022-06-15T09:26:43Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"Boolean1\",\r\n            \"controlType\": \"BOOLEAN\",\r\n            \"dataType\": \"BOOLEAN\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_boolean_4\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 80056\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 57979,\r\n            \"name\": \"customVarchar16\",\r\n            \"mandatory\": true,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 255,\r\n            \"createdDateTime\": \"2022-01-13T11:12:45Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"Building's Energy\",\r\n            \"controlType\": \"SELECT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": true,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_varchar_16\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 69642\r\n                    }\r\n                ],\r\n                \"fieldDropdownValues\": [\r\n                    {\r\n                        \"id\": 385\r\n                    },\r\n                    {\r\n                        \"id\": 386\r\n                    },\r\n                    {\r\n                        \"id\": 387\r\n                    },\r\n                    {\r\n                        \"id\": 388\r\n                    },\r\n                    {\r\n                        \"id\": 389\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 35129,\r\n            \"name\": \"callCounter\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": true,\r\n            \"cadence\": true,\r\n            \"dialer\": false,\r\n            \"hidden\": false,\r\n            \"maxLength\": null,\r\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"Call Counter\",\r\n            \"controlType\": \"INTEGER\",\r\n            \"dataType\": \"INTEGER\",\r\n            \"sortable\": true,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": true,\r\n            \"clFieldName\": \"call_counter\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 41542\r\n                    },\r\n                    {\r\n                        \"id\": 41527\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 42306,\r\n            \"name\": null,\r\n            \"mandatory\": false,\r\n            \"implicit\": true,\r\n            \"readonly\": true,\r\n            \"cadence\": false,\r\n            \"dialer\": true,\r\n            \"hidden\": true,\r\n            \"maxLength\": null,\r\n            \"createdDateTime\": \"2021-03-30T15:39:30Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"call_list_records_pk\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"call_list_records_pk\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 35148,\r\n            \"name\": \"city\",\r\n            \"mandatory\": false,\r\n            \"implicit\": true,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": null,\r\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"City\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": true,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"city\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 41565\r\n                    },\r\n                    {\r\n                        \"id\": 41574\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 61703,\r\n            \"name\": \"customPhone3\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": false,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 10,\r\n            \"createdDateTime\": \"2022-02-23T12:52:06Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"City Phone\",\r\n            \"controlType\": \"PHONE\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_phone_3\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 73295\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 61704,\r\n            \"name\": \"extensionCustomPhone3\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": false,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 10,\r\n            \"createdDateTime\": \"2022-02-23T12:52:06Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"City Phone Extension\",\r\n            \"controlType\": \"PHONE\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"extension_custom_phone_3\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 73296\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 91510,\r\n            \"name\": \"customVarchar24\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": false,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 255,\r\n            \"createdDateTime\": \"2022-09-09T06:04:01Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"CL Call Recording URL\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": null,\r\n            \"dialingAgentViewable\": null,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_varchar_24\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"id\": 46423,\r\n            \"name\": \"customVarchar11\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 255,\r\n            \"createdDateTime\": \"2021-05-28T07:30:38Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"CL Contact Status\",\r\n            \"controlType\": \"SELECT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": true,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_varchar_11\",\r\n            \"associations\": {\r\n                \"fieldDropdownValues\": [\r\n                    {\r\n                        \"id\": 277\r\n                    },\r\n                    {\r\n                        \"id\": 278\r\n                    },\r\n                    {\r\n                        \"id\": 279\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 35125,\r\n            \"name\": \"activityComments\",\r\n            \"mandatory\": false,\r\n            \"implicit\": true,\r\n            \"readonly\": false,\r\n            \"cadence\": false,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": null,\r\n            \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"Comments\",\r\n            \"controlType\": \"TEXTAREA\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": true,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": true,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"activity_comments\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": 41523\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ],\r\n    \"includeAssociation\": {\r\n        \"fieldMappings\": [\r\n            {\r\n                \"id\": 41559,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Do NOT update CRM\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"Company\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:34Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"LEAD\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 41564,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Do NOT update CRM\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"Name\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:34Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 65828,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"Appointment Date__C\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2021-07-29T11:40:12Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:35Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 65829,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": null,\r\n                \"syncRuleToCadence\": null,\r\n                \"crmFieldName\": \"Appointment Date__C\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2021-07-29T11:40:58Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:35Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"LEAD\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 66165,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"Boolean\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2021-09-07T05:42:18Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:35Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 80056,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"Boolean1\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2022-06-15T09:26:43Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:36Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 69642,\r\n                \"relationship\": \"API Test Field-dd\",\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"API Test Field-dd\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2022-01-13T11:12:45Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:36Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 41542,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use TruCadence data to update CRM\",\r\n                \"syncRuleToCadence\": \"Do NOT update TruCadence\",\r\n                \"crmFieldName\": \"trtyry\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:33Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"LEAD\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 41527,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use TruCadence data to update CRM\",\r\n                \"syncRuleToCadence\": \"Do NOT update TruCadence\",\r\n                \"crmFieldName\": \"sdfsfsdf\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:33Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 41565,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"MailingCity\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:34Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 41574,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"City\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:34Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"LEAD\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 73295,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"City Phone\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2022-02-23T12:52:06Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:36Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 73296,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2022-02-23T12:52:06Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:36Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"CONTACT\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 41523,\r\n                \"relationship\": null,\r\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\r\n                \"crmFieldName\": \"\",\r\n                \"crmReportFieldName\": null,\r\n                \"crmActivityReportFieldName\": null,\r\n                \"salesloftCustomField\": false,\r\n                \"mailmergeValueMandatory\": false,\r\n                \"createdDateTime\": \"2020-09-07T13:44:53Z\",\r\n                \"modifiedDateTime\": \"2022-08-23T11:25:33Z\",\r\n                \"crmType\": \"STANDALONE\",\r\n                \"recordType\": \"ACTIVITIES\",\r\n                \"associations\": {}\r\n            }\r\n        ],\r\n        \"fieldDropdownValues\": [\r\n            {\r\n                \"id\": 385,\r\n                \"value\": \"a\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 386,\r\n                \"value\": \"b\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 387,\r\n                \"value\": \"x\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 388,\r\n                \"value\": \"d\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 389,\r\n                \"value\": \"e\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 277,\r\n                \"value\": \"One\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 278,\r\n                \"value\": \"Two\",\r\n                \"associations\": {}\r\n            },\r\n            {\r\n                \"id\": 279,\r\n                \"value\": \"Three\",\r\n                \"associations\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"paging\": {\r\n        \"totalCount\": 101,\r\n        \"limit\": 20,\r\n        \"offset\": 0\r\n    }\r\n}"},{"id":"37aeed76-b7c2-41a3-8ec5-e7986d59021f","name":"Field List with sparse fieldsets example 1","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/fields?includeAssociations[]=fieldMappings&page[limit]=20&sort[label]=ASC&field[fieldMappings]=[id,relationship,syncRuleFromTrucadence]&field=[name]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["fields"],"query":[{"key":"includeAssociations[]","value":"fieldMappings"},{"key":"page[limit]","value":"20"},{"key":"sort[label]","value":"ASC"},{"key":"field[fieldMappings]","value":"[id,relationship,syncRuleFromTrucadence]"},{"key":"field","value":"[name]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"name\": \"accountName\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"134054\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": \"customVarchar14\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"customVarchar13\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"customVarchar3\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"customVarchar17\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"customVarchar21\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"customVarchar22\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"customVarchar23\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"customVarchar2\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"65828\"\r\n                    },\r\n                    {\r\n                        \"id\": \"65829\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": \"customBoolean2\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"66165\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": \"customBoolean4\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"80056\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": \"customVarchar16\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"69642\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": \"callCounter\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"41542\"\r\n                    },\r\n                    {\r\n                        \"id\": \"41527\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": null,\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"city\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"135257\"\r\n                    },\r\n                    {\r\n                        \"id\": \"41565\"\r\n                    },\r\n                    {\r\n                        \"id\": \"41574\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": \"customPhone3\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"73295\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": \"extensionCustomPhone3\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"73296\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"name\": \"customVarchar24\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"customVarchar11\",\r\n            \"associations\": {}\r\n        },\r\n        {\r\n            \"name\": \"activityComments\",\r\n            \"associations\": {\r\n                \"fieldMapping\": [\r\n                    {\r\n                        \"id\": \"41523\"\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ],\r\n    \"includeAssociation\": {\r\n        \"fieldMappings\": [\r\n            {\r\n                \"id\": 41523,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 41527,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use TruCadence data to update CRM\"\r\n            },\r\n            {\r\n                \"id\": 41542,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use TruCadence data to update CRM\"\r\n            },\r\n            {\r\n                \"id\": 41565,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 41574,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 65828,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 65829,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": null\r\n            },\r\n            {\r\n                \"id\": 66165,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 69642,\r\n                \"relationship\": \"API Test Field-dd\",\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 73295,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 73296,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 80056,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 134054,\r\n                \"relationship\": \"account\",\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            },\r\n            {\r\n                \"id\": 135257,\r\n                \"relationship\": null,\r\n                \"syncRuleFromTrucadence\": \"Use most recent data from either system be used to update the other\"\r\n            }\r\n        ]\r\n    },\r\n    \"paging\": {\r\n        \"totalCount\": 103,\r\n        \"limit\": 20,\r\n        \"offset\": 0\r\n    }\r\n}"},{"id":"2895712f-d3d7-4754-a9c5-223ee70d147e","name":"Field List with sparse fieldsets example 2","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/fields?sort[label]=ASC&filter[powerdialer]=true&page[limit]=200&field=[name,label,controlType]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["fields"],"query":[{"key":"sort[label]","value":"ASC"},{"key":"filter[powerdialer]","value":"true"},{"key":"page[limit]","value":"200"},{"key":"field","value":"[name,label,controlType]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"name\": \"accountName\",\r\n            \"label\": \"Account Name\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"customVarchar7\",\r\n            \"label\": \"ak picklist new\",\r\n            \"controlType\": \"SELECT\"\r\n        },\r\n        {\r\n            \"name\": \"callCounter\",\r\n            \"label\": \"Call Counter\",\r\n            \"controlType\": \"INTEGER\"\r\n        },\r\n        {\r\n            \"name\": \"callListRecordsPk\",\r\n            \"label\": \"call_list_records_pk\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"customPhone4\",\r\n            \"label\": \"Cell Phone\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"extensionCustomPhone4\",\r\n            \"label\": \"Cell Phone Extension\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"city\",\r\n            \"label\": \"City\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"activityComments\",\r\n            \"label\": \"Comments\",\r\n            \"controlType\": \"TEXTAREA\"\r\n        },\r\n        {\r\n            \"name\": \"contactName\",\r\n            \"label\": \"Contact Name\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"customTimestamp2\",\r\n            \"label\": \"Create Date\",\r\n            \"controlType\": \"TIMESTAMP\"\r\n        },\r\n        {\r\n            \"name\": \"createdDate\",\r\n            \"label\": \"Created Date\",\r\n            \"controlType\": \"TIMESTAMP\"\r\n        },\r\n        {\r\n            \"name\": \"sfPk\",\r\n            \"label\": \"CRM Id\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"daCallComments\",\r\n            \"label\": \"DA Call Comments\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"daCallDisposition\",\r\n            \"label\": \"DA Call Disposition\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"dataListId\",\r\n            \"label\": \"Data List id\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"customPhone2\",\r\n            \"label\": \"Direct Phone Number\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"extensionCustomPhone2\",\r\n            \"label\": \"Direct Phone Number Extension\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"customVarchar4\",\r\n            \"label\": \"DropDown\",\r\n            \"controlType\": \"SELECT\"\r\n        },\r\n        {\r\n            \"name\": \"duedate\",\r\n            \"label\": \"DueDate\",\r\n            \"controlType\": \"DATE\"\r\n        },\r\n        {\r\n            \"name\": \"emailId\",\r\n            \"label\": \"Email\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"totalEngagementScore\",\r\n            \"label\": \"Engagement Score\",\r\n            \"controlType\": \"INTEGER\"\r\n        },\r\n        {\r\n            \"name\": \"extension\",\r\n            \"label\": \"Extension\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"firstName\",\r\n            \"label\": \"First Name\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"lastAiCallOutcome\",\r\n            \"label\": \"Last AI Call Outcome\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"lastAttemptedDate\",\r\n            \"label\": \"Last Attempted date\",\r\n            \"controlType\": \"TIMESTAMP\"\r\n        },\r\n        {\r\n            \"name\": \"lastDaCallOutcome\",\r\n            \"label\": \"Last Attempted Outcome\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"lastDialedDate\",\r\n            \"label\": \"Last Dialed Date\",\r\n            \"controlType\": \"TIMESTAMP\"\r\n        },\r\n        {\r\n            \"name\": \"lastName\",\r\n            \"label\": \"Last Name\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"lastTalkerCallOutcome\",\r\n            \"label\": \"Last Talker Call Outcome\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"leadScore\",\r\n            \"label\": \"Lead Score\",\r\n            \"controlType\": \"NUMERIC\"\r\n        },\r\n        {\r\n            \"name\": \"linkedinUrl\",\r\n            \"label\": \"Linkedin URL\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"memberCurrentTouchId\",\r\n            \"label\": \"Member Current Touch Id\",\r\n            \"controlType\": \"INTEGER\"\r\n        },\r\n        {\r\n            \"name\": \"customPhone1\",\r\n            \"label\": \"Mobile\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"extensionCustomPhone1\",\r\n            \"label\": \"Mobile Extension\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"modifiedDatetime\",\r\n            \"label\": \"Modified Date\",\r\n            \"controlType\": \"TIMESTAMP\"\r\n        },\r\n        {\r\n            \"name\": \"multiTouchId\",\r\n            \"label\": \"Multi Touch Id\",\r\n            \"controlType\": \"INTEGER\"\r\n        },\r\n        {\r\n            \"name\": \"multitouchMemberId\",\r\n            \"label\": \"Multitouch Member Id\",\r\n            \"controlType\": \"INTEGER\"\r\n        },\r\n        {\r\n            \"name\": \"customVarchar6\",\r\n            \"label\": \"New Contact Dropdown\",\r\n            \"controlType\": \"SELECT\"\r\n        },\r\n        {\r\n            \"name\": \"phone\",\r\n            \"label\": \"Phone\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"customPhone3\",\r\n            \"label\": \"phone field\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"extensionCustomPhone3\",\r\n            \"label\": \"phone field Extension\",\r\n            \"controlType\": \"PHONE\"\r\n        },\r\n        {\r\n            \"name\": \"customVarchar3\",\r\n            \"label\": \"Prospect Stage Level\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"recordType\",\r\n            \"label\": \"Record Type\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"sfReportName\",\r\n            \"label\": \"Report Name\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"talkerCallComments\",\r\n            \"label\": \"Sales Rep Call Comments\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"talkerCallDisposition\",\r\n            \"label\": \"Sales Rep Call Disposition\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"customVarchar5\",\r\n            \"label\": \"Select Test 2\",\r\n            \"controlType\": \"SELECT\"\r\n        },\r\n        {\r\n            \"name\": \"customVarchar1\",\r\n            \"label\": \"Sequence Name\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"state\",\r\n            \"label\": \"State\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"customVarchar2\",\r\n            \"label\": \"Step Display Name\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"subject\",\r\n            \"label\": \"Subject\",\r\n            \"controlType\": \"TEXTAREA\"\r\n        },\r\n        {\r\n            \"name\": \"tag\",\r\n            \"label\": \"Tag\",\r\n            \"controlType\": \"SELECT\"\r\n        },\r\n        {\r\n            \"name\": \"taskPriority\",\r\n            \"label\": \"Task Priority\",\r\n            \"controlType\": \"SELECT\"\r\n        },\r\n        {\r\n            \"name\": \"timezone\",\r\n            \"label\": \"Timezone\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"title\",\r\n            \"label\": \"Title\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"trucadenceMemberTaskId\",\r\n            \"label\": \"trucadence_member_task_id\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"userId\",\r\n            \"label\": \"user_id\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"websiteUrl\",\r\n            \"label\": \"Website / Website URL\",\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"activityId\",\r\n            \"label\": null,\r\n            \"controlType\": \"TEXT\"\r\n        },\r\n        {\r\n            \"name\": \"thirdPartyCrmTaskId\",\r\n            \"label\": null,\r\n            \"controlType\": \"TEXT\"\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 60,\r\n        \"limit\": 200,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"0cb4061d-5410-4729-a35b-1e7c1bbc82b4"},{"name":"Field By Id","id":"43e11658-b810-4e6f-810c-e3269b6cf88a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/fields/:id","description":"<p>Get Field Information by Id</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["fields",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"20aa5ba0-e17a-4fae-9dc5-eaa1ee7e22bc","type":"any","value":"Field Id","key":"id"}]}},"response":[{"id":"0774208c-7c3b-45a1-9dbb-092ab793f935","name":"Field By Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/fields/57979?includeAssociations[]=fieldMappings&includeAssociations[]=fieldDropdownValues&page[limit]=20&sort[label]=ASC","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["fields","57979"],"query":[{"key":"includeAssociations[]","value":"fieldMappings"},{"key":"includeAssociations[]","value":"fieldDropdownValues"},{"key":"page[limit]","value":"20"},{"key":"sort[label]","value":"ASC"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 57979,\n            \"name\": \"customVarchar16\",\n            \"mandatory\": true,\n            \"implicit\": false,\n            \"readonly\": false,\n            \"cadence\": true,\n            \"dialer\": true,\n            \"hidden\": false,\n            \"maxLength\": 255,\n            \"createdDateTime\": \"2022-01-13T11:12:45Z\",\n            \"modifiedDateTime\": null,\n            \"label\": \"Building's Energy\",\n            \"controlType\": \"SELECT\",\n            \"dataType\": \"TEXT\",\n            \"sortable\": true,\n            \"dialingAgentEditable\": false,\n            \"dialingAgentViewable\": true,\n            \"clNativeColumn\": false,\n            \"clFieldName\": \"custom_varchar_16\",\n            \"associations\": {\n                \"fieldMapping\": [\n                    {\n                        \"id\": 69642\n                    }\n                ],\n                \"fieldDropdownValues\": [\n                    {\n                        \"id\": 385\n                    },\n                    {\n                        \"id\": 386\n                    },\n                    {\n                        \"id\": 387\n                    },\n                    {\n                        \"id\": 388\n                    },\n                    {\n                        \"id\": 389\n                    }\n                ]\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"fieldMappings\": [\n            {\n                \"id\": 69642,\n                \"relationship\": \"API Test Field-dd\",\n                \"syncRuleFromCadence\": \"Use most recent data from either system be used to update the other\",\n                \"syncRuleToCadence\": \"Use most recent data from either system be used to update the other\",\n                \"crmFieldName\": \"API Test Field-dd\",\n                \"crmReportFieldName\": null,\n                \"crmActivityReportFieldName\": null,\n                \"salesloftCustomField\": false,\n                \"mailmergeValueMandatory\": false,\n                \"createdDateTime\": \"2022-01-13T11:12:45Z\",\n                \"modifiedDateTime\": \"2022-08-23T11:25:36Z\",\n                \"crmType\": \"STANDALONE\",\n                \"recordType\": \"CONTACT\",\n                \"associations\": {}\n            }\n        ],\n        \"fieldDropdownValues\": [\n            {\n                \"id\": 385,\n                \"value\": \"a\",\n                \"associations\": {}\n            },\n            {\n                \"id\": 386,\n                \"value\": \"b\",\n                \"associations\": {}\n            },\n            {\n                \"id\": 387,\n                \"value\": \"x\",\n                \"associations\": {}\n            },\n            {\n                \"id\": 388,\n                \"value\": \"d\",\n                \"associations\": {}\n            },\n            {\n                \"id\": 389,\n                \"value\": \"e\",\n                \"associations\": {}\n            }\n        ]\n    }\n}"}],"_postman_id":"43e11658-b810-4e6f-810c-e3269b6cf88a"},{"name":"Field","id":"57c1e4ec-46a8-46ce-ac8b-cb57b0b4dadb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"label\":\"dropfield2\",\r\n    \"controlType\":\"textarea\",\r\n    \"readonly\":false,\r\n    \"dropDownValues\":[{\"value\":\"one\"},{\"value\":\"two\"}],\r\n    \"dialer\":true,\r\n    \"cadence\":true,\r\n    \"implicit\":false\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/fields","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["fields"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"645e2db3-57b8-4609-9451-608ef8603c9d","name":"Field","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"label\":\"dropfield2\",\r\n    \"controlType\":\"textarea\",\r\n    \"readonly\":false,\r\n    \"dropDownValues\":[{\"value\":\"one\"},{\"value\":\"two\"}],\r\n    \"dialer\":true,\r\n    \"cadence\":true,\r\n    \"implicit\":false\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/fields"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 139060,\r\n            \"name\": \"customInteger3\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": false,\r\n            \"cadence\": true,\r\n            \"dialer\": true,\r\n            \"hidden\": false,\r\n            \"maxLength\": 255,\r\n            \"createdDateTime\": \"2023-05-09T09:22:50Z\",\r\n            \"modifiedDateTime\": null,\r\n            \"label\": \"test 23\",\r\n            \"controlType\": \"INTEGER\",\r\n            \"dataType\": \"INTEGER\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": null,\r\n            \"dialingAgentViewable\": null,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_integer_3\",\r\n            \"associations\": {}\r\n        }\r\n    ]\r\n}"}],"_postman_id":"57c1e4ec-46a8-46ce-ac8b-cb57b0b4dadb"},{"name":"Field","id":"cc88ecad-4230-444d-a6a2-6e4deb560026","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/fields/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["fields",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"52cbf1ac-fc8e-4041-9a4f-57950e608640","type":"any","value":"5467","key":"id"}]}},"response":[{"id":"616830bd-5343-49fe-81cf-204ca8e99b08","name":"Field","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/fields/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["fields",":id"],"variable":[{"key":"id","value":"5467"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"cc88ecad-4230-444d-a6a2-6e4deb560026"},{"name":"Field","id":"b03fa28e-01f1-47f9-bacf-8617cd491461","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/fields/:id","urlObject":{"protocol":"https","path":["fields",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"12b5357c-ec81-4c68-b211-5133a6e1bbc1","description":{"content":"<p>fields Id</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"53013783-5320-44f8-8b49-524b927233c6","name":"Field","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"label\": \"Prospect Stage Level\",\r\n    \"clFieldName\": \"custom_varchar_3\",\r\n    \"controlType\": \"TEXT\",\r\n    \"dataType\": \"TEXT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/fields/150629"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 150629,\r\n            \"name\": \"customVarchar3\",\r\n            \"mandatory\": false,\r\n            \"implicit\": false,\r\n            \"readonly\": true,\r\n            \"cadence\": null,\r\n            \"dialer\": null,\r\n            \"hidden\": false,\r\n            \"maxLength\": null,\r\n            \"createdDateTime\": \"2023-10-10T07:49:29Z\",\r\n            \"modifiedDateTime\": \"2024-05-31T08:25:07Z\",\r\n            \"label\": \"Prospect Stage Level\",\r\n            \"controlType\": \"TEXT\",\r\n            \"dataType\": \"TEXT\",\r\n            \"sortable\": false,\r\n            \"dialingAgentEditable\": false,\r\n            \"dialingAgentViewable\": false,\r\n            \"clNativeColumn\": false,\r\n            \"clFieldName\": \"custom_varchar_3\",\r\n            \"associations\": {},\r\n            \"dropDownValues\": null\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b03fa28e-01f1-47f9-bacf-8617cd491461"}],"id":"0b9e1345-e85b-4448-bc7e-4a39d9c76604","description":"<p>Fields will be used across the Dialers application. It could be text, boolean, date, integer, timestamp, email, phone, numeric, textarea, dropdown and checkbox.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Field ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Name of the field</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>clFieldName  <br /><code>String</code></td>\n<td>Name of the koncert field</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>dialer  <br /><code>Boolean</code></td>\n<td>Whether this field can be used for Dialers</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>controlType  <br /><code>enum</code></td>\n<td>Will be used in UI by the system to show the field data to Users. Allowed values are text, textarea, select, phone, numeric, date, timestamp, integer, boolean and email</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>createdDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the field was created</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>dataType  <br /><code>enum</code></td>\n<td>Type of data this field should allow. Allowed values are text, boolean, date, integer, timestamp, email, phone, numeric, textarea and select</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>cadence  <br /><code>Boolean</code></td>\n<td>Whether this field can be used for Cadence</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>hidden  <br /><code>Boolean</code></td>\n<td>Fields marked as hidden will not be shown to Users in UI</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>implicit  <br /><code>Boolean</code></td>\n<td>Will be false for the custom fields created using API and true for the fields created by system</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>label  <br /><code>String</code></td>\n<td>Label of the field</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>mandatory  <br /><code>Boolean</code></td>\n<td>Whether the field is mandatory or not</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>maxLength  <br /><code>Integer</code></td>\n<td>Maximum number of characters allowed in a field</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedDateTime  <br /><code>Date-Time</code></td>\n<td>Date and time when the field was modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>readonly  <br /><code>Boolean</code></td>\n<td>Whether the field is read only or not</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>sortable  <br /><code>Boolean</code></td>\n<td>Whether this field can be used for sorting or not in UI. If True, then sorting is allowed and if False, then sorting is not allowed</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>clNativeColumn  <br /><code>Boolean</code></td>\n<td>Will be true for App Specific fields Other than the implicit fields and custom fields</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>dialingAgentEditable  <br /><code>Boolean</code></td>\n<td>Dialing Agent Fields Editable or Not</td>\n<td></td>\n</tr>\n<tr>\n<td>dialingAgentViewable  <br /><code>Boolean</code></td>\n<td>Dialing Agent Fields Viewable or Not</td>\n<td></td>\n</tr>\n<tr>\n<td>sfDisplayName <br /><code>String</code></td>\n<td>Display Name of the field in SF</td>\n<td></td>\n</tr>\n<tr>\n<td>requiredKeyFlag <br /><code>String</code></td>\n<td>Required Key Flag. Allowed values are YY, NN, YN, NY</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdUser  <br /><code>Array of Objects</code></td>\n<td>ID of the user who created the field</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>modifiedUser  <br /><code>Array of Objects</code></td>\n<td>ID of the user who modified the field</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>fieldDropdownValues  <br /><code>Array of Objects</code></td>\n<td>Field dropdown values information associated with the field</td>\n<td></td>\n</tr>\n<tr>\n<td>fieldMappings  <br /><code>Array of Objects</code></td>\n<td>Field mappings information associated with the field</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0b9e1345-e85b-4448-bc7e-4a39d9c76604","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"International Country","item":[{"name":"Country","id":"bc480cdf-bd1d-4f96-9286-3dccba3b0d39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/international/country","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["international","country"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"6244ebcd-cc3c-4422-860a-2b3c0c4612af","name":"Country","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/international/country"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"selected\": [\n                \"Algeria Mobile\",\n                \"Canada Landline\",\n                \"India Landline\",\n                \"United States Landline\"\n            ],\n            \"available\": [\n                \"Albania Landline\",\n                \"Albania Mobile\",\n                \"Algeria Landline\",\n                \"Andorra Landline\",\n                \"Andorra Mobile\",\n                \"Angola Landline\",\n                \"Algeria Mobile\",\n                \"Canada Landline\",\n                \"India Landline\",\n                \"United States Landline\"\n            ]\n        }\n    ],\n    \"response\": \"success\"\n}"}],"_postman_id":"bc480cdf-bd1d-4f96-9286-3dccba3b0d39"},{"name":"Update Country","id":"1a94de34-20e8-439e-b4be-9ec4dc3b681e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"selected\": [\r\n        \"Canada Landline\",\r\n        \"India Landline\",\r\n        \"United States Landline\",\r\n        \"Algeria Mobile\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/international/country","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["international","country"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"09f4ab66-c886-43cd-ba88-dac5261de71a","name":"Update Country","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"selected\": [\r\n        \"Canada Landline\",\r\n        \"India Landline\",\r\n        \"United States Landline\",\r\n        \"Algeria Mobile\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/international/country"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"1a94de34-20e8-439e-b4be-9ec4dc3b681e"}],"id":"f6cfdeb6-15bd-409e-838f-0f2a8d153615","description":"<p>International Countries allowing to make calls.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>selected  <br /><code>Array</code></td>\n<td>List of selected countries allowing to make calls</td>\n<td></td>\n</tr>\n<tr>\n<td>available  <br /><code>Array</code></td>\n<td>List of available countries allowing to make calls</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f6cfdeb6-15bd-409e-838f-0f2a8d153615","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Jobs Queue","item":[{"name":"Jobs queue","id":"a472d894-1c2e-4094-b0a9-c9cb8fa1cbd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/jobsQueue","description":"<p>To Retrieve all job queues for today.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["jobsQueue"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"ac92f380-cad6-493e-a772-6573abd1c46d","name":"Jobs queue","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/jobsQueue?filter[type]=:[upload_to_session,import_lps,add_to_cadence,reset_lps,manual_reset_lps]&page[limit]=10&page[offset]=0&includeAssociations[]=dataList&field[dataList]=[id,listName]&sort[startDateTime]=desc&filter[user][id]=19039&filter[dateRange]=Today","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["jobsQueue"],"query":[{"key":"filter[type]","value":":[upload_to_session,import_lps,add_to_cadence,reset_lps,manual_reset_lps]"},{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"},{"key":"includeAssociations[]","value":"dataList"},{"key":"field[dataList]","value":"[id,listName]"},{"key":"sort[startDateTime]","value":"desc"},{"key":"filter[user][id]","value":"19039"},{"key":"filter[dateRange]","value":"Today"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 16341,\n            \"requestId\": \"56271202-1365-316f-aee7-f73df5a545f4\",\n            \"type\": \"upload_to_session\",\n            \"status\": \"success\",\n            \"startDateTime\": \"2024-05-31T10:35:39Z\",\n            \"endDateTime\": \"2024-05-31T10:35:49Z\",\n            \"description\": \"Uploaded Successfully\",\n            \"submitted\": null,\n            \"processed\": null,\n            \"source\": null,\n            \"dataListId\": [\n                35423\n            ],\n            \"response\": {\n                \"response\": \"success\",\n                \"data\": [\n                    {\n                        \"reportName\": \"1500 Datas.csv\",\n                        \"recordsAvailable\": 546,\n                        \"recordsImported\": 546,\n                        \"duplicateCount\": 0,\n                        \"reportError\": \"\",\n                        \"missingColumnDetails\": {},\n                        \"additionalFilterDetails\": {},\n                        \"prospectsAssigned\": 0,\n                        \"cadenceStatus\": null,\n                        \"cadenceError\": [],\n                        \"parkingLotCount\": 0,\n                        \"ownedProspectsCount\": 0,\n                        \"errorProspectCount\": 0,\n                        \"duplicateAssignedProspectCount\": 0\n                    }\n                ],\n                \"requestId\": \"56271202-1365-316f-aee7-f73df5a545f4\"\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 19039\n                    }\n                ],\n                \"dataList\": [\n                    {\n                        \"id\": 35423\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 16340,\n            \"requestId\": \"dfcceed1-447d-3b7a-8292-c097d34bead3\",\n            \"type\": \"upload_to_session\",\n            \"status\": \"success\",\n            \"startDateTime\": \"2024-05-31T10:35:33Z\",\n            \"endDateTime\": \"2024-05-31T10:35:34Z\",\n            \"description\": \"Uploaded Successfully\",\n            \"submitted\": null,\n            \"processed\": null,\n            \"source\": null,\n            \"dataListId\": [\n                36177\n            ],\n            \"response\": {\n                \"response\": \"success\",\n                \"data\": [\n                    {\n                        \"reportName\": \"UK List - Edwin - 2018 (3).csv\",\n                        \"recordsAvailable\": 6,\n                        \"recordsImported\": 6,\n                        \"duplicateCount\": 0,\n                        \"reportError\": \"\",\n                        \"missingColumnDetails\": {},\n                        \"additionalFilterDetails\": {},\n                        \"prospectsAssigned\": 0,\n                        \"cadenceStatus\": null,\n                        \"cadenceError\": [],\n                        \"parkingLotCount\": 0,\n                        \"ownedProspectsCount\": 0,\n                        \"errorProspectCount\": 0,\n                        \"duplicateAssignedProspectCount\": 0\n                    }\n                ],\n                \"requestId\": \"dfcceed1-447d-3b7a-8292-c097d34bead3\"\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 19039\n                    }\n                ],\n                \"dataList\": [\n                    {\n                        \"id\": 36177\n                    }\n                ]\n            }\n        }\n    ],\n    \"includedAssociations\": {\n        \"dataList\": [\n            {\n                \"id\": 35423,\n                \"listName\": \"1500 Datas.csv\"\n            },\n            {\n                \"id\": 36177,\n                \"listName\": \"UK List - Edwin - 2018 (3).csv\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 10,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"a472d894-1c2e-4094-b0a9-c9cb8fa1cbd0"},{"name":"Job Queue","id":"e260c221-4c93-48e2-924e-e0df658446e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/jobsQueue/:id","description":"<p>To retrieve the job queue details for a specific job ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["jobsQueue",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"type":"any","value":"Job Queue Id","key":"id"}]}},"response":[{"id":"66c11e4d-9b54-4fd9-891a-e7612b4fb7e0","name":"Job Queue","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/jobsQueue/16343"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 16343,\n            \"requestId\": \"81ddaeb6-c0b2-354e-a013-5bbdcba49dd2\",\n            \"type\": \"upload_to_session\",\n            \"status\": \"success\",\n            \"startDateTime\": \"2024-05-31T11:24:31Z\",\n            \"endDateTime\": \"2024-05-31T11:24:40Z\",\n            \"description\": \"Uploaded Successfully\",\n            \"submitted\": null,\n            \"processed\": null,\n            \"source\": null,\n            \"dataListId\": [\n                35423\n            ],\n            \"response\": {\n                \"response\": \"success\",\n                \"data\": [\n                    {\n                        \"reportName\": \"1500 Datas.csv\",\n                        \"recordsAvailable\": 546,\n                        \"recordsImported\": 546,\n                        \"duplicateCount\": 0,\n                        \"reportError\": \"\",\n                        \"missingColumnDetails\": {},\n                        \"additionalFilterDetails\": {},\n                        \"prospectsAssigned\": 0,\n                        \"cadenceStatus\": null,\n                        \"cadenceError\": [],\n                        \"parkingLotCount\": 0,\n                        \"ownedProspectsCount\": 0,\n                        \"errorProspectCount\": 0,\n                        \"duplicateAssignedProspectCount\": 0\n                    }\n                ],\n                \"requestId\": \"81ddaeb6-c0b2-354e-a013-5bbdcba49dd2\"\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 19039\n                    }\n                ],\n                \"dataList\": [\n                    {\n                        \"id\": 35423\n                    }\n                ]\n            }\n        }\n    ],\n    \"includedAssociations\": {\n        \"dataList\": [\n            {\n                \"id\": 35423,\n                \"listName\": \"1500 Datas.csv\",\n                \"listType\": \"Static\",\n                \"listCrmName\": \"File\",\n                \"listCrmReportName\": \"1500 Datas.csv\",\n                \"listCrmReportUrl\": \"none\",\n                \"activeFlag\": \"Y\",\n                \"recordType\": null,\n                \"lastAttemptedDate\": \"2024-04-16T08:59:10Z\",\n                \"lastConnectedDate\": \"2024-04-16T08:59:18Z\",\n                \"totalDials\": 74,\n                \"totalConnects\": 5,\n                \"totalFollowUps\": 0,\n                \"totalRecords\": 546,\n                \"callScript\": null,\n                \"outreachStepIds\": null,\n                \"badData\": 0,\n                \"thirdPartyCadenseId\": null,\n                \"thirdPartyCrmReportType\": null,\n                \"thirdpartyIncludeTodayTasks\": false,\n                \"isLeadPoolList\": false,\n                \"assignedTeams\": null,\n                \"tdsServerUrl\": null,\n                \"phoneServer\": null,\n                \"dialingMetaData\": {\n                    \"timezone\": \"EST,CST,MST,PST\",\n                    \"isMandatory\": false,\n                    \"assignedUsers\": [],\n                    \"assignedTeams\": [],\n                    \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n                    \"callerIdMode\": \"AB-CID\",\n                    \"isRecommended\": false,\n                    \"allowDaPlayVm\": false,\n                    \"voiceMessage\": \"\",\n                    \"phoneColumnsToDial\": [\n                        \"phone\",\n                        \"custom_phone_1\",\n                        \"custom_phone_2\"\n                    ],\n                    \"callInstruction\": \"\",\n                    \"sortByColumnName\": \"contact_name\",\n                    \"sortBy\": \"ASC\",\n                    \"secondarySortByDirection\": \"\",\n                    \"tertiarySortByDirection\": \"\",\n                    \"quartnarySortByDirection\": \"\",\n                    \"secondarySortByColumn\": \"\",\n                    \"tertiarySortByColumn\": \"\",\n                    \"quartnarySortByColumn\": \"\",\n                    \"countryCodePrefixed\": false,\n                    \"primarySortByRecordType\": \"\",\n                    \"secondarySortByRecordType\": null,\n                    \"quartnarySortByRecordType\": null,\n                    \"tertiarySortByRecordType\": null\n                },\n                \"joinedTalkerCount\": 0,\n                \"dsLpsSessionKey\": null,\n                \"prsLpsSessionKey\": null,\n                \"isLpListImported\": false,\n                \"lpsLastRowDialed\": null,\n                \"isMandatory\": false,\n                \"recommended\": false,\n                \"category\": null,\n                \"noOfAttemptsPerDay\": 5,\n                \"noOfAttemptsPerRecord\": null,\n                \"timeGapBetweenAttempt\": null,\n                \"callerIdMode\": \"AB-CID\",\n                \"name\": \"Test DND March\",\n                \"company\": \"Test DND March\",\n                \"callInstruction\": null,\n                \"voiceMessage\": null,\n                \"initialGreeting\": null,\n                \"sortBy\": \"ASC\",\n                \"phoneColumnsToDial\": \"[\\\"phone\\\", \\\"custom_phone_1\\\", \\\"custom_phone_2\\\"]\",\n                \"sortByColumnName\": \"contact_name\",\n                \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n                \"groupName\": null,\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"assignedUsers\": null,\n                \"createdDate\": \"2024-04-15T08:32:09Z\",\n                \"updatedDate\": \"2024-04-15T08:32:09Z\",\n                \"lastModDivisionValue\": null,\n                \"totalAverageAttempts\": 0,\n                \"totalAverageListAttempts\": 0,\n                \"salesloftImportOnlyUserProspects\": false,\n                \"thirdPartyCrmTaskSortByField\": null,\n                \"thirdPartyCrmTaskSortByOrder\": null,\n                \"totalUniqueDials\": 20,\n                \"usersMadeThisAsFavorite\": null,\n                \"coverage\": null,\n                \"connectRate\": null,\n                \"favorite\": false,\n                \"dialsCount\": null,\n                \"averageDialAttempts\": null,\n                \"cadenceStepNo\": null,\n                \"apolloCadenceId\": null,\n                \"apolloCadenceStepNo\": null,\n                \"associations\": {\n                    \"user\": {\n                        \"id\": 19039\n                    }\n                },\n                \"badDataRate\": null,\n                \"mappingData\": \"{\\\"email_id\\\":\\\"Email\\\",\\\"contact_name\\\":\\\"Contact Name\\\",\\\"custom_phone_2\\\":\\\"Direct Phone\\\",\\\"city\\\":\\\"City\\\",\\\"phone\\\":\\\"Phone\\\",\\\"account_name\\\":\\\"Company Name\\\",\\\"state\\\":\\\"State\\\"}\",\n                \"timeGapBetweenEachAttempt\": 15,\n                \"timeGapBetweenEachPhoneColumn\": 15,\n                \"lastUploadedDateTime\": \"2024-05-31T07:24:31.000Z\",\n                \"archivedDate\": null,\n                \"reset\": false,\n                \"listMergeIds\": null,\n                \"thirdPartyCrmStepNameVmName\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"e260c221-4c93-48e2-924e-e0df658446e7"},{"name":"Job Queue status","id":"e45e8059-7b15-4776-a822-8f07175d982f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<h3 id=\"retrieve-jobs-queue-status\">Retrieve Jobs Queue Status</h3>\n<p>To retrieve the status of the last jobs queue.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"f57aaccb-395c-4b28-8499-52d2a2ee1665","name":"Job Queue status","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/jobsQueue/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 16343,\n            \"requestId\": \"81ddaeb6-c0b2-354e-a013-5bbdcba49dd2\",\n            \"type\": \"upload_to_session\",\n            \"status\": \"success\",\n            \"startDateTime\": \"2024-05-31T11:24:31Z\",\n            \"endDateTime\": \"2024-05-31T11:24:40Z\",\n            \"description\": \"Uploaded Successfully\",\n            \"submitted\": null,\n            \"processed\": null,\n            \"source\": null,\n            \"dataListId\": [\n                35423\n            ],\n            \"response\": {\n                \"response\": \"success\",\n                \"data\": [\n                    {\n                        \"reportName\": \"1500 Datas.csv\",\n                        \"recordsAvailable\": 546,\n                        \"recordsImported\": 546,\n                        \"duplicateCount\": 0,\n                        \"reportError\": \"\",\n                        \"missingColumnDetails\": {},\n                        \"additionalFilterDetails\": {},\n                        \"prospectsAssigned\": 0,\n                        \"cadenceStatus\": null,\n                        \"cadenceError\": [],\n                        \"parkingLotCount\": 0,\n                        \"ownedProspectsCount\": 0,\n                        \"errorProspectCount\": 0,\n                        \"duplicateAssignedProspectCount\": 0\n                    }\n                ],\n                \"requestId\": \"81ddaeb6-c0b2-354e-a013-5bbdcba49dd2\"\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 19039\n                    }\n                ],\n                \"dataList\": [\n                    {\n                        \"id\": 35423\n                    }\n                ]\n            }\n        }\n    ],\n    \"includedAssociations\": {\n        \"dataList\": [\n            {\n                \"id\": 35423,\n                \"listName\": \"1500 Datas.csv\",\n                \"listType\": \"Static\",\n                \"listCrmName\": \"File\",\n                \"listCrmReportName\": \"1500 Datas.csv\",\n                \"listCrmReportUrl\": \"none\",\n                \"activeFlag\": \"Y\",\n                \"recordType\": null,\n                \"lastAttemptedDate\": \"2024-04-16T08:59:10Z\",\n                \"lastConnectedDate\": \"2024-04-16T08:59:18Z\",\n                \"totalDials\": 74,\n                \"totalConnects\": 5,\n                \"totalFollowUps\": 0,\n                \"totalRecords\": 546,\n                \"callScript\": null,\n                \"outreachStepIds\": null,\n                \"badData\": 0,\n                \"thirdPartyCadenseId\": null,\n                \"thirdPartyCrmReportType\": null,\n                \"thirdpartyIncludeTodayTasks\": false,\n                \"isLeadPoolList\": false,\n                \"assignedTeams\": null,\n                \"tdsServerUrl\": null,\n                \"phoneServer\": null,\n                \"dialingMetaData\": {\n                    \"timezone\": \"EST,CST,MST,PST\",\n                    \"isMandatory\": false,\n                    \"assignedUsers\": [],\n                    \"assignedTeams\": [],\n                    \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n                    \"callerIdMode\": \"AB-CID\",\n                    \"isRecommended\": false,\n                    \"allowDaPlayVm\": false,\n                    \"voiceMessage\": \"\",\n                    \"phoneColumnsToDial\": [\n                        \"phone\",\n                        \"custom_phone_1\",\n                        \"custom_phone_2\"\n                    ],\n                    \"callInstruction\": \"\",\n                    \"sortByColumnName\": \"contact_name\",\n                    \"sortBy\": \"ASC\",\n                    \"secondarySortByDirection\": \"\",\n                    \"tertiarySortByDirection\": \"\",\n                    \"quartnarySortByDirection\": \"\",\n                    \"secondarySortByColumn\": \"\",\n                    \"tertiarySortByColumn\": \"\",\n                    \"quartnarySortByColumn\": \"\",\n                    \"countryCodePrefixed\": false,\n                    \"primarySortByRecordType\": \"\",\n                    \"secondarySortByRecordType\": null,\n                    \"quartnarySortByRecordType\": null,\n                    \"tertiarySortByRecordType\": null\n                },\n                \"joinedTalkerCount\": 0,\n                \"dsLpsSessionKey\": null,\n                \"prsLpsSessionKey\": null,\n                \"isLpListImported\": false,\n                \"lpsLastRowDialed\": null,\n                \"isMandatory\": false,\n                \"recommended\": false,\n                \"category\": null,\n                \"noOfAttemptsPerDay\": 5,\n                \"noOfAttemptsPerRecord\": null,\n                \"timeGapBetweenAttempt\": null,\n                \"callerIdMode\": \"AB-CID\",\n                \"name\": \"Test DND March\",\n                \"company\": \"Test DND March\",\n                \"callInstruction\": null,\n                \"voiceMessage\": null,\n                \"initialGreeting\": null,\n                \"sortBy\": \"ASC\",\n                \"phoneColumnsToDial\": \"[\\\"phone\\\", \\\"custom_phone_1\\\", \\\"custom_phone_2\\\"]\",\n                \"sortByColumnName\": \"contact_name\",\n                \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n                \"groupName\": null,\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"assignedUsers\": null,\n                \"createdDate\": \"2024-04-15T08:32:09Z\",\n                \"updatedDate\": \"2024-04-15T08:32:09Z\",\n                \"lastModDivisionValue\": null,\n                \"totalAverageAttempts\": 0,\n                \"totalAverageListAttempts\": 0,\n                \"salesloftImportOnlyUserProspects\": false,\n                \"thirdPartyCrmTaskSortByField\": null,\n                \"thirdPartyCrmTaskSortByOrder\": null,\n                \"totalUniqueDials\": 20,\n                \"usersMadeThisAsFavorite\": null,\n                \"coverage\": null,\n                \"connectRate\": null,\n                \"favorite\": false,\n                \"dialsCount\": null,\n                \"averageDialAttempts\": null,\n                \"cadenceStepNo\": null,\n                \"apolloCadenceId\": null,\n                \"apolloCadenceStepNo\": null,\n                \"associations\": {\n                    \"user\": {\n                        \"id\": 19039\n                    }\n                },\n                \"badDataRate\": null,\n                \"mappingData\": \"{\\\"email_id\\\":\\\"Email\\\",\\\"contact_name\\\":\\\"Contact Name\\\",\\\"custom_phone_2\\\":\\\"Direct Phone\\\",\\\"city\\\":\\\"City\\\",\\\"phone\\\":\\\"Phone\\\",\\\"account_name\\\":\\\"Company Name\\\",\\\"state\\\":\\\"State\\\"}\",\n                \"timeGapBetweenEachAttempt\": 15,\n                \"timeGapBetweenEachPhoneColumn\": 15,\n                \"lastUploadedDateTime\": \"2024-05-31T07:24:31.000Z\",\n                \"archivedDate\": null,\n                \"reset\": false,\n                \"listMergeIds\": null,\n                \"thirdPartyCrmStepNameVmName\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"e45e8059-7b15-4776-a822-8f07175d982f"}],"id":"13fa457b-8461-4163-8f90-c8de878901c2","description":"<p>To work with large sets of data during upload to session or importing records from crm.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Jobqueue Id</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>requestId  <br /><code>String</code></td>\n<td>To uniquely identify the request in the logs.</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>type  <br /><code>String</code></td>\n<td>Type of the request. Allowed values are <code>upload_to_session, import_lps, reset_lps</code></td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>status  <br /><code>String</code></td>\n<td>Job queue status. Allowed values are <code>in-progress, success, failure</code></td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>startDateTime  <br /><code>DateTime</code></td>\n<td>Jobqueue start datetime</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>endDateTime  <br /><code>DateTime</code></td>\n<td>Jobqueue end datetime</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>dateRange  <br /><code>String</code></td>\n<td>Only Today is allowed</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>description  <br /><code>String</code></td>\n<td>Jobqueue status Description</td>\n<td></td>\n</tr>\n<tr>\n<td>response  <br /><code>Json</code></td>\n<td>Jobqueue final Response</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>User  <br /><code>Object</code></td>\n<td>Owner of the List</td>\n<td><code>Filterable</code>  <br /><code>Sortable IncludeAssociations</code></td>\n</tr>\n<tr>\n<td>List  <br /><code>Object</code></td>\n<td>List used for Jobqueue</td>\n<td><code>IncludeAssociations</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"13fa457b-8461-4163-8f90-c8de878901c2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Lookups","item":[{"name":"Default Actions","id":"b3068f5d-d063-4a6a-ba62-96f536b49fe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/lookUps?filter[lookupName]=cadence_prospect_workflow_actions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["lookUps"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[lookupName]","value":"cadence_prospect_workflow_actions"}],"variable":[]}},"response":[{"id":"15054e5c-20a1-45ec-a3f9-c9e8413fc2b5","name":"Default Actions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/lookUps?filter[lookupName]=cadence_prospect_workflow_actions","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["lookUps"],"query":[{"key":"filter[lookupName]","value":"cadence_prospect_workflow_actions"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 11505,\n            \"lookupName\": \"cadence_prospect_workflow_actions\",\n            \"lookupValue\": \"Exit Cadence\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 1,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 116960,\n            \"lookupName\": \"cadence_prospect_workflow_actions\",\n            \"lookupValue\": \"Move To Another Cadence\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 3,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 11506,\n            \"lookupName\": \"cadence_prospect_workflow_actions\",\n            \"lookupValue\": \"Move To Next Touch\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 2,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 11508,\n            \"lookupName\": \"cadence_prospect_workflow_actions\",\n            \"lookupValue\": \"No Action\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 4,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 4,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"b3068f5d-d063-4a6a-ba62-96f536b49fe9"},{"name":"Prospect Stages","id":"b121c9b3-4a8a-4e33-9c3c-9cade02b1519","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/lookUps?filter[lookupName]=member_stage","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["lookUps"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[lookupName]","value":"member_stage"}],"variable":[]}},"response":[{"id":"7d60cbc4-0f0c-4779-8984-6859d6376b43","name":"Prospect Stages","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/lookUps?filter[lookupName]=member_stage","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["lookUps"],"query":[{"key":"filter[lookupName]","value":"member_stage"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 117028,\n            \"lookupName\": \"member_stage\",\n            \"lookupValue\": \"Attempted\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 1,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 306684,\n            \"lookupName\": \"member_stage\",\n            \"lookupValue\": \"Bad Data\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 4,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 306685,\n            \"lookupName\": \"member_stage\",\n            \"lookupValue\": \"Do Not Contact\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 5,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 306682,\n            \"lookupName\": \"member_stage\",\n            \"lookupValue\": \"Interested\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 2,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 306683,\n            \"lookupName\": \"member_stage\",\n            \"lookupValue\": \"Not Interested\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 3,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 306686,\n            \"lookupName\": \"member_stage\",\n            \"lookupValue\": \"Opt-out\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 6,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 306687,\n            \"lookupName\": \"member_stage\",\n            \"lookupValue\": \"Replied\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 7,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 7,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"b121c9b3-4a8a-4e33-9c3c-9cade02b1519"},{"name":"Lookup","id":"45e929eb-d56c-4c83-a73e-720b793a8aa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"lookupValue\":\"mysession\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/lookUps/:lookupId","description":"<p>this request used to update lookup value based on id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["lookUps",":lookupId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"35cf961d-e1bf-4934-ab99-9e54cd5a6062","type":"any","value":"6758","key":"lookupId"}]}},"response":[],"_postman_id":"45e929eb-d56c-4c83-a73e-720b793a8aa5"}],"id":"863a36ac-40a0-4663-af22-cf5fc018cfd2","_postman_id":"863a36ac-40a0-4663-af22-cf5fc018cfd2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"My List","item":[{"name":"Import","item":[{"name":"Cadence","item":[{"name":"All Cadences","id":"d72513a9-03b4-4efe-9e01-1ba069fc4a7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/cadences","description":"<p>Get cadence information</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["cadences"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"31dbd07d-437e-46c7-a412-66ef1a2bc6c6","name":"All Cadences","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/cadences?filter[user][id]=7424&sort[id]=desc&filter[shared]=true&filter[status]=:[ACTIVE]&page[limit]=100","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["cadences"],"query":[{"key":"filter[user][id]","value":"7424"},{"key":"sort[id]","value":"desc"},{"key":"filter[shared]","value":"true"},{"key":"filter[status]","value":":[ACTIVE]"},{"key":"page[limit]","value":"100"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:23:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 10236,\n            \"createdDate\": \"2022-09-26T06:10:30Z\",\n            \"status\": \"ACTIVE\",\n            \"name\": \"Test 26Sep\",\n            \"sharedType\": \"allUsers\",\n            \"associations\": {\n                \"touch\": [\n                    {\n                        \"id\": 26251\n                    },\n                    {\n                        \"id\": 26252\n                    },\n                    {\n                        \"id\": 26253\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 574,\n        \"limit\": 100,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"d72513a9-03b4-4efe-9e01-1ba069fc4a7b"},{"name":"All Touches","id":"bb644acd-ab2b-46aa-b012-ff5afae4096f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/touches?filter[cadence][id]=:cadenceId","description":"<p>Get touches information based on the selected cadence</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["touches"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[cadence][id]","value":":cadenceId"}],"variable":[]}},"response":[{"id":"86a93d6b-f180-42f7-b458-317c128176b2","name":"All Touches","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/touches?filter[user][id]=7424&page[limit]=500&filter[cadence][id]=10236&sort[stepNo]=asc","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["touches"],"query":[{"key":"filter[user][id]","value":"7424"},{"key":"page[limit]","value":"500"},{"key":"filter[cadence][id]","value":"10236"},{"key":"sort[stepNo]","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:23:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 26251,\n            \"createdDate\": \"2022-09-26T06:11:22Z\",\n            \"status\": \"NEW\",\n            \"touchType\": \"OTHERS\",\n            \"timeToComplete\": 2,\n            \"timeToCompleteUnit\": \"Da\",\n            \"stepNo\": 1,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                },\n                \"cadence\": {\n                    \"id\": 10236\n                }\n            }\n        },\n        {\n            \"id\": 26252,\n            \"createdDate\": \"2022-09-26T06:11:28Z\",\n            \"status\": \"NEW\",\n            \"touchType\": \"OTHERS\",\n            \"timeToComplete\": 2,\n            \"timeToCompleteUnit\": \"Da\",\n            \"stepNo\": 2,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                },\n                \"cadence\": {\n                    \"id\": 10236\n                }\n            }\n        },\n        {\n            \"id\": 26253,\n            \"createdDate\": \"2022-09-26T06:11:33Z\",\n            \"status\": \"NEW\",\n            \"touchType\": \"OTHERS\",\n            \"timeToComplete\": 2,\n            \"timeToCompleteUnit\": \"Da\",\n            \"stepNo\": 3,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                },\n                \"cadence\": {\n                    \"id\": 10236\n                }\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 3,\n        \"limit\": 500,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"bb644acd-ab2b-46aa-b012-ff5afae4096f"}],"id":"d096b768-212f-4184-88bb-c47a7d4978c2","description":"<p>Cadence Information</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>cadence Id</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>DateTime</code></td>\n<td>created date of the cadence</td>\n<td></td>\n</tr>\n<tr>\n<td>status  <br /><code>Enum</code></td>\n<td>status of the cadence. Allowed values are <code>NEW, ACTIVE, INACTIVE, PAUSED, RESUME</code></td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>cadence name</td>\n<td></td>\n</tr>\n<tr>\n<td>sharedType  <br /><code>String</code></td>\n<td>Shared type of the Cadence. Allowed values are <code>none</code> <code>allUsers</code> <code>specificGroupOfUsers</code> <code>shareWithUsers</code></td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>sharedGroups  <br /><code>Array of Strings</code></td>\n<td>Name of the Group(s) the Cadence shared with</td>\n<td></td>\n</tr>\n<tr>\n<td>sharedUsers  <br /><code>Array of Integers</code></td>\n<td>Name of the User(s) the Cadence shared with</td>\n<td></td>\n</tr>\n<tr>\n<td>shared  <br /><code>Boolean</code></td>\n<td>cadence shared or not  <br /></td>\n<td><code>Filterable</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>User  <br /><code>Array of Objects</code></td>\n<td>Owner of the Cadence</td>\n<td><code>Filterable</code>  <br /><code>Sortable IncludeAssociations</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d096b768-212f-4184-88bb-c47a7d4978c2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"SalesForce","item":[{"name":"Reports","id":"5de5359b-40af-4c03-ae4e-45ca36491b1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/import/crm/reports","description":"<p>Get all the reports from Salesforce</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","crm","reports"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"737ce9ed-89ea-4e09-819c-dbcd853b4008","name":"CRM Reports","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/import/crm/reports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCTUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCTUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"AA Dialer - Call Disposition Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCUUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCUUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"AA Dialer - Executive Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCVUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCVUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"AA Dialer - Summary Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCXUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCXUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"AA Dialer - Usage Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCSUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCSUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"AAD-Executive-This Month(No CL CallLogs)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCWUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCWUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"AAD-Summary-This Week(No CL CallLogs)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDRUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDRUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Active Accounts (Last 14 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDSUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDSUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Active Contacts (Last 14 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDTUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDTUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Active Leads (Last 14 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCYUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCYUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Bad Data by Lists (Current Week)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCZUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCZUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Activity (Detailed) Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCaUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCaUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Activity (Detailed) Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCbUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCbUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Activity (Positive) Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCcUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCcUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Activity (Positive) Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCdUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCdUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Activity (Summary) Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCeUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCeUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Activity (Summary) Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDUUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDUUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Call Connects & VM – This Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDVUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDVUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Call Connects & VM – This Week\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDWUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDWUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Call Metrics – This Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDXUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDXUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Call Metrics – This Week\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCgUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCgUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Outcomes by Rep (Current Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCfUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCfUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Outcomes by Rep (Last 30 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skChUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skChUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Call Outcomes by Rep (Last 90 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDkUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDkUAI\",\r\n            \"FolderName\": \"Koncert Reports (User)\",\r\n            \"Name\": \"Call Outcomes Details by Product (Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDlUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDlUAI\",\r\n            \"FolderName\": \"Koncert Reports (User)\",\r\n            \"Name\": \"Call Outcomes Summary by Product (Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skC9UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skC9UAI\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"CD-Executive-This Month (No CL CallLogs)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCBUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCBUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"CD-Summary-This Week (No CL CallLogs)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCCUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCCUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Click Dialer - Call Disposition Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCDUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCDUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Click Dialer - Executive Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCAUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCAUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Click Dialer - Other Dialing Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCEUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCEUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Click Dialer - Summary Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCFUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCFUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Click Dialer - Usage Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCGUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCGUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Closed Won Opportunity $ by Rep\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCiUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCiUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Connect Duration Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCjUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCjUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Connect Duration Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCkUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCkUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Connect Time Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skClUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skClUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Connect Time Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCnUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCnUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Connects by Hour Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCoUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCoUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Connects by Hour Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCmUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCmUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Connects Vs. Positive Connects\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V00000929GPUAY\"\r\n            },\r\n            \"Id\": \"00O8V00000929GPUAY\",\r\n            \"FolderName\": \"Private Reports\",\r\n            \"Name\": \"contact 0408\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008t148UAA\"\r\n            },\r\n            \"Id\": \"00O8V000008t148UAA\",\r\n            \"FolderName\": \"Private Reports\",\r\n            \"Name\": \"contact report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCpUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCpUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Conversations (Current Week)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCqUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCqUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Conversations by Lists (Current Week)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCrUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCrUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Conversations by Rep (Current Week)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCsUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCsUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Dial Attempts (Current Week)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCtUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCtUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Dial Attempts by Rep (Current Week)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCuUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCuUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Dial Time Vs. Talk Time (Current Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCvUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCvUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Dials Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCwUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCwUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Dials Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCxUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCxUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Dials Vs Connects Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCyUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCyUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Dials Vs Connects Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDYUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDYUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Dials – This Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDZUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDZUAY\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Dials – This Week\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDbUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDbUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Email Metrics  – This Week\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDaUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDaUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Email Metrics – This Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDcUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDcUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Emails Clicked – This Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDdUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDdUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Emails Clicked – This Week\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDeUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDeUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Emails Opened – This Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDfUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDfUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Emails Opened – This Week\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDgUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDgUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Emails Replied – This Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDhUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDhUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Emails Replied – This Week\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDiUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDiUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Emails Sent – This Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDjUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDjUAI\",\r\n            \"FolderName\": \"Koncert Reports (Cadence)\",\r\n            \"Name\": \"Emails Sent – This Week\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCMUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCMUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"FD-Executive-This Month (No CL CallLogs)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCNUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCNUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"FD-Summary-This Week (No CL CallLogs)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCOUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCOUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Flow Dialer - Call Disposition\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCPUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCPUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Flow Dialer - Executive Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCQUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCQUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Flow Dialer - Summary Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCRUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCRUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Flow Dialer - Usage Report\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDnUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDnUAI\",\r\n            \"FolderName\": \"Followup Activities\",\r\n            \"Name\": \"Followup Activities - Contacts\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDoUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDoUAI\",\r\n            \"FolderName\": \"Followup Activities\",\r\n            \"Name\": \"Followup Activities - Leads\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000009khSKUAY\"\r\n            },\r\n            \"Id\": \"00O8V000009khSKUAY\",\r\n            \"FolderName\": \"Private Reports\",\r\n            \"Name\": \"Only one row\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCHUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCHUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Opportunities by Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCIUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCIUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Opportunities by Rep\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCJUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCJUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Opportunities by Stage\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCKUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCKUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Opportunity $ by Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCLUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skCLUAY\",\r\n            \"FolderName\": \"Koncert Reports (Standard)\",\r\n            \"Name\": \"Opportunity $ by Rep\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD8UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD8UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - AA Dialer (Current Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD9UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD9UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - AA Dialer (Last 30 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDAUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDAUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - AA Dialer (Last 90 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skCzUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skCzUAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Click Dialer (Current Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD0UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD0UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Click Dialer (Last 30 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD1UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD1UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Click Dialer (Last 90 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD2UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD2UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Current Month\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD5UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD5UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Flow Dialer (30 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD6UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD6UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Flow Dialer (90 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD7UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD7UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Flow Dialer (Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD3UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD3UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Last 30 days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skD4UAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skD4UAI\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes - Last 90 days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDHUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDHUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - AA Dialer (30 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDIUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDIUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - AA Dialer (90 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDJUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDJUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - AA Dialer (Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDBUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDBUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - Click Dialer (30 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDCUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDCUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - Click Dialer (90 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDDUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDDUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - Click Dialer (Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDEUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDEUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - Flow Dialer (30 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDFUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDFUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - Flow Dialer (90 days)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDGUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDGUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Outcomes by Rep - Flow Dialer (Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDKUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDKUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Positive Conversations (Current Quarter)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008pTdlUAE\"\r\n            },\r\n            \"Id\": \"00O8V000008pTdlUAE\",\r\n            \"FolderName\": \"Public Reports\",\r\n            \"Name\": \"Sample Flow Report: Screen Flows\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000009khwQUAQ\"\r\n            },\r\n            \"Id\": \"00O8V000009khwQUAQ\",\r\n            \"FolderName\": \"Private Reports\",\r\n            \"Name\": \"Summary report by account\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDMUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDMUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Tracking Conversations by Caller ID\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDLUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDLUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Tracking Conversations by Caller ID\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDNUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDNUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Usage by Rep (Current Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDmUAI\"\r\n            },\r\n            \"Id\": \"00O8V000008skDmUAI\",\r\n            \"FolderName\": \"Koncert Reports (User)\",\r\n            \"Name\": \"Usage by Rep (Current Month)\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDOUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDOUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Valid Connects Last 30 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDPUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDPUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"Valid Connects Last 7 Days\"\r\n        },\r\n        {\r\n            \"attributes\": {\r\n                \"type\": \"Report\",\r\n                \"url\": \"/services/data/v41.0/sobjects/Report/00O8V000008skDQUAY\"\r\n            },\r\n            \"Id\": \"00O8V000008skDQUAY\",\r\n            \"FolderName\": \"Koncert Reports (Manager)\",\r\n            \"Name\": \"YTD Dials\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"5de5359b-40af-4c03-ae4e-45ca36491b1e"},{"name":"Import","id":"c863ab67-2919-4077-a36e-70cd406dfc44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 10937\r\n    },\r\n    \"dataList\": {\r\n        \"listName\": \"contact report(2)\",\r\n        \"listCrmReportName\":\"contact report\",\r\n        \"listCrmReportUrl\":\"00O8V000008t148UAA\",\r\n        \"callInstruction\": \"\",\r\n        \"callerIdMode\": \"UNBLOCK\",\r\n        \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"International\",\r\n        \"isLeadPoolList\": false,\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/crm","description":"<p>Create DataList using Import from Salesforce</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user  <br /><code>Object</code></td>\n<td>Owner of the dataList  <br /></td>\n</tr>\n<tr>\n<td>dataList  <br /><code>Object</code></td>\n<td>Data List Information</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","crm"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"36a6f22e-dc06-4710-868d-583b82dfff00","name":"CRM","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 10937\r\n    },\r\n    \"dataList\": {\r\n        \"listName\": \"contact report(3)\",\r\n        \"listCrmReportName\":\"contact report\",\r\n        \"listCrmReportUrl\":\"00O8V000008t148UAA\",\r\n        \"callInstruction\": \"\",\r\n        \"callerIdMode\": \"UNBLOCK\",\r\n        \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"International\",\r\n        \"isLeadPoolList\": false,\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/crm"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 11780,\r\n            \"listName\": \"contact report(3)\",\r\n            \"listType\": \"Dynamic\",\r\n            \"listCrmName\": \"Salesforce\",\r\n            \"listCrmReportName\": \"contact report\",\r\n            \"listCrmReportUrl\": \"00O8V000008t148UAA\",\r\n            \"activeFlag\": \"Y\",\r\n            \"badData\": 0,\r\n            \"isLeadPoolList\": false,\r\n            \"dialingMetaData\": {\r\n                \"allow_da_play_vm\": false,\r\n                \"primary_sort_by_direction\": \"ASC\",\r\n                \"secondary_sort_by_direction\": \"\",\r\n                \"tertiary_sort_by_direction\": \"\",\r\n                \"quartnary_sort_by_direction\": \"\",\r\n                \"primary_sort_by_column\": \"contact_name\",\r\n                \"secondary_sort_by_column\": \"\",\r\n                \"tertiary_sort_by_column\": \"\",\r\n                \"quartnary_sort_by_column\": \"\",\r\n                \"voice_message_name\": \"\",\r\n                \"dialer_phone_columns\": [\r\n                    \"phone\"\r\n                ],\r\n                \"caller_id_list\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n                \"timezone\": \"International\",\r\n                \"dialing_instructions\": \"\",\r\n                \"country_code_prefixed\": \"false\",\r\n                \"caller_id_mode\": \"UNBLOCK\",\r\n                \"is_mandatory\": false,\r\n                \"is_recommended\": false,\r\n                \"assigned_teams\": [],\r\n                \"assigned_users\": [],\r\n                \"primary_sort_by_record_type\": \"\"\r\n            },\r\n            \"isMandatory\": false,\r\n            \"recommended\": false,\r\n            \"callerIdMode\": \"UNBLOCK\",\r\n            \"name\": \"Rajesh Kumar A\",\r\n            \"company\": \"Rajesh Kumar  SF org\",\r\n            \"sortBy\": \"ASC\",\r\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\r\n            \"sortByColumnName\": \"contact_name\",\r\n            \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n            \"timezone\": \"International\",\r\n            \"createdDate\": \"2022-11-02T07:26:32Z\",\r\n            \"associations\": {\r\n                \"user\": {\r\n                    \"id\": 10937\r\n                }\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"c863ab67-2919-4077-a36e-70cd406dfc44"},{"name":"Lead Pool Import","id":"c225c071-66d3-4c23-a71f-b8759b9c561d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TestConnection\": false,\r\n    \"reportId\": \"00OJ3000000eiwpMAA\",\r\n    \"id\": \"0035i00002ek4FH\",\r\n    \"Account Name\": \"United Oil & Gas Corp.\",\r\n    \"Contact Name\": \"Lauren Boyle\",\r\n    \"Email\": \"lboyle@uog.com\",\r\n    \"Phone\": \"(603) 952-2500\",\r\n    \"Title\": \"CFO\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/public/import/prospect?na=75D55AD982BA81FB246CD48F1FA8AC20","description":"<h3 id=\"lps-import\">LPS Import</h3>\n<p>This endpoint allows you to import prospects into the koncert for Lead Pool List.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p>reportId: The ID of the SF Report.</p>\n</li>\n<li><p>id:Unique id of the prospect</p>\n</li>\n<li><p>TestConnection: During HttpFlow setup in SF, it needs success response. If value is true, this API will return 200 else API will process lead pool flow.</p>\n</li>\n</ul>\n<p><strong>Note</strong>: Please refer to the <a href=\"https://koncert-cadence.postman.co/workspace/Koncert-Workspace~584984bc-87d6-4561-8dd3-95804b42940c/request/14011469-0cb4061d-5410-4729-a35b-1e7c1bbc82b4?action=share&amp;source=copy-link&amp;creator=15611905&amp;ctx=documentation\"><b>Field List API</b></a> under the <strong>Fields</strong> tab. Use the field labeled <code>label</code> as the key for all remaining fields.</p>\n","urlObject":{"protocol":"https","path":["public","import","prospect"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"na","value":"75D55AD982BA81FB246CD48F1FA8AC20"}],"variable":[]}},"response":[{"id":"87a3af81-0288-4e16-844e-4184a0a1459b","name":"Lead Pool Import","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"TestConnection\":false,\r\n    \"reportId\": \"00OJ3000000eiwpMAA\",\r\n    \"id\": \"0035i00002ek4FH\",\r\n    \"Account Name\": \"United Oil & Gas Corp.\",\r\n    \"Contact Name\": \"Lauren Boyle\",\r\n    \"Email\": \"lboyle@uog.com\",\r\n    \"Phone\": \"(603) 952-2500\",\r\n    \"Title\": \"CFO\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/public/import/prospect?na=75D55AD982BA81FB246CD48F1FA8AC20","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["public","import","prospect"],"query":[{"key":"na","value":"75D55AD982BA81FB246CD48F1FA8AC20"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"status\": \"success\",\n            \"sfPk\": \"0035i00002ek4FF\"\n        }\n    ]\n}"}],"_postman_id":"c225c071-66d3-4c23-a71f-b8759b9c561d"}],"id":"c7c38101-0b48-4568-8da9-d2d35e987a69","description":"<p>To get Reports and Create/Import DataList.</p>\n","_postman_id":"c7c38101-0b48-4568-8da9-d2d35e987a69","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Hubspot","item":[{"name":"Reports","id":"c7044c68-e95a-47fc-a34f-340d202cf89f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/import/crm/reports","description":"<p>Get all the reports from hubspot.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","crm","reports"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"83608fe3-d278-42a6-ad5a-ce5ebbd042ee","name":"Reports","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/import/crm/reports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"Contacts-1\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"1\"\n        },\n        {\n            \"name\": \"hubspot-crm-exports-all-contacts-2021-06-30-1\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"2\"\n        },\n        {\n            \"name\": \"Contacts-Oct 13\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"3\"\n        },\n        {\n            \"name\": \"hub 2 \",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4\"\n        },\n        {\n            \"name\": \"hub 3\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"5\"\n        }\n    ]\n}"}],"_postman_id":"c7044c68-e95a-47fc-a34f-340d202cf89f"},{"name":"Import","id":"9446d3f6-a47d-484c-ae11-517cab079a11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/import/crm","description":"<p>Create DataList using Import from Hubspot</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user  <br /><code>Object</code></td>\n<td>Owner of the dataList  <br /></td>\n</tr>\n<tr>\n<td>dataList  <br /><code>Object</code></td>\n<td>Data List Information</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","crm"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"28b3c19d-3040-439d-8b48-7d45dfecb325","name":"Hubspot","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 10937\r\n    },\r\n    \"dataList\": {\r\n        \"listName\": \"contact report(3)\",\r\n        \"listCrmReportName\": \"contact report\",\r\n        \"listCrmReportUrl\": \"00O8V000008t148UAA\",\r\n        \"callInstruction\": \"\",\r\n        \"callerIdMode\": \"UNBLOCK\",\r\n        \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"International\",\r\n        \"isLeadPoolList\": false,\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/crm"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9446d3f6-a47d-484c-ae11-517cab079a11"}],"id":"1405a26b-e0e8-4f50-b80e-62c2f59766f6","description":"<p>To get Reports and Create/Import DataList.</p>\n","_postman_id":"1405a26b-e0e8-4f50-b80e-62c2f59766f6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Zoho","item":[{"name":"Reports","id":"88473f27-67f4-45fc-b749-16fcf12a2639","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/import/crm/reports","description":"<p>Get all the reports from zoho.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","crm","reports"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7d6ee674-b1fc-472c-a496-690da9993788","name":"Reports","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/import/crm/reports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"All Contacts\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000087529\"\n        },\n        {\n            \"name\": \"Mailing Labels\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000087531\"\n        },\n        {\n            \"name\": \"My Contacts\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000087567\"\n        },\n        {\n            \"name\": \"New Last Week\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000087537\"\n        },\n        {\n            \"name\": \"New This Week\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000087535\"\n        },\n        {\n            \"name\": \"Rajesh Kumar.A\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000753005\"\n        },\n        {\n            \"name\": \"Recently Created Contacts\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000087539\"\n        },\n        {\n            \"name\": \"Recently Modified Contacts\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000087541\"\n        },\n        {\n            \"name\": \"Unread Contacts\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000087533\"\n        },\n        {\n            \"name\": \"Unsubscribed Contacts\",\n            \"folderName\": \"Contacts\",\n            \"id\": \"4982435000000283024\"\n        },\n        {\n            \"name\": \"All Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000087501\"\n        },\n        {\n            \"name\": \"Converted Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000089005\"\n        },\n        {\n            \"name\": \"Junk Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000149020\"\n        },\n        {\n            \"name\": \"Mailing Labels\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000087503\"\n        },\n        {\n            \"name\": \"My Converted Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000089007\"\n        },\n        {\n            \"name\": \"My Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000087563\"\n        },\n        {\n            \"name\": \"Not Qualified Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000149031\"\n        },\n        {\n            \"name\": \"Open Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000149042\"\n        },\n        {\n            \"name\": \"Rajesh Kumar.A\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000753180\"\n        },\n        {\n            \"name\": \"Recently Created Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000087509\"\n        },\n        {\n            \"name\": \"Recently Modified Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000087511\"\n        },\n        {\n            \"name\": \"Today's Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000087507\"\n        },\n        {\n            \"name\": \"Unread Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000087505\"\n        },\n        {\n            \"name\": \"Unsubscribed Leads\",\n            \"folderName\": \"Leads\",\n            \"id\": \"4982435000000283003\"\n        }\n    ]\n}"}],"_postman_id":"88473f27-67f4-45fc-b749-16fcf12a2639"},{"name":"Import","id":"744d1d5d-54c6-495e-b312-278fc9c11dbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/import/crm","description":"<p>Create DataList using Import from Zoho</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user  <br /><code>Object</code></td>\n<td>Owner of the dataList  <br /></td>\n</tr>\n<tr>\n<td>dataList  <br /><code>Object</code></td>\n<td>Data List Information</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","crm"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"2c8bf09e-6ac7-41cb-917d-64fc15bd6565","name":"Zoho","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 8873\r\n    },\r\n    \"dataList\": {\r\n        \"listName\": \"All Contacts 12\",\r\n        \"listCrmReportName\": \"All Contacts 12\",\r\n        \"listCrmReportUrl\": \"4982435000000087529\",\r\n        \"listCrmName\":\"zoho\",\r\n        \"recordType\":\"Contacts\",\r\n        \"callInstruction\": \"\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"International\",\r\n        \"isLeadPoolList\": false,\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/crm"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 13845,\n            \"listName\": \"All Contacts 12\",\n            \"listType\": \"Dynamic\",\n            \"listCrmName\": \"Zoho\",\n            \"listCrmReportName\": \"All Contacts 12\",\n            \"listCrmReportUrl\": \"4982435000000087529\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"Contacts\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": null,\n            \"totalConnects\": null,\n            \"totalFollowUps\": null,\n            \"totalRecords\": null,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": null,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"International\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": null,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": null,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"rajesh\",\n            \"company\": \"testing\",\n            \"callInstruction\": \"\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"International\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-12-12T06:22:42Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": null,\n            \"totalAverageListAttempts\": null,\n            \"salesloftImportOnlyUserProspects\": null,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": null,\n            \"totalUniqueDials\": null,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 8873\n                }\n            },\n            \"badDataRate\": null\n        }\n    ]\n}"}],"_postman_id":"744d1d5d-54c6-495e-b312-278fc9c11dbb"}],"id":"25bbe97d-83ac-4757-99ba-9d38e4c1d82d","_postman_id":"25bbe97d-83ac-4757-99ba-9d38e4c1d82d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Salesloft","item":[{"name":"Cadences","id":"cfdbeec1-2dc1-4909-b4ed-5a4d5ab498ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/cadences/:crmType","description":"<p>Get all the cadence/sequence from Salesloft</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","cadences",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"c35f8301-5fa7-4e0c-8dc3-6e96ef1171b1","type":"any","value":"crm type","key":"crmType"}]}},"response":[{"id":"9ff30174-0324-44cd-99bd-d85d7f6b16af","name":"Cadences","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/cadences/Salesloft"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": \"2860118\",\r\n            \"name\": \"Anne Call Day 1\"\r\n        },\r\n        {\r\n            \"id\": \"1535502\",\r\n            \"name\": \"Cadence B\"\r\n        },\r\n        {\r\n            \"id\": \"1535515\",\r\n            \"name\": \"Cadence C\"\r\n        },\r\n        {\r\n            \"id\": \"1535866\",\r\n            \"name\": \"Cadence D\"\r\n        },\r\n        {\r\n            \"id\": \"807771\",\r\n            \"name\": \"Cadence Demo\"\r\n        },\r\n        {\r\n            \"id\": \"807482\",\r\n            \"name\": \"Cadence List 1\"\r\n        },\r\n        {\r\n            \"id\": \"1637783\",\r\n            \"name\": \"Cadence Metrics\"\r\n        },\r\n        {\r\n            \"id\": \"1644027\",\r\n            \"name\": \"Cadence QA\"\r\n        },\r\n        {\r\n            \"id\": \"2650938\",\r\n            \"name\": \"Call Blaster\"\r\n        },\r\n        {\r\n            \"id\": \"2848199\",\r\n            \"name\": \"Call Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"1050519\",\r\n            \"name\": \"Call Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"829731\",\r\n            \"name\": \"chkloft\"\r\n        },\r\n        {\r\n            \"id\": \"2857362\",\r\n            \"name\": \"CS Call Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2878891\",\r\n            \"name\": \"CS New Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"854581\",\r\n            \"name\": \"Devuse\"\r\n        },\r\n        {\r\n            \"id\": \"2174617\",\r\n            \"name\": \"Duplicate Test\"\r\n        },\r\n        {\r\n            \"id\": \"2526597\",\r\n            \"name\": \"Duplicate Test 1\"\r\n        },\r\n        {\r\n            \"id\": \"2752394\",\r\n            \"name\": \"Edwin Aug Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"1535496\",\r\n            \"name\": \"Edwin Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"1043402\",\r\n            \"name\": \"Email Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2240218\",\r\n            \"name\": \"Erica 1 Day\"\r\n        },\r\n        {\r\n            \"id\": \"2103631\",\r\n            \"name\": \"Erica 5 Step Call\"\r\n        },\r\n        {\r\n            \"id\": \"2240228\",\r\n            \"name\": \"Erica Day 1\"\r\n        },\r\n        {\r\n            \"id\": \"2377176\",\r\n            \"name\": \"Erica New Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2019631\",\r\n            \"name\": \"Erica New Call\"\r\n        },\r\n        {\r\n            \"id\": \"1263656\",\r\n            \"name\": \"Erica Test Call\"\r\n        },\r\n        {\r\n            \"id\": \"2709943\",\r\n            \"name\": \"Erica's Test 7.21\"\r\n        },\r\n        {\r\n            \"id\": \"2223286\",\r\n            \"name\": \"Erin Call Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"1462404\",\r\n            \"name\": \"Katie's Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2699483\",\r\n            \"name\": \"King Maker Sequence\"\r\n        },\r\n        {\r\n            \"id\": \"2412262\",\r\n            \"name\": \"KK Custom FIeld's Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2675850\",\r\n            \"name\": \"Koncert new\"\r\n        },\r\n        {\r\n            \"id\": \"2169587\",\r\n            \"name\": \"Krishna's Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2663290\",\r\n            \"name\": \"Mani Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2669739\",\r\n            \"name\": \"Manivannan cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2675215\",\r\n            \"name\": \"MG Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2675724\",\r\n            \"name\": \"MG new cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2671137\",\r\n            \"name\": \"MP cadence\"\r\n        },\r\n        {\r\n            \"id\": \"1560694\",\r\n            \"name\": \"MY CADENCE\"\r\n        },\r\n        {\r\n            \"id\": \"850804\",\r\n            \"name\": \"na20loft\"\r\n        },\r\n        {\r\n            \"id\": \"837958\",\r\n            \"name\": \"Na20test - 20\"\r\n        },\r\n        {\r\n            \"id\": \"1107909\",\r\n            \"name\": \"new Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2679406\",\r\n            \"name\": \"New list Manivannan\"\r\n        },\r\n        {\r\n            \"id\": \"810354\",\r\n            \"name\": \"newsloft\"\r\n        },\r\n        {\r\n            \"id\": \"2677710\",\r\n            \"name\": \"Only one Step cadence\"\r\n        },\r\n        {\r\n            \"id\": \"2136068\",\r\n            \"name\": \"QA Team Demo\"\r\n        },\r\n        {\r\n            \"id\": \"807481\",\r\n            \"name\": \"SalesLoft Cadence\"\r\n        },\r\n        {\r\n            \"id\": \"950433\",\r\n            \"name\": \"sl-mar13\"\r\n        },\r\n        {\r\n            \"id\": \"1103820\",\r\n            \"name\": \"Test one\"\r\n        },\r\n        {\r\n            \"id\": \"826669\",\r\n            \"name\": \"testloft\"\r\n        },\r\n        {\r\n            \"id\": \"1535500\",\r\n            \"name\": \"USA-Bank-Digital/CDO/CMO Buyer\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"cfdbeec1-2dc1-4909-b4ed-5a4d5ab498ff"},{"name":"Steps","id":"8b76fdf5-60ec-44c0-8219-50facf40b6d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/steps/:crmType/:cadenceId","description":"<p>Get all the steps of the cadence from Salesloft</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","steps",":crmType",":cadenceId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"345ea31b-3c1d-4157-9898-d076435cdfcc","type":"any","value":"crm type","key":"crmType"},{"id":"28ccf878-daa0-44de-b1a0-afe47b2b21ad","type":"any","value":"cadence/sequence Id","key":"cadenceId"}]}},"response":[{"id":"4335ffee-18df-40e8-90bf-c55f8432a5c4","name":"Steps","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/steps/salesloft/807771"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 5242411,\r\n            \"displayName\": \"Step 1 - Call\",\r\n            \"stepNo\": \"1\"\r\n        },\r\n        {\r\n            \"id\": 5242420,\r\n            \"displayName\": \"Step 3 - Call\",\r\n            \"stepNo\": \"3\"\r\n        },\r\n        {\r\n            \"id\": 5242434,\r\n            \"displayName\": \"Step 4 - Call\",\r\n            \"stepNo\": \"4\"\r\n        },\r\n        {\r\n            \"id\": 5242463,\r\n            \"displayName\": \"Step 6 - Call\",\r\n            \"stepNo\": \"6\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"8b76fdf5-60ec-44c0-8219-50facf40b6d9"},{"name":"Import","id":"6c25a8db-fb9e-484c-aec8-0059206135d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 10937\r\n    },\r\n    \"dataList\": {\r\n        \"listName\": \"contact report(2)\",\r\n        \"listCrmReportName\":\"contact report\",\r\n        \"listCrmReportUrl\":\"00O8V000008t148UAA\",\r\n        \"callInstruction\": \"\",\r\n        \"callerIdMode\": \"UNBLOCK\",\r\n        \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"International\",\r\n        \"isLeadPoolList\": false,\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/crm","description":"<p>Create DataList using Import from Salesloft</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user  <br /><code>Object</code></td>\n<td>Owner of the dataList  <br /></td>\n</tr>\n<tr>\n<td>dataList  <br /><code>Object</code></td>\n<td>Data List Information</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","crm"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c64c6cf5-4a34-465a-b68c-7869cfd90288","name":"Salesforce","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 10937\r\n    },\r\n    \"dataList\": {\r\n        \"listName\": \"contact report(3)\",\r\n        \"listCrmName\":\"salesforce\",\r\n        \"listCrmReportName\":\"contact report\",\r\n        \"listCrmReportUrl\":\"00O8V000008t148UAA\",\r\n        \"callInstruction\": \"\",\r\n        \"callerIdMode\": \"UNBLOCK\",\r\n        \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"International\",\r\n        \"isLeadPoolList\": false,\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/crm"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 11780,\r\n            \"listName\": \"contact report(3)\",\r\n            \"listType\": \"Dynamic\",\r\n            \"listCrmName\": \"Salesforce\",\r\n            \"listCrmReportName\": \"contact report\",\r\n            \"listCrmReportUrl\": \"00O8V000008t148UAA\",\r\n            \"activeFlag\": \"Y\",\r\n            \"badData\": 0,\r\n            \"isLeadPoolList\": false,\r\n            \"dialingMetaData\": {\r\n                \"allow_da_play_vm\": false,\r\n                \"primary_sort_by_direction\": \"ASC\",\r\n                \"secondary_sort_by_direction\": \"\",\r\n                \"tertiary_sort_by_direction\": \"\",\r\n                \"quartnary_sort_by_direction\": \"\",\r\n                \"primary_sort_by_column\": \"contact_name\",\r\n                \"secondary_sort_by_column\": \"\",\r\n                \"tertiary_sort_by_column\": \"\",\r\n                \"quartnary_sort_by_column\": \"\",\r\n                \"voice_message_name\": \"\",\r\n                \"dialer_phone_columns\": [\r\n                    \"phone\"\r\n                ],\r\n                \"caller_id_list\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n                \"timezone\": \"International\",\r\n                \"dialing_instructions\": \"\",\r\n                \"country_code_prefixed\": \"false\",\r\n                \"caller_id_mode\": \"UNBLOCK\",\r\n                \"is_mandatory\": false,\r\n                \"is_recommended\": false,\r\n                \"assigned_teams\": [],\r\n                \"assigned_users\": [],\r\n                \"primary_sort_by_record_type\": \"\"\r\n            },\r\n            \"isMandatory\": false,\r\n            \"recommended\": false,\r\n            \"callerIdMode\": \"UNBLOCK\",\r\n            \"name\": \"Rajesh Kumar A\",\r\n            \"company\": \"Rajesh Kumar  SF org\",\r\n            \"sortBy\": \"ASC\",\r\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\r\n            \"sortByColumnName\": \"contact_name\",\r\n            \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US]\",\r\n            \"timezone\": \"International\",\r\n            \"createdDate\": \"2022-11-02T07:26:32Z\",\r\n            \"associations\": {\r\n                \"user\": {\r\n                    \"id\": 10937\r\n                }\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"6c25a8db-fb9e-484c-aec8-0059206135d6"}],"id":"6c186cda-5004-4a12-8b8c-90e861adf846","description":"<p>Get cadence, steps information from salesloft and create/import list</p>\n","_postman_id":"6c186cda-5004-4a12-8b8c-90e861adf846","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"CSV","id":"aa93b054-6399-42d8-b7b2-f752b5ad18ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 7660\r\n    },\r\n    \"fileId\": \"U5ddcX4agNtBx6NaGZSrX9ieO87Tmp6c-2022-11-15-1668501988454\",\r\n    \"userListFieldMappings\": [\r\n        {\r\n            \"csvFieldName\": \"Account Name\",\r\n            \"fields\": {\r\n                \"id\": 35147\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Email\",\r\n            \"fields\": {\r\n                \"id\": 35124\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"First Name\",\r\n            \"fields\": {\r\n                \"id\": 35139\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Phone\",\r\n            \"fields\": {\r\n                \"id\": 35134\r\n            }\r\n        }\r\n    ],\r\n    \"dataList\": {\r\n        \"listName\": \"csvList.csv\",\r\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"EST,CST,MST,PST\",\r\n        \"isLeadPoolList\": false,\r\n        \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\r\n        \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/csv","description":"<p>Create DataList using Import CSV file</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user <br /> <code>Object</code></td>\n<td>Owner of the dataList</td>\n</tr>\n<tr>\n<td>fileId <br /> <code>String</code></td>\n<td>Uploaded Files Id</td>\n</tr>\n<tr>\n<td>csvFieldName <br /> <code>String</code></td>\n<td>csvHeader Field Name</td>\n</tr>\n<tr>\n<td>fields <br /> <code>Object</code></td>\n<td>Field Id</td>\n</tr>\n<tr>\n<td>dataList <br /> <code>Object</code></td>\n<td>Data List Information</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","csv"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"2ae22b01-16c8-4df8-a70b-51b2bf13de32","name":"CSV","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 7660\r\n    },\r\n    \"fileId\": \"U5ddcX4agNtBx6NaGZSrX9ieO87Tmp6c-2022-11-15-1668501988454\",\r\n    \"userListFieldMappings\": [\r\n        {\r\n            \"csvFieldName\": \"Account Name\",\r\n            \"fields\": {\r\n                \"id\": 35147\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Email\",\r\n            \"fields\": {\r\n                \"id\": 35124\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"First Name\",\r\n            \"fields\": {\r\n                \"id\": 35139\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Phone\",\r\n            \"fields\": {\r\n                \"id\": 35134\r\n            }\r\n        }\r\n    ],\r\n    \"dataList\": {\r\n        \"listName\": \"csvList.csv\",\r\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"EST,CST,MST,PST\",\r\n        \"isLeadPoolList\": false,\r\n        \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\r\n        \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 12800,\n      \"listName\": \"csvList.csv\",\n      \"listType\": \"Static\",\n      \"listCrmName\": \"File\",\n      \"listCrmReportName\": \"junit_test_1668501988255.csv\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"Y\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": null,\n      \"totalConnects\": null,\n      \"totalFollowUps\": null,\n      \"totalRecords\": null,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": null,\n      \"isLeadPoolList\": false,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": null,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": null,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:47:06Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": null,\n      \"totalAverageListAttempts\": null,\n      \"salesloftImportOnlyUserProspects\": null,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": null,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    }\n  ]\n}"},{"id":"1e1b13b3-0f15-4c24-995a-92575c1a90ea","name":"CSV Lead Pool List - Users","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 7660\r\n    },\r\n    \"fileId\": \"VfozdYYKSpDZ74ZkGX5z7eJq3H9wbwEd-2022-11-15-1668502100402\",\r\n    \"userListFieldMappings\": [\r\n        {\r\n            \"csvFieldName\": \"Account Name\",\r\n            \"fields\": {\r\n                \"id\": 35147\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Email\",\r\n            \"fields\": {\r\n                \"id\": 35124\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"First Name\",\r\n            \"fields\": {\r\n                \"id\": 35139\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Phone\",\r\n            \"fields\": {\r\n                \"id\": 35134\r\n            }\r\n        }\r\n    ],\r\n    \"dataList\": {\r\n        \"listName\": \"userList.csv\",\r\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"EST,CST,MST,PST\",\r\n        \"isLeadPoolList\": true,\r\n        \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\r\n        \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false,\r\n        \"assignedUsers\": [\r\n            7424,\r\n            7432,\r\n            7660,\r\n            7661,\r\n            7662,\r\n            7844,\r\n            7910,\r\n            7951,\r\n            8276,\r\n            9479\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 12801,\n      \"listName\": \"userList.csv\",\n      \"listType\": \"Static\",\n      \"listCrmName\": \"File\",\n      \"listCrmReportName\": \"junit_test_1668502100157.csv\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"Y\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": null,\n      \"totalConnects\": null,\n      \"totalFollowUps\": null,\n      \"totalRecords\": null,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": null,\n      \"isLeadPoolList\": true,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [\n          \"7424\",\n          \"7432\",\n          \"7660\",\n          \"7661\",\n          \"7662\",\n          \"7844\",\n          \"7910\",\n          \"7951\",\n          \"8276\",\n          \"9479\"\n        ],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": null,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": null,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": [\n        7424,\n        7432,\n        7660,\n        7661,\n        7662,\n        7844,\n        7910,\n        7951,\n        8276,\n        9479\n      ],\n      \"createdDate\": \"2022-11-15T08:48:51Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": null,\n      \"totalAverageListAttempts\": null,\n      \"salesloftImportOnlyUserProspects\": null,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": null,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    }\n  ]\n}"},{"id":"75863dbf-3739-41f3-a913-f8b1a934829e","name":"CSV Lead Pool List - Teams","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 7660\r\n    },\r\n    \"fileId\": \"KgqkwUEEmIRK5SdeGv1Cb4gxQxwG99JD-2022-11-15-1668502170353\",\r\n    \"userListFieldMappings\": [\r\n        {\r\n            \"csvFieldName\": \"Account Name\",\r\n            \"fields\": {\r\n                \"id\": 35147\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Email\",\r\n            \"fields\": {\r\n                \"id\": 35124\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"First Name\",\r\n            \"fields\": {\r\n                \"id\": 35139\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Phone\",\r\n            \"fields\": {\r\n                \"id\": 35134\r\n            }\r\n        }\r\n    ],\r\n    \"dataList\": {\r\n        \"listName\": \"teamList.csv\",\r\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"EST,CST,MST,PST\",\r\n        \"isLeadPoolList\": true,\r\n        \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\r\n        \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false,\r\n        \"groupName\": [\r\n            \"Team b\"\r\n        ],\r\n        \"assignedTeams\": [\r\n            7424\r\n        ],\r\n        \"assignedGroupTeams\": [\r\n            \"7424##SPL##Team b\"\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 12802,\n      \"listName\": \"teamList.csv\",\n      \"listType\": \"Static\",\n      \"listCrmName\": \"File\",\n      \"listCrmReportName\": \"junit_test_1668502170166.csv\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"Y\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": null,\n      \"totalConnects\": null,\n      \"totalFollowUps\": null,\n      \"totalRecords\": null,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": null,\n      \"isLeadPoolList\": true,\n      \"assignedTeams\": [\n        7424\n      ],\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [\n          \"7424##SPL##Team b\"\n        ],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": null,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": null,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": [\n        \"Team b\"\n      ],\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:49:53Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": null,\n      \"totalAverageListAttempts\": null,\n      \"salesloftImportOnlyUserProspects\": null,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": null,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    }\n  ]\n}"}],"_postman_id":"aa93b054-6399-42d8-b7b2-f752b5ad18ac"},{"name":"Cadence","id":"bd47a196-c8db-4244-9216-e2aa191fa05a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 7660\r\n    },\r\n    \"type\": \"cadence\",\r\n    \"dataList\": {\r\n        \"listName\": \"Weekly Cadence\",\r\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"EST,CST,MST,PST\",\r\n        \"isLeadPoolList\": false,\r\n        \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\r\n        \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false,\r\n        \"cadence\": {\r\n            \"id\": 5280\r\n        },\r\n        \"cadenceStepNo\": [\r\n            1,\r\n            2,\r\n            3,\r\n            4\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/cadence","description":"<p>Create DataList using Import Cadence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user  <br /><code>Object</code></td>\n<td>Owner of the dataList  <br /></td>\n</tr>\n<tr>\n<td>type  <br /><code>String</code></td>\n<td>Allowed type are <code>cadence, pendingcalls and followupcalls</code></td>\n</tr>\n<tr>\n<td>dataList  <br /><code>Object</code></td>\n<td>Data List Information</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","cadence"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"b62f44b3-a2d5-4070-ab00-31931e5723b1","name":"Cadence","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 7660\r\n    },\r\n    \"type\": \"cadence\",\r\n    \"dataList\": {\r\n        \"listName\": \"weeklyCadence\",\r\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"EST,CST,MST,PST\",\r\n        \"isLeadPoolList\": false,\r\n        \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\r\n        \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false,\r\n        \"cadence\": {\r\n            \"id\": 5280\r\n        },\r\n        \"cadenceStepNo\": [\r\n            1,\r\n            4,\r\n            2,\r\n            3\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/cadence"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 12803,\n      \"listName\": \"weeklyCadence\",\n      \"listType\": \"Cadence\",\n      \"listCrmName\": \"Cadence\",\n      \"listCrmReportName\": \"weeklyCadence\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"Y\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": null,\n      \"totalConnects\": null,\n      \"totalFollowUps\": null,\n      \"totalRecords\": null,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": null,\n      \"isLeadPoolList\": false,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": null,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": null,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:54:14Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": null,\n      \"totalAverageListAttempts\": null,\n      \"salesloftImportOnlyUserProspects\": null,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": null,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": [\n        1,\n        4,\n        2,\n        3\n      ],\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        },\n        \"cadence\": {\n          \"id\": 5280\n        }\n      }\n    }\n  ]\n}"},{"id":"97c55c37-1b23-4fc5-9664-2367a7f0a478","name":"Pending Calls","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 7660\r\n    },\r\n    \"type\": \"pendingcalls\",\r\n    \"dataList\": {\r\n        \"listName\": \"Cadence - Pending Calls_MKYYv\",\r\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"EST,CST,MST,PST\",\r\n        \"isLeadPoolList\": false,\r\n        \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\r\n        \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/cadence"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 12804,\n      \"listName\": \"Cadence - Pending Calls_MKYYv\",\n      \"listType\": \"Cadence\",\n      \"listCrmName\": \"Cadence\",\n      \"listCrmReportName\": \"Cadence - Pending Calls_MKYYv\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"Y\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": null,\n      \"totalConnects\": null,\n      \"totalFollowUps\": null,\n      \"totalRecords\": null,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": null,\n      \"isLeadPoolList\": false,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": null,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": null,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:55:12Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": null,\n      \"totalAverageListAttempts\": null,\n      \"salesloftImportOnlyUserProspects\": null,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": null,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    }\n  ]\n}"},{"id":"230a2358-5666-4ba5-97c1-8446a51584f3","name":"FollowUp Calls","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 7660\r\n    },\r\n    \"type\": \"followupcall\",\r\n    \"dataList\": {\r\n        \"listName\": \"Cadence - FollowUp Calls_zW9El\",\r\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\r\n        \"callerIdMode\": \"AB-CID\",\r\n        \"callerIds\": \"\",\r\n        \"sortByColumnName\": \"contact_name\",\r\n        \"sortBy\": \"ASC\",\r\n        \"timezone\": \"EST,CST,MST,PST\",\r\n        \"isLeadPoolList\": false,\r\n        \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\r\n        \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\r\n        \"phoneColumnsToDial\": \"phone\",\r\n        \"countryCodePrefixed\": false\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/cadence"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 12805,\n      \"listName\": \"Cadence - FollowUp Calls_zW9El\",\n      \"listType\": \"Cadence FU\",\n      \"listCrmName\": \"Cadence\",\n      \"listCrmReportName\": \"Cadence - FollowUp Calls_zW9El\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"Y\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": null,\n      \"totalConnects\": null,\n      \"totalFollowUps\": null,\n      \"totalRecords\": null,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": null,\n      \"isLeadPoolList\": false,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": null,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": null,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:56:34Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": null,\n      \"totalAverageListAttempts\": null,\n      \"salesloftImportOnlyUserProspects\": null,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": null,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    }\n  ]\n}"}],"_postman_id":"bd47a196-c8db-4244-9216-e2aa191fa05a"},{"name":"LPS Import","id":"22e16fe6-1306-48fd-b96b-c43c15f4106a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}datalist/lpsImport/:id","description":"<p>To import the data from CRM to Koncert for Lead Pool List.</p>\n<p>This will use Jobqueue by default and use the jobQueue Id to get the status.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["lpsImport",":id"],"host":["{{koncert_dialers_api}}datalist"],"query":[],"variable":[{"type":"any","value":"List Id","key":"id"}]}},"response":[{"id":"a46c0a8c-7ff5-4d57-97ad-e45d4a4c6205","name":"LPS Import","originalRequest":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}datalist/lpsImport/23367"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 9157,\n            \"requestId\": \"9f47fc0c-14da-350d-8af8-1b4fbdf279c2\",\n            \"type\": \"import_lps\",\n            \"status\": \"in_progress\",\n            \"startDateTime\": \"2024-05-31T11:32:16Z\",\n            \"endDateTime\": null,\n            \"description\": \"INITIATE IMPORT LPS\",\n            \"submitted\": null,\n            \"processed\": null,\n            \"source\": null,\n            \"dataListId\": [\n                23367\n            ],\n            \"response\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 14525\n                    }\n                ],\n                \"dataList\": [\n                    {\n                        \"id\": 23367\n                    }\n                ]\n            }\n        }\n    ],\n    \"requestId\": \"9f47fc0c-14da-350d-8af8-1b4fbdf279c2\"\n}"}],"_postman_id":"22e16fe6-1306-48fd-b96b-c43c15f4106a"}],"id":"dede2e52-917d-436f-b87a-3237ac1f2409","description":"<p>Create a List using import data from CSV, Cadence and CRM</p>\n","_postman_id":"dede2e52-917d-436f-b87a-3237ac1f2409","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Actions","item":[{"name":"Archive & UnArchive","id":"6be95dbb-9d5b-4726-b2a8-fd71159b5bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist/archive?id=:id&archive=:archive","description":"<p>Add or Remove archive</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","archive"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>DataList Ids</p>\n","type":"text/plain"},"key":"id","value":":id"},{"description":{"content":"<p>true or false</p>\n","type":"text/plain"},"key":"archive","value":":archive"}],"variable":[]}},"response":[{"id":"b4cf8083-dc71-4aa4-bf92-0a3fe771b0f0","name":"Archive","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/archive?id=12797,12799,12800&archive=true","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","archive"],"query":[{"key":"id","value":"12797,12799,12800"},{"key":"archive","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 12797,\n      \"listName\": \"list_junit_cadence_API CLIENT USER - 1 - CADENCE_5tm0N\",\n      \"listType\": \"Cadence\",\n      \"listCrmName\": \"Cadence\",\n      \"listCrmReportName\": \"list_junit_cadence_API CLIENT USER - 1 - CADENCE_5tm0N\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"N\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": 0,\n      \"totalConnects\": 0,\n      \"totalFollowUps\": 0,\n      \"totalRecords\": 0,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": false,\n      \"isLeadPoolList\": false,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": 0,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": false,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:46:24Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": 0,\n      \"totalAverageListAttempts\": 0,\n      \"salesloftImportOnlyUserProspects\": false,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": 0,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": [\n        1,\n        4,\n        2,\n        3\n      ],\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        },\n        \"cadence\": {\n          \"id\": 5280\n        }\n      }\n    },\n    {\n      \"id\": 12798,\n      \"listName\": \"list_junit_Cadence - Pending Calls_28nHK\",\n      \"listType\": \"Cadence\",\n      \"listCrmName\": \"Cadence\",\n      \"listCrmReportName\": \"list_junit_Cadence - Pending Calls_28nHK\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"N\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": 0,\n      \"totalConnects\": 0,\n      \"totalFollowUps\": 0,\n      \"totalRecords\": 0,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": false,\n      \"isLeadPoolList\": false,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": 0,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": false,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:46:25Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": 0,\n      \"totalAverageListAttempts\": 0,\n      \"salesloftImportOnlyUserProspects\": false,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": 0,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    },\n    {\n      \"id\": 12799,\n      \"listName\": \"list_junit_Cadence - FollowUp Calls_Btnue\",\n      \"listType\": \"Cadence FU\",\n      \"listCrmName\": \"Cadence\",\n      \"listCrmReportName\": \"list_junit_Cadence - FollowUp Calls_Btnue\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"N\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": 0,\n      \"totalConnects\": 0,\n      \"totalFollowUps\": 0,\n      \"totalRecords\": 0,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": false,\n      \"isLeadPoolList\": false,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": 0,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": false,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:46:26Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": 0,\n      \"totalAverageListAttempts\": 0,\n      \"salesloftImportOnlyUserProspects\": false,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": 0,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    },\n    {\n      \"id\": 12800,\n      \"listName\": \"list_junit_tLE0O.csv\",\n      \"listType\": \"Static\",\n      \"listCrmName\": \"File\",\n      \"listCrmReportName\": \"junit_test_1668501988255.csv\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"N\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": 0,\n      \"totalConnects\": 0,\n      \"totalFollowUps\": 0,\n      \"totalRecords\": 0,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": false,\n      \"isLeadPoolList\": false,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": 0,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": false,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": null,\n      \"createdDate\": \"2022-11-15T08:47:06Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": 0,\n      \"totalAverageListAttempts\": 0,\n      \"salesloftImportOnlyUserProspects\": false,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": 0,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    }\n  ]\n}"},{"id":"fea64393-fc66-4d61-ba50-841bbc31af59","name":"UnArchive","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/archive?id=12654&archive=false","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","archive"],"query":[{"key":"id","value":"12654"},{"key":"archive","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"response\": \"success\",\n  \"data\": [\n    {\n      \"id\": 12654,\n      \"listName\": \"list_junit_Gut2u.csv\",\n      \"listType\": \"Static\",\n      \"listCrmName\": \"File\",\n      \"listCrmReportName\": \"junit_test_1668173196445.csv\",\n      \"listCrmReportUrl\": \"none\",\n      \"activeFlag\": \"Y\",\n      \"recordType\": null,\n      \"lastAttemptedDate\": null,\n      \"lastConnectedDate\": null,\n      \"totalDials\": 0,\n      \"totalConnects\": 0,\n      \"totalFollowUps\": 0,\n      \"totalRecords\": 0,\n      \"callScript\": null,\n      \"outreachStepIds\": null,\n      \"badData\": 0,\n      \"thirdPartyCadenseId\": null,\n      \"thirdPartyCrmReportType\": null,\n      \"thirdpartyIncludeTodayTasks\": false,\n      \"isLeadPoolList\": true,\n      \"assignedTeams\": null,\n      \"tdsServerUrl\": null,\n      \"phoneServer\": null,\n      \"dialingMetaData\": {\n        \"timezone\": \"EST,CST,MST,PST\",\n        \"isMandatory\": false,\n        \"assignedUsers\": [\n          \"7424\",\n          \"7432\",\n          \"7660\"\n        ],\n        \"assignedTeams\": [],\n        \"callerIds\": \"\",\n        \"callerIdMode\": \"AB-CID\",\n        \"isRecommended\": false,\n        \"allowDaPlayVm\": false,\n        \"voiceMessage\": \"\",\n        \"phoneColumnsToDial\": [\n          \"phone\"\n        ],\n        \"callInstruction\": \"Good Morning\\nhave a nice day\",\n        \"sortByColumnName\": \"contact_name\",\n        \"sortBy\": \"ASC\",\n        \"secondarySortByDirection\": \"\",\n        \"tertiarySortByDirection\": \"\",\n        \"quartnarySortByDirection\": \"\",\n        \"secondarySortByColumn\": \"\",\n        \"tertiarySortByColumn\": \"\",\n        \"quartnarySortByColumn\": \"\",\n        \"countryCodePrefixed\": false,\n        \"primarySortByRecordType\": \"\",\n        \"secondarySortByRecordType\": null,\n        \"quartnarySortByRecordType\": null,\n        \"tertiarySortByRecordType\": null\n      },\n      \"joinedTalkerCount\": 0,\n      \"dsLpsSessionKey\": null,\n      \"prsLpsSessionKey\": null,\n      \"isLpListImported\": false,\n      \"lpsLastRowDialed\": null,\n      \"isMandatory\": false,\n      \"recommended\": false,\n      \"category\": null,\n      \"noOfAttemptsPerDay\": null,\n      \"noOfAttemptsPerRecord\": null,\n      \"timeGapBetweenAttempt\": null,\n      \"callerIdMode\": \"AB-CID\",\n      \"name\": \"API Client Manager 1\",\n      \"company\": \"API Client\",\n      \"callInstruction\": \"Good Morning\\nhave a nice day\",\n      \"voiceMessage\": null,\n      \"initialGreeting\": null,\n      \"sortBy\": \"ASC\",\n      \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n      \"sortByColumnName\": \"contact_name\",\n      \"callerIds\": \"\",\n      \"groupName\": null,\n      \"timezone\": \"EST,CST,MST,PST\",\n      \"assignedUsers\": [\n        7424,\n        7432,\n        7660\n      ],\n      \"createdDate\": \"2022-11-11T13:26:37Z\",\n      \"updatedDate\": null,\n      \"lastModDivisionValue\": null,\n      \"totalAverageAttempts\": 0,\n      \"totalAverageListAttempts\": 0,\n      \"salesloftImportOnlyUserProspects\": false,\n      \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n      \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n      \"totalUniqueDials\": 0,\n      \"usersMadeThisAsFavorite\": null,\n      \"coverage\": null,\n      \"connectRate\": null,\n      \"favorite\": null,\n      \"dialsCount\": null,\n      \"averageDialAttempts\": null,\n      \"cadenceStepNo\": null,\n      \"associations\": {\n        \"user\": {\n          \"id\": 7660\n        }\n      }\n    }\n  ]\n}"}],"_postman_id":"6be95dbb-9d5b-4726-b2a8-fd71159b5bb8"},{"name":"Delete","id":"79438604-656f-4809-86d0-b49e3519ea78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/datalist?id=9977","description":"<p>Delete the list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"id","value":"9977"}],"variable":[]}},"response":[{"id":"3e4413fd-3eeb-49c4-afd5-15abf042fe5a","name":"Delete","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://{{koncert_dialers_api}}/datalist?id=9977","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist"],"query":[{"key":"id","value":"9977"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"79438604-656f-4809-86d0-b49e3519ea78"},{"name":"Favorite","id":"1c3a7a07-4a67-4cde-831a-46dca86f218b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/datalist/favorite?id=:id&favorite=:favorite","description":"<p>Add or Remove favorite</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","favorite"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Data List Id</p>\n","type":"text/plain"},"key":"id","value":":id"},{"description":{"content":"<p>true or false</p>\n","type":"text/plain"},"key":"favorite","value":":favorite"}],"variable":[]}},"response":[{"id":"5f21bec0-df28-4a9b-a247-16fa3960dafa","name":"Favorite","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/favorite?id=9977&favorite=true","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","favorite"],"query":[{"key":"id","value":"9977"},{"key":"favorite","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 9977,\n            \"listName\": \"vickyvignesh(3).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"vickyvignesh.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"N\",\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"badData\": 0,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"dialingMetaData\": {\n                \"allow_da_play_vm\": false,\n                \"primary_sort_by_direction\": \"ASC\",\n                \"secondary_sort_by_direction\": \"\",\n                \"tertiary_sort_by_direction\": \"\",\n                \"quartnary_sort_by_direction\": \"\",\n                \"primary_sort_by_column\": \"contact_name\",\n                \"secondary_sort_by_column\": \"\",\n                \"tertiary_sort_by_column\": \"\",\n                \"quartnary_sort_by_column\": \"\",\n                \"voice_message_name\": \"\",\n                \"dialer_phone_columns\": [\n                    \"phone\",\n                    \"custom_phone_3\"\n                ],\n                \"caller_id_list\": \"\",\n                \"timezone\": \"EST,CST\",\n                \"dialing_instructions\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"country_code_prefixed\": false,\n                \"caller_id_mode\": \"AB-CID\",\n                \"is_mandatory\": false,\n                \"is_recommended\": false,\n                \"assigned_teams\": [],\n                \"assigned_users\": \"\",\n                \"primary_sort_by_record_type\": \"\"\n            },\n            \"joinedTalkerCount\": 0,\n            \"isLpListImported\": false,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_3\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"timezone\": \"EST,CST\",\n            \"createdDate\": \"2022-08-18T15:50:54\",\n            \"updatedDate\": \"2022-08-18T15:50:54\",\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": [\n                7424\n            ],\n            \"favorite\": true,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"1c3a7a07-4a67-4cde-831a-46dca86f218b"},{"name":"Add To Cadence","id":"8fc819a3-a61a-46f4-b4de-95406d48e3f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"dataList\": [\r\n        {\r\n            \"id\": 9921\r\n        }\r\n    ],\r\n    \"cadence\": {\r\n        \"id\": 10334\r\n    },\r\n    \"tag\": {\r\n        \"id\": 4870\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist/addToCadence","description":"<p>To add the datalist to Cadence  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dataList  <br /><code>Array of Object</code></td>\n<td>DataList Id and OwnerId</td>\n</tr>\n<tr>\n<td>cadence  <br /><code>Object</code></td>\n<td>Cadence Id which the records needs to mapped</td>\n</tr>\n<tr>\n<td>tag  <br /><code>Object</code></td>\n<td>Tag Id which the records needs to mapped</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","addToCadence"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"1cf603d3-5ecf-46f0-bfc8-ef44c2ae8ffe","name":"Add To Cadence","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"dataList\": [\r\n        {\r\n            \"id\": 9921,\r\n            \"user\": {\r\n                \"id\": 10937\r\n            }\r\n        }\r\n    ],\r\n    \"cadence\": {\r\n        \"id\": 10334\r\n    },\r\n    \"tag\": {\r\n        \"id\": 4870\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist/addToCadence"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"reportName\": \"key 6 records.csv\",\n            \"recordsAvailable\": 6,\n            \"recordsImported\": 6,\n            \"duplicateCount\": 0,\n            \"reportError\": \"\",\n            \"missingColumnDetails\": {},\n            \"additionalFilterDetails\": {},\n            \"prospectsAssigned\": 6,\n            \"cadenceStatus\": null,\n            \"cadenceError\": [],\n            \"parkingLotCount\": 0,\n            \"ownedProspectsCount\": 0,\n            \"errorProspectCount\": 0,\n            \"columnStatuses\": [\n                {\n                    \"columnName\": \"Company\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"Contact\",\n                    \"columnType\": \"Required\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"Title\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"City\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"State\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                },\n                {\n                    \"columnName\": \"phone\",\n                    \"columnType\": \"Required\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"Y\"\n                },\n                {\n                    \"columnName\": \"Email\",\n                    \"columnType\": \"Recommended\",\n                    \"importStatus\": \"Yes\",\n                    \"dialerEnabled\": \"N\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"8fc819a3-a61a-46f4-b4de-95406d48e3f9"},{"name":"Export","id":"0d4364d6-6532-4fec-ad32-06ffaa21d5cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/sign/datalist/export","description":"<p>To export the datalist records which are already uploaded to session</p>\n<p>Get the signed key using this API and access the public url to download the report in ZIP format.</p>\n<p>Output Format : Inputstream</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["sign","datalist","export"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"abd93161-f70b-4af9-a471-b2fa830a3fd6","name":"Export","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": 10727,\r\n        \"user\": {\r\n            \"id\": 7424\r\n        }\r\n    },\r\n    {\r\n        \"id\": 10761,\r\n        \"user\": {\r\n            \"id\": 7424\r\n        }\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/datalist/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"key\": \"8E6D7DEA76985070EA9CB3D7BA7ABBE967D0209FB211A59B3A25C41DB84BD98C71CFF48E4EBDAD8022CBE11BCD9974407E31B5EA05C10AAC\",\n            \"na\": \"4408FD89F4A9D7B7A1525F40B7763A4A01F053461C98D170C8A135703399E894\"\n        }\n    ]\n}"},{"id":"a95a65b6-2147-499e-bad8-a8a093a69512","name":"Download","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": 10727,\r\n        \"user\": {\r\n            \"id\": 7424\r\n        }\r\n    },\r\n    {\r\n        \"id\": 10761,\r\n        \"user\": {\r\n            \"id\": 7424\r\n        }\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/public/datalist/export/8E6D7DEA76985070EA9CB3D7BA7ABBE967D0209FB211A59B3A25C41DB84BD98C71CFF48E4EBDAD8022CBE11BCD9974407E31B5EA05C10AAC"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0d4364d6-6532-4fec-ad32-06ffaa21d5cb"},{"name":"Transfer","id":"ec6b46f1-c542-490c-85be-9720f5627eb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"fromUser\": {\r\n        \"id\": 7424\r\n    },\r\n    \"toUser\": {\r\n        \"id\": 7910\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist/transfer?filter[id]=:[12748,12747]","description":"<p>To transfer the list to any user in the org.</p>\n<p>It is available for Admin/Manager user.</p>\n<p>It is available only for csv and cadence list</p>\n<p>Lead Pool List should be transferred between managers of the same team</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","transfer"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[id]","value":":[12748,12747]"}],"variable":[]}},"response":[{"id":"20f34df5-cdaf-4290-82f1-ee26ed9a399b","name":"Transfer","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"fromUser\": {\r\n        \"id\": 7424\r\n    },\r\n    \"toUser\": {\r\n        \"id\": 7910\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/datalist/transfer?filter[id]=:[12748,12747]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","transfer"],"query":[{"key":"filter[id]","value":":[12748,12747]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 12747,\n            \"listName\": \"LPS.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": [\n                7910\n            ],\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [\n                    \"7910##SPL##API Test Team - edited\"\n                ],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": [\n                \"API Test Team - edited\"\n            ],\n            \"timezone\": \"EST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-11-11T13:52:28Z\",\n            \"updatedDate\": \"2022-11-11T13:52:28Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7910\n                }\n            }\n        },\n        {\n            \"id\": 12748,\n            \"listName\": \"Cadence - Pending Calls\",\n            \"listType\": \"Cadence\",\n            \"listCrmName\": \"Cadence\",\n            \"listCrmReportName\": \"Cadence - Pending Calls\",\n            \"listCrmReportUrl\": null,\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"EST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-11-11T13:52:48Z\",\n            \"updatedDate\": \"2022-11-11T13:52:48Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7910\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"ec6b46f1-c542-490c-85be-9720f5627eb5"}],"id":"87c15181-11cf-488c-88d1-cfd6a60c7a5a","description":"<p>Actions like Archive, Delete, Favorite, AddToCadence, Transfer and Export can be made for the list</p>\n","_postman_id":"87c15181-11cf-488c-88d1-cfd6a60c7a5a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Begin Upload","item":[{"name":"Upload","id":"85e123cf-97cf-4b41-8945-e5a2f9ab4898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": 10254,\r\n        \"priorityOrder\":\"Second\"\r\n    },\r\n    {\r\n        \"id\": 7548,\r\n        \"priorityOrder\":\"First\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist/upload","description":"<p>To upload the list to my session</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>List Id</td>\n</tr>\n<tr>\n<td>priorityOrder  <br /><code>Enum</code></td>\n<td>If multiple list is uploaded, Based on the priority, list records will be shown in my session. Allowed values are <code>First, Second, Third, Fourth</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","upload"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7d6391a9-544c-4a0c-acd4-ed458356af9e","name":"Upload","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": 10254,\r\n        \"priorityOrder\":\"Second\"\r\n    },\r\n    {\r\n        \"id\": 7548,\r\n        \"priorityOrder\":\"First\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        [\r\n            {\r\n                \"reportName\": \"vickyvignesh.csv\",\r\n                \"recordsAvailable\": 6,\r\n                \"recordsImported\": 0,\r\n                \"duplicateCount\": 0,\r\n                \"reportError\": \"\",\r\n                \"missingColumnDetails\": {\r\n                    \"email_id_count\": 6\r\n                },\r\n                \"additionalFilterDetails\": {},\r\n                \"prospectsAssigned\": 0,\r\n                \"cadenceStatus\": null,\r\n                \"cadenceError\": [],\r\n                \"parkingLotCount\": 0,\r\n                \"ownedProspectsCount\": 0,\r\n                \"errorProspectCount\": 0,\r\n                \"columnStatuses\": [\r\n                    {\r\n                        \"columnName\": \"Company\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"Contact\",\r\n                        \"columnType\": \"Required\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"Title\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"City\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"State\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"phone\",\r\n                        \"columnType\": \"Required\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"Y\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"Email\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Missing\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"reportName\": \"20 contacts.csv\",\r\n                \"recordsAvailable\": 21,\r\n                \"recordsImported\": 21,\r\n                \"duplicateCount\": 0,\r\n                \"reportError\": \"\",\r\n                \"missingColumnDetails\": {},\r\n                \"additionalFilterDetails\": {},\r\n                \"prospectsAssigned\": 0,\r\n                \"cadenceStatus\": null,\r\n                \"cadenceError\": [],\r\n                \"parkingLotCount\": 0,\r\n                \"ownedProspectsCount\": 0,\r\n                \"errorProspectCount\": 0,\r\n                \"columnStatuses\": [\r\n                    {\r\n                        \"columnName\": \"Company\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"Contact\",\r\n                        \"columnType\": \"Required\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"Title\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Missing\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"City\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"State\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"phone\",\r\n                        \"columnType\": \"Required\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"Y\"\r\n                    },\r\n                    {\r\n                        \"columnName\": \"Email\",\r\n                        \"columnType\": \"Recommended\",\r\n                        \"importStatus\": \"Yes\",\r\n                        \"dialerEnabled\": \"N\"\r\n                    }\r\n                ]\r\n            }\r\n        ]\r\n    ]\r\n}"}],"_postman_id":"85e123cf-97cf-4b41-8945-e5a2f9ab4898"},{"name":"LPS Upload","id":"953708c0-9616-4d33-80b7-dcfbb8563949","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/datalist/lpsUpload/:id","description":"<p>To upload the Lead Pool Session list to my session.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","lpsUpload",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"63f98649-fa88-4e74-ac35-249a541c380b","type":"any","value":"DataList Id","key":"id"}]}},"response":[{"id":"8ca735ab-2873-4796-823e-1a59558f5186","name":"LPS Upload","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/datalist/lpsUpload/11757"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"reportName\": \"Nov LPS.csv\",\r\n            \"recordsAvailable\": 8,\r\n            \"recordsImported\": 8,\r\n            \"duplicateCount\": 0,\r\n            \"reportError\": \"\",\r\n            \"missingColumnDetails\": {},\r\n            \"additionalFilterDetails\": {},\r\n            \"prospectsAssigned\": 0,\r\n            \"cadenceStatus\": null,\r\n            \"cadenceError\": [],\r\n            \"parkingLotCount\": 0,\r\n            \"ownedProspectsCount\": 0,\r\n            \"errorProspectCount\": 0,\r\n            \"columnStatuses\": [\r\n                {\r\n                    \"columnName\": \"Company\",\r\n                    \"columnType\": \"Recommended\",\r\n                    \"importStatus\": \"Yes\",\r\n                    \"dialerEnabled\": \"N\"\r\n                },\r\n                {\r\n                    \"columnName\": \"Contact\",\r\n                    \"columnType\": \"Required\",\r\n                    \"importStatus\": \"Yes\",\r\n                    \"dialerEnabled\": \"N\"\r\n                },\r\n                {\r\n                    \"columnName\": \"Title\",\r\n                    \"columnType\": \"Recommended\",\r\n                    \"importStatus\": \"Missing\",\r\n                    \"dialerEnabled\": \"N\"\r\n                },\r\n                {\r\n                    \"columnName\": \"City\",\r\n                    \"columnType\": \"Recommended\",\r\n                    \"importStatus\": \"Yes\",\r\n                    \"dialerEnabled\": \"N\"\r\n                },\r\n                {\r\n                    \"columnName\": \"State\",\r\n                    \"columnType\": \"Recommended\",\r\n                    \"importStatus\": \"Yes\",\r\n                    \"dialerEnabled\": \"N\"\r\n                },\r\n                {\r\n                    \"columnName\": \"phone\",\r\n                    \"columnType\": \"Required\",\r\n                    \"importStatus\": \"Yes\",\r\n                    \"dialerEnabled\": \"Y\"\r\n                },\r\n                {\r\n                    \"columnName\": \"Email\",\r\n                    \"columnType\": \"Recommended\",\r\n                    \"importStatus\": \"Yes\",\r\n                    \"dialerEnabled\": \"N\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"953708c0-9616-4d33-80b7-dcfbb8563949"}],"id":"a3608107-508b-4d13-95a1-dfc57d613f18","description":"<p>To upload the list to my session</p>\n","_postman_id":"a3608107-508b-4d13-95a1-dfc57d613f18","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Duplicates","item":[{"name":"Prospect Duplicates","id":"f9c15a75-2177-48e6-8269-884f1a95a6d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/import/duplicates","description":"<p>To get the duplicates records while importing the list</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","duplicates"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"8e7cefe8-b148-4b01-916f-37f3729c4067","name":"Prospect Duplicates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/import/duplicates?filter[user][id]=8398&page[limit]=10&page[offset]=0","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["import","duplicates"],"query":[{"key":"filter[user][id]","value":"8398"},{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 345192,\n            \"dataListId\": null,\n            \"dataListName\": \"only 2 - only 2.csv.csv\",\n            \"accountName\": \"temp\",\n            \"contactName\": \"Jack2 tcott\",\n            \"recordData\": \"{email_id=jack3@temp.com, extension=365, contact_name=Jack2 tcott, sf_pk=crmgenkey_5ce91cd6-d6cb-31ba-ab5b-9c000ab93483, city=Chennai, timezone=EST, sf_report_name=only 2 - only 2.csv.csv, last_name=tcott, data_list_id=17564, phone=(603) 336-0304, account_name=temp, state=yaaho, first_name=Jack2}\",\n            \"prospectId\": -1,\n            \"ownedBy\": 8398,\n            \"lastImportedDate\": null,\n            \"crmId\": \"crmgenkey_5ce91cd6-d6cb-31ba-ab5b-9c000ab93483\",\n            \"fileId\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 8398\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"f9c15a75-2177-48e6-8269-884f1a95a6d3"},{"name":"Export","id":"b482f805-d220-4086-a011-999d67b4df09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 8398\r\n    },\r\n    \"fileId\": [\r\n        \"13NstUyqGxrYpwFdNDjWKE5WRdQXuMCt-2023-5-9-13396049\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}sign/prospect/duplicate","description":"<p>To export the duplicate records which are already uploaded to session</p>\n<p>Get the signed key using this API and access the public url to download the report in excel format.</p>\n<p>Output Format : Inputstream</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["prospect","duplicate"],"host":["{{koncert_dialers_api}}sign"],"query":[],"variable":[]}},"response":[{"id":"d928e9a4-e055-4ae6-9e3f-a8e1eb474798","name":"Export","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 8398\r\n    },\r\n    \"fileId\": [\r\n        \"13NstUyqGxrYpwFdNDjWKE5WRdQXuMCt-2023-5-9-13396049\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}sign/prospect/duplicate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"key\": \"40A3B24CC82BFCE7AE545B66A4F8A93AAB3053C3A2D917A90FCCE753A9EDBDC27B2EFC25D1B6EF679153BD511FD05B168943297A57584972\",\n            \"na\": \"4408FD89F4A9D7B777C58CA93D246D2101F053461C98D17088B239BCCAC7D4DB\"\n        }\n    ]\n}"},{"id":"972cb564-0219-441d-8da0-bdd4de37692e","name":"Download","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 8398\r\n    },\r\n    \"fileId\": [\r\n        \"13NstUyqGxrYpwFdNDjWKE5WRdQXuMCt-2023-5-9-13396049\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/public/prospects/exportDuplicate/8E6D7DEA76985070EA9CB3D7BA7ABBE967D0209FB211A59B3A25C41DB84BD98C71CFF48E4EBDAD8022CBE11BCD9974407E31B5EA05C10AAC"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b482f805-d220-4086-a011-999d67b4df09"}],"id":"23ccb317-6411-4ee0-ad44-69e29facf979","_postman_id":"23ccb317-6411-4ee0-ad44-69e29facf979","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"User List Mapping","item":[{"name":"All Mapping","id":"0451a831-c2a0-431c-97fd-486a1b890a9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/userListMappings","description":"<p>To get the User List Mapping for the CSV header fields and Koncert Fields</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["userListMappings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"10a03f51-c960-42ca-914b-36c13bac0ed5","name":"All Mapping","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/userListMappings?page[limit]=200&page[offset]=0&filter[user][id]=11271&sort[name]=asc","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["userListMappings"],"query":[{"key":"page[limit]","value":"200"},{"key":"page[offset]","value":"0"},{"key":"filter[user][id]","value":"11271"},{"key":"sort[name]","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 473,\n            \"name\": \"Default\",\n            \"fileId\": null,\n            \"associations\": {\n                \"userListFieldMappings\": [\n                    {\n                        \"id\": 40252\n                    },\n                    {\n                        \"id\": 40253\n                    },\n                    {\n                        \"id\": 40254\n                    },\n                    {\n                        \"id\": 40255\n                    },\n                    {\n                        \"id\": 40256\n                    },\n                    {\n                        \"id\": 40257\n                    },\n                    {\n                        \"id\": 40258\n                    },\n                    {\n                        \"id\": 40259\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 11271\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 459,\n            \"name\": \"Default_mapping\",\n            \"fileId\": null,\n            \"associations\": {\n                \"userListFieldMappings\": [\n                    {\n                        \"id\": 40148\n                    },\n                    {\n                        \"id\": 40149\n                    },\n                    {\n                        \"id\": 40150\n                    },\n                    {\n                        \"id\": 40151\n                    },\n                    {\n                        \"id\": 40152\n                    },\n                    {\n                        \"id\": 40153\n                    },\n                    {\n                        \"id\": 40154\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 11271\n                    }\n                ]\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 8,\n        \"limit\": 200,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"0451a831-c2a0-431c-97fd-486a1b890a9a"},{"name":"Mapping By Id","id":"849ce0c5-1081-400f-bba7-e09ba51d12e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/userListMappings/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["userListMappings",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"4d9e2cf1-92bd-42e6-989f-a7bad0d960d7","type":"any","value":"Mapping Id","key":"id"}]}},"response":[{"id":"82727b05-d610-43d4-957c-c6eb645d2e8b","name":"Mapping By Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/userListMappings/494?page[limit]=200&page[offset]=0&filter[user][id]=11271&sort[name]=asc&includeAssociations[]=userListFieldMappings","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["userListMappings","494"],"query":[{"key":"page[limit]","value":"200"},{"key":"page[offset]","value":"0"},{"key":"filter[user][id]","value":"11271"},{"key":"sort[name]","value":"asc"},{"key":"includeAssociations[]","value":"userListFieldMappings"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 494,\n            \"name\": \"test12234\",\n            \"fileId\": null,\n            \"associations\": {\n                \"userListFieldMappings\": [\n                    {\n                        \"id\": 40270\n                    },\n                    {\n                        \"id\": 40271\n                    },\n                    {\n                        \"id\": 40272\n                    },\n                    {\n                        \"id\": 40273\n                    },\n                    {\n                        \"id\": 40274\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ],\n    \"includedAssociations\": {\n        \"userListFieldMappings\": [\n            {\n                \"id\": 40270,\n                \"csvFieldName\": \"Email\",\n                \"associations\": {\n                    \"userListMapping\": [\n                        {\n                            \"id\": 494\n                        }\n                    ],\n                    \"fields\": [\n                        {\n                            \"id\": 35124\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 40271,\n                \"csvFieldName\": \"City\",\n                \"associations\": {\n                    \"userListMapping\": [\n                        {\n                            \"id\": 494\n                        }\n                    ],\n                    \"fields\": [\n                        {\n                            \"id\": 35148\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 40272,\n                \"csvFieldName\": \"Last Name\",\n                \"associations\": {\n                    \"userListMapping\": [\n                        {\n                            \"id\": 494\n                        }\n                    ],\n                    \"fields\": [\n                        {\n                            \"id\": 35140\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 40273,\n                \"csvFieldName\": \"Phone\",\n                \"associations\": {\n                    \"userListMapping\": [\n                        {\n                            \"id\": 494\n                        }\n                    ],\n                    \"fields\": [\n                        {\n                            \"id\": 35134\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 40274,\n                \"csvFieldName\": \"First Name\",\n                \"associations\": {\n                    \"userListMapping\": [\n                        {\n                            \"id\": 494\n                        }\n                    ],\n                    \"fields\": [\n                        {\n                            \"id\": 35139\n                        }\n                    ]\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"849ce0c5-1081-400f-bba7-e09ba51d12e2"},{"name":"Create","id":"9b6352c9-3ff9-4fbe-8fcf-2521ee3978e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"csvFieldMapping\",\r\n    \"fileId\": \"b9Do2NWGG3GK49vftkh3xHnWbjHdApM7-2023-5-22-1684748206232\",\r\n    \"userListFieldMappings\": [\r\n        {\r\n            \"csvFieldName\": \"City\",\r\n            \"fields\": {\r\n                \"id\": 35148\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Email\",\r\n            \"fields\": {\r\n                \"id\": 35124\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"First Name\",\r\n            \"fields\": {\r\n                \"id\": 35139\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Last Name\",\r\n            \"fields\": {\r\n                \"id\": 35140\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Phone\",\r\n            \"fields\": {\r\n                \"id\": 35134\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/userListMappings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["userListMappings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"676f0769-4849-49ae-8561-0becfcc16aca","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"csvFieldMapping\",\r\n    \"fileId\": \"b9Do2NWGG3GK49vftkh3xHnWbjHdApM7-2023-5-22-1684748206232\",\r\n    \"userListFieldMappings\": [\r\n        {\r\n            \"csvFieldName\": \"City\",\r\n            \"fields\": {\r\n                \"id\": 35148\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Email\",\r\n            \"fields\": {\r\n                \"id\": 35124\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"First Name\",\r\n            \"fields\": {\r\n                \"id\": 35139\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Last Name\",\r\n            \"fields\": {\r\n                \"id\": 35140\r\n            }\r\n        },\r\n        {\r\n            \"csvFieldName\": \"Phone\",\r\n            \"fields\": {\r\n                \"id\": 35134\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/userListMappings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 494,\n            \"name\": \"csvFieldMapping\",\n            \"fileId\": null,\n            \"associations\": {\n                \"userListFieldMappings\": [\n                    {\n                        \"id\": 40270\n                    },\n                    {\n                        \"id\": 40271\n                    },\n                    {\n                        \"id\": 40272\n                    },\n                    {\n                        \"id\": 40273\n                    },\n                    {\n                        \"id\": 40274\n                    }\n                ],\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"9b6352c9-3ff9-4fbe-8fcf-2521ee3978e0"},{"name":"Delete","id":"d96e24b3-747c-4c37-88ab-afb4316ad228","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/userListMappings/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["userListMappings",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"08dfb4e1-9e26-48be-8005-9ad759bc8374","type":"any","value":"Mapping Id","key":"id"}]}},"response":[{"id":"13fd70d3-e640-4bea-83a0-85f268e37cd5","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/userListMappings/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["userListMappings",":id"],"variable":[{"key":"id","value":"Mapping Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"d96e24b3-747c-4c37-88ab-afb4316ad228"}],"id":"6314c830-fb56-4d5e-883d-6362fb7e1600","description":"<p>To map the User List Mapping for the CSV header fields and Koncert Fields</p>\n","_postman_id":"6314c830-fb56-4d5e-883d-6362fb7e1600","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"External Custom CRM","item":[{"name":"Create List","id":"69cd056e-0e3b-4d11-af84-ed8ddc56fcea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"listName\": \"Test Custom List\",\r\n    \"isLeadPoolList\": true,\r\n    \"assignedUsers\": [\r\n        24204,\r\n        24203\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist","description":"<h3 id=\"post-datalist\">POST /datalist</h3>\n<p>This endpoint is used to create a new data list.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: POST</p>\n</li>\n<li><p>Endpoint: <code>https://{{koncert_dialers_api}}/datalist</code></p>\n</li>\n<li><p>Body:</p>\n<ul>\n<li><p><code>listName</code> (string, required): The name of the custom list to be created.</p>\n</li>\n<li><p>isLeadPoolList - To allow Group Dialing for the list. If this is true - assignedUsers key is mandatory.</p>\n</li>\n<li><p>assignedUsers - Array of users who can use this list to dial.</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"700e14da-e710-4de7-ba9a-9ad71f14081d","name":"Create List","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"listName\":\"Test Custom List\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 29442,\r\n            \"listName\": \"Test Custom List\",\r\n            \"listType\": \"Dynamic\",\r\n            \"listCrmName\": \"customCrm\",\r\n            \"listCrmReportName\": \"Test Custom List\",\r\n            \"listCrmReportUrl\": \"none\",\r\n            \"activeFlag\": \"Y\",\r\n            \"recordType\": null,\r\n            \"lastAttemptedDate\": null,\r\n            \"lastConnectedDate\": null,\r\n            \"totalDials\": null,\r\n            \"totalConnects\": null,\r\n            \"totalFollowUps\": null,\r\n            \"totalRecords\": null,\r\n            \"callScript\": null,\r\n            \"outreachStepIds\": null,\r\n            \"badData\": 0,\r\n            \"thirdPartyCadenseId\": null,\r\n            \"thirdPartyCrmReportType\": null,\r\n            \"thirdpartyIncludeTodayTasks\": null,\r\n            \"isLeadPoolList\": null,\r\n            \"assignedTeams\": null,\r\n            \"tdsServerUrl\": null,\r\n            \"phoneServer\": null,\r\n            \"dialingMetaData\": {\r\n                \"timezone\": \"EST\",\r\n                \"isMandatory\": false,\r\n                \"assignedUsers\": [],\r\n                \"assignedTeams\": [],\r\n                \"callerIds\": \"\",\r\n                \"callerIdMode\": \"AB-CID\",\r\n                \"isRecommended\": false,\r\n                \"allowDaPlayVm\": false,\r\n                \"voiceMessage\": \"\",\r\n                \"phoneColumnsToDial\": [\r\n                    \"phone\",\r\n                    \"custom_phone_1\",\r\n                    \"custom_phone_2\",\r\n                    \"custom_phone_3\",\r\n                    \"custom_phone_4\"\r\n                ],\r\n                \"callInstruction\": \"\",\r\n                \"sortByColumnName\": \"contact_name\",\r\n                \"sortBy\": \"ASC\",\r\n                \"secondarySortByDirection\": \"\",\r\n                \"tertiarySortByDirection\": \"\",\r\n                \"quartnarySortByDirection\": \"\",\r\n                \"secondarySortByColumn\": \"\",\r\n                \"tertiarySortByColumn\": \"\",\r\n                \"quartnarySortByColumn\": \"\",\r\n                \"countryCodePrefixed\": null,\r\n                \"primarySortByRecordType\": \"\",\r\n                \"secondarySortByRecordType\": null,\r\n                \"quartnarySortByRecordType\": null,\r\n                \"tertiarySortByRecordType\": null\r\n            },\r\n            \"joinedTalkerCount\": null,\r\n            \"dsLpsSessionKey\": null,\r\n            \"prsLpsSessionKey\": null,\r\n            \"isLpListImported\": null,\r\n            \"lpsLastRowDialed\": null,\r\n            \"isMandatory\": false,\r\n            \"recommended\": false,\r\n            \"category\": null,\r\n            \"noOfAttemptsPerDay\": null,\r\n            \"noOfAttemptsPerRecord\": null,\r\n            \"timeGapBetweenAttempt\": null,\r\n            \"callerIdMode\": \"AB-CID\",\r\n            \"name\": \"Veerapandiyan V\",\r\n            \"company\": \"Veera Salesforce Org\",\r\n            \"callInstruction\": null,\r\n            \"voiceMessage\": null,\r\n            \"initialGreeting\": null,\r\n            \"sortBy\": \"ASC\",\r\n            \"phoneColumnsToDial\": \"[\\\"phone\\\", \\\"custom_phone_1\\\", \\\"custom_phone_2\\\", \\\"custom_phone_3\\\", \\\"custom_phone_4\\\"]\",\r\n            \"sortByColumnName\": \"contact_name\",\r\n            \"callerIds\": null,\r\n            \"groupName\": null,\r\n            \"timezone\": \"EST\",\r\n            \"assignedUsers\": null,\r\n            \"createdDate\": \"2024-10-22T07:56:23Z\",\r\n            \"updatedDate\": \"2024-10-22T07:56:23Z\",\r\n            \"lastModDivisionValue\": null,\r\n            \"totalAverageAttempts\": null,\r\n            \"totalAverageListAttempts\": null,\r\n            \"salesloftImportOnlyUserProspects\": null,\r\n            \"thirdPartyCrmTaskSortByField\": null,\r\n            \"thirdPartyCrmTaskSortByOrder\": null,\r\n            \"totalUniqueDials\": null,\r\n            \"usersMadeThisAsFavorite\": null,\r\n            \"coverage\": null,\r\n            \"connectRate\": null,\r\n            \"favorite\": false,\r\n            \"dialsCount\": null,\r\n            \"averageDialAttempts\": null,\r\n            \"cadenceStepNo\": null,\r\n            \"apolloCadenceId\": null,\r\n            \"apolloCadenceStepNo\": null,\r\n            \"associations\": {\r\n                \"user\": {\r\n                    \"id\": 14525\r\n                }\r\n            },\r\n            \"badDataRate\": null,\r\n            \"mappingData\": null,\r\n            \"timeGapBetweenEachAttempt\": null,\r\n            \"timeGapBetweenEachPhoneColumn\": null,\r\n            \"lastUploadedDateTime\": null,\r\n            \"archivedDate\": null,\r\n            \"reset\": false,\r\n            \"listMergeIds\": null,\r\n            \"thirdPartyCrmStepNameVmName\": null,\r\n            \"canAgentsPlayVm\": false,\r\n            \"leadPoolStats\": null,\r\n            \"dialingSession\": false,\r\n            \"allowOvernightReset\": null,\r\n            \"thirdPartyCrmStepName\": null\r\n        }\r\n    ]\r\n}"},{"id":"bc5a095e-d598-41f8-9dd3-18b00beb2c1a","name":"Create List LPS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"listName\": \"Test Custom List\",\r\n    \"isLeadPoolList\": true,\r\n    \"assignedUsers\": [\r\n        24204,\r\n        24203\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 29442,\r\n            \"listName\": \"Test Custom List\",\r\n            \"listType\": \"Dynamic\",\r\n            \"listCrmName\": \"customCrm\",\r\n            \"listCrmReportName\": \"Test Custom List\",\r\n            \"listCrmReportUrl\": \"none\",\r\n            \"activeFlag\": \"Y\",\r\n            \"recordType\": null,\r\n            \"lastAttemptedDate\": null,\r\n            \"lastConnectedDate\": null,\r\n            \"totalDials\": null,\r\n            \"totalConnects\": null,\r\n            \"totalFollowUps\": null,\r\n            \"totalRecords\": null,\r\n            \"callScript\": null,\r\n            \"outreachStepIds\": null,\r\n            \"badData\": 0,\r\n            \"thirdPartyCadenseId\": null,\r\n            \"thirdPartyCrmReportType\": null,\r\n            \"thirdpartyIncludeTodayTasks\": null,\r\n            \"isLeadPoolList\": null,\r\n            \"assignedTeams\": null,\r\n            \"tdsServerUrl\": null,\r\n            \"phoneServer\": null,\r\n            \"dialingMetaData\": {\r\n                \"timezone\": \"EST\",\r\n                \"isMandatory\": false,\r\n                \"assignedUsers\": [],\r\n                \"assignedTeams\": [],\r\n                \"callerIds\": \"\",\r\n                \"callerIdMode\": \"AB-CID\",\r\n                \"isRecommended\": false,\r\n                \"allowDaPlayVm\": false,\r\n                \"voiceMessage\": \"\",\r\n                \"phoneColumnsToDial\": [\r\n                    \"phone\",\r\n                    \"custom_phone_1\",\r\n                    \"custom_phone_2\",\r\n                    \"custom_phone_3\",\r\n                    \"custom_phone_4\"\r\n                ],\r\n                \"callInstruction\": \"\",\r\n                \"sortByColumnName\": \"contact_name\",\r\n                \"sortBy\": \"ASC\",\r\n                \"secondarySortByDirection\": \"\",\r\n                \"tertiarySortByDirection\": \"\",\r\n                \"quartnarySortByDirection\": \"\",\r\n                \"secondarySortByColumn\": \"\",\r\n                \"tertiarySortByColumn\": \"\",\r\n                \"quartnarySortByColumn\": \"\",\r\n                \"countryCodePrefixed\": null,\r\n                \"primarySortByRecordType\": \"\",\r\n                \"secondarySortByRecordType\": null,\r\n                \"quartnarySortByRecordType\": null,\r\n                \"tertiarySortByRecordType\": null\r\n            },\r\n            \"joinedTalkerCount\": null,\r\n            \"dsLpsSessionKey\": null,\r\n            \"prsLpsSessionKey\": null,\r\n            \"isLpListImported\": null,\r\n            \"lpsLastRowDialed\": null,\r\n            \"isMandatory\": false,\r\n            \"recommended\": false,\r\n            \"category\": null,\r\n            \"noOfAttemptsPerDay\": null,\r\n            \"noOfAttemptsPerRecord\": null,\r\n            \"timeGapBetweenAttempt\": null,\r\n            \"callerIdMode\": \"AB-CID\",\r\n            \"name\": \"Veerapandiyan V\",\r\n            \"company\": \"Veera Salesforce Org\",\r\n            \"callInstruction\": null,\r\n            \"voiceMessage\": null,\r\n            \"initialGreeting\": null,\r\n            \"sortBy\": \"ASC\",\r\n            \"phoneColumnsToDial\": \"[\\\"phone\\\", \\\"custom_phone_1\\\", \\\"custom_phone_2\\\", \\\"custom_phone_3\\\", \\\"custom_phone_4\\\"]\",\r\n            \"sortByColumnName\": \"contact_name\",\r\n            \"callerIds\": null,\r\n            \"groupName\": null,\r\n            \"timezone\": \"EST\",\r\n            \"assignedUsers\": null,\r\n            \"createdDate\": \"2024-10-22T07:56:23Z\",\r\n            \"updatedDate\": \"2024-10-22T07:56:23Z\",\r\n            \"lastModDivisionValue\": null,\r\n            \"totalAverageAttempts\": null,\r\n            \"totalAverageListAttempts\": null,\r\n            \"salesloftImportOnlyUserProspects\": null,\r\n            \"thirdPartyCrmTaskSortByField\": null,\r\n            \"thirdPartyCrmTaskSortByOrder\": null,\r\n            \"totalUniqueDials\": null,\r\n            \"usersMadeThisAsFavorite\": null,\r\n            \"coverage\": null,\r\n            \"connectRate\": null,\r\n            \"favorite\": false,\r\n            \"dialsCount\": null,\r\n            \"averageDialAttempts\": null,\r\n            \"cadenceStepNo\": null,\r\n            \"apolloCadenceId\": null,\r\n            \"apolloCadenceStepNo\": null,\r\n            \"associations\": {\r\n                \"user\": {\r\n                    \"id\": 14525\r\n                }\r\n            },\r\n            \"badDataRate\": null,\r\n            \"mappingData\": null,\r\n            \"timeGapBetweenEachAttempt\": null,\r\n            \"timeGapBetweenEachPhoneColumn\": null,\r\n            \"lastUploadedDateTime\": null,\r\n            \"archivedDate\": null,\r\n            \"reset\": false,\r\n            \"listMergeIds\": null,\r\n            \"thirdPartyCrmStepNameVmName\": null,\r\n            \"canAgentsPlayVm\": false,\r\n            \"leadPoolStats\": null,\r\n            \"dialingSession\": false,\r\n            \"allowOvernightReset\": null,\r\n            \"thirdPartyCrmStepName\": null\r\n        }\r\n    ]\r\n}"}],"_postman_id":"69cd056e-0e3b-4d11-af84-ed8ddc56fcea"},{"name":"Import Prospects","event":[{"listen":"test","script":{"id":"e8a0aada-3edf-43f2-84c7-3838e144199f","exec":[""],"type":"text/javascript","packages":{}}}],"id":"40706b23-81af-4a6e-95d8-7936307d9f71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"dataListId\": 29442,\r\n    \"prospects\": [\r\n        {\r\n            \"sfPk\": \"UAAU1\",\r\n            \"accountName\": \"United Oil & Gas Corp.\",\r\n            \"contactName\": \"Avi green\",\r\n            \"emailId\": \"agreen@uog.com\",\r\n            \"phone\": \"(212) 842-5500\",\r\n            \"title\": \"CFO\"\r\n        },\r\n        {\r\n            \"sfPk\": \"UAAU2\",\r\n            \"accountName\": \"United Oil & Gas Corp.\",\r\n            \"contactName\": \"James Franklin\",\r\n            \"emailId\": \"james@uog.com\",\r\n            \"phone\": \"(213) 842-5500\",\r\n            \"title\": \"CFO\",\r\n            \"custom_phone_1\": \"(213) 842-5500\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/prospect","description":"<h3 id=\"import-prospect\">Import Prospect</h3>\n<p>This endpoint allows you to import prospects into the koncert for the custom list.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p>dataListId (number): The ID of the data list.</p>\n</li>\n<li><p>prospects (array): An array of prospects to be imported, each containing <strong>sfPk</strong> as the Unique id of the prospect and <strong>contactName/Phone</strong> fields are mandatory.</p>\n</li>\n</ul>\n<p><strong>Note</strong>: Please refer to the <a href=\"https://koncert-cadence.postman.co/workspace/Koncert-Workspace~584984bc-87d6-4561-8dd3-95804b42940c/request/14011469-0cb4061d-5410-4729-a35b-1e7c1bbc82b4?action=share&amp;source=copy-link&amp;creator=15611905&amp;ctx=documentation\"><b>Field List API</b></a> under the <strong>Fields</strong> tab. Use the field labeled <code>name</code> as the key for all fields within the <code>prospects</code> array.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["import","prospect"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"1e68ef77-49d0-4065-9259-fec080ca4c8f","name":"Import Prospects","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"dataListId\": 29541,\r\n    \"prospects\": [\r\n        {\r\n            \"accountName\": \"United Oil & Gas Corp.\",\r\n            \"contactName\": \"Avi green\",\r\n            \"emailId\": \"agreen@uog.com\",\r\n            \"phone\": \"(212) 842-5500\",\r\n            \"title\": \"CFO\",\r\n            \"sfPk\": \"UAAU58\"\r\n        },\r\n        {\r\n            \"accountName\": \"United Oil & Gas Corp.\",\r\n            \"contactName\": \"Avi green\",\r\n            \"emailId\": \"agreen@uog.com\",\r\n            \"phone\": \"(212) 842-5500\",\r\n            \"title\": \"CFO\",\r\n            \"sfPk\": \"UAAU76\"\r\n        },\r\n        {\r\n            \"accountName\": \"United Oil & Gas Corp.\",\r\n            \"contactName\": \"James Franklin\",\r\n            \"emailId\": \"james@uog.com\",\r\n            \"title\": \"CFO\",\r\n            \"sfPk\": \"UAAU77\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/import/prospect"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"status\": \"success\",\r\n            \"sfPk\": \"UAAU58\"\r\n        },\r\n        {\r\n            \"status\": \"FAILURE\",\r\n            \"reason\": \"duplicate\",\r\n            \"sfPk\": \"UAAU76\",\r\n            \"contactName\": \"Avi green\"\r\n        },\r\n        {\r\n            \"status\": \"FAILURE\",\r\n            \"reason\": \"Mandatory field values are missing\",\r\n            \"errors\": [\r\n                {\r\n                    \"message\": \"Either Phone or CustomPhone required.\"\r\n                }\r\n            ],\r\n            \"contactName\": \"James Franklin\",\r\n            \"sfPk\": \"UAAU77\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"40706b23-81af-4a6e-95d8-7936307d9f71"},{"name":"Clear List Prospects","id":"640921df-99c0-490f-89dd-ca027b7a8404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/datalist/clearProspects/:id","description":"<h3 id=\"clear-prospects-data-list\">Clear Prospects Data List</h3>\n<p>This API endpoint used to remove all the prospects for a specific data list ID.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>This request does not require a request body.</p>\n<h4 id=\"response\">Response</h4>\n<p>The response will be in JSON format with the following structure:</p>\n<ul>\n<li><code>response</code>: (string) The response message indicating the status of the operation.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","clearProspects",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"type":"any","value":"The ID of the data list","key":"id"}]}},"response":[{"id":"2b1b10e3-87ad-4d3a-9a23-4e29249e7b00","name":"Clear List Prospects","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/datalist/clearProspects/29442"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"640921df-99c0-490f-89dd-ca027b7a8404"}],"id":"1dd55418-2e9a-4efd-a779-d10af34013ad","description":"<p>It will have all the APIs related to external custom CRM.</p>\n","_postman_id":"1dd55418-2e9a-4efd-a779-d10af34013ad","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"My List","id":"af9a89e1-be41-4662-a403-06c4535e0d7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/datalist","description":"<p>Get all the list imported from CSV, Cadence and CRM for login user and his team users</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"e7d89bfa-bdda-4c41-9125-a296b81d64e1","name":"My List","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist?filter[activeFlag]=Y&includeAssociations[]=user&sort[listName]=DESC&page[limit]=20","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist"],"query":[{"key":"filter[activeFlag]","value":"Y"},{"key":"includeAssociations[]","value":"user"},{"key":"sort[listName]","value":"DESC"},{"key":"page[limit]","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 7548,\n            \"listName\": \"vickyvignesh.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"vickyvignesh.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": \"2022-11-09T16:11:47Z\",\n            \"lastConnectedDate\": \"2022-11-09T16:12:21Z\",\n            \"totalDials\": 23,\n            \"totalConnects\": 9,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": \"<p>tested</p>\",\n            \"outreachStepIds\": null,\n            \"badData\": 39,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"PST\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": null,\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"ASC\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"account_name\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": \"\",\n                \"quartnarySortByRecordType\": \"\",\n                \"tertiarySortByRecordType\": \"\"\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": \"null\",\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2021-11-09T13:37:43Z\",\n            \"updatedDate\": \"2022-07-07T06:30:41Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 17,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 30,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"39\",\n            \"favorite\": true,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 8101,\n            \"listName\": \"vickyvignesh(2).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"vickyvignesh.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": \"2022-06-07T18:34:01Z\",\n            \"lastConnectedDate\": \"2022-06-07T18:34:01Z\",\n            \"totalDials\": 204,\n            \"totalConnects\": 71,\n            \"totalFollowUps\": 3,\n            \"totalRecords\": 6,\n            \"callScript\": \"<h2><strong>Rajesh Call script</strong></h2>\\n\\n<ol>\\n\\t<li><strong><em>Lorem ipsume content</em></strong></li>\\n\\t<li>asdfasdf tesging</li>\\n\\t<li><u>Lorem ipsume content</u></li>\\n\\t<li>Lorem ipsume content</li>\\n</ol>\\n\\n<ul>\\n\\t<li>Lorem ipsume content</li>\\n\\t<li>Lorem ipsume content</li>\\n\\t<li>Lorem ipsume content</li>\\n</ul>\",\n            \"outreachStepIds\": null,\n            \"badData\": 34,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,,\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA], +1 (978) 296-1108 [MA], +1 (978) 296-1109 [MA]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": null,\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_1\",\n                    \"custom_phone_4\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"ASC\",\n                \"tertiarySortByDirection\": \"ASC\",\n                \"quartnarySortByDirection\": \"ASC\",\n                \"secondarySortByColumn\": \"custom_varchar_14\",\n                \"tertiarySortByColumn\": \"account_name\",\n                \"quartnarySortByColumn\": \"activity_comments\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": \"\",\n                \"quartnarySortByRecordType\": \"\",\n                \"tertiarySortByRecordType\": \"\"\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": \"null\",\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_1\\\",\\\"custom_phone_4\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA], +1 (978) 296-1108 [MA], +1 (978) 296-1109 [MA]\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,,\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-01-25T07:28:40Z\",\n            \"updatedDate\": \"2022-04-28T07:53:27Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 66,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 13,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"216\",\n            \"connectRate\": \"34\",\n            \"favorite\": true,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 9879,\n            \"listName\": \"key 6 records (1).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"key 6 records (1).csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": \"2022-11-09T16:08:42Z\",\n            \"lastConnectedDate\": \"2022-11-09T16:08:51Z\",\n            \"totalDials\": 110,\n            \"totalConnects\": 62,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": \"<p>Call</p>\",\n            \"outreachStepIds\": null,\n            \"badData\": 53,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"UK Local\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US],+17868900548 [US]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": true,\n                \"voiceMessage\": \"rajeshkumarvm\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_3\"\n                ],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": \"\",\n                \"quartnarySortByRecordType\": \"\",\n                \"tertiarySortByRecordType\": \"\"\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": \"rajeshkumarvm\",\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_3\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US],+17868900548 [US]\",\n            \"groupName\": null,\n            \"timezone\": \"UK Local\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-07-22T06:52:56Z\",\n            \"updatedDate\": \"2022-09-16T10:51:22Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 24,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 14,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"56\",\n            \"favorite\": true,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 8398,\n            \"listName\": \"vickyvignesh(24).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"vickyvignesh.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 6,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"CST,MST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_3\",\n                    \"custom_phone_4\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_3\\\",\\\"custom_phone_4\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n            \"groupName\": null,\n            \"timezone\": \"CST,MST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-02-24T13:48:28Z\",\n            \"updatedDate\": \"2022-02-24T13:48:28Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 9005,\n            \"listName\": \"vickyvignesh(1).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"vickyvignesh.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_3\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_3\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-04-19T13:47:11Z\",\n            \"updatedDate\": \"2022-04-19T13:47:11Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 8343,\n            \"listName\": \"vickyvignesh1702.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"vickyvignesh.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_4\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_4\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+1(978) 296-1106 [MA], +1(978) 296-1107 [MA]\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-02-17T15:31:27Z\",\n            \"updatedDate\": \"2022-02-17T15:31:27Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10199,\n            \"listName\": \"Test.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": [\n                7424,\n                7424,\n                7424,\n                7660\n            ],\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [\n                    \"7424\",\n                    \"7424\",\n                    \"7424\",\n                    \"7660\"\n                ],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": null,\n                \"tertiarySortByDirection\": null,\n                \"quartnarySortByDirection\": null,\n                \"secondarySortByColumn\": null,\n                \"tertiarySortByColumn\": null,\n                \"quartnarySortByColumn\": null,\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": null,\n            \"recommended\": null,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[custom_phone_2, custom_phone_3, custom_phone_5]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": [\n                \"MG SQUAD\",\n                \"MG SQUAD 1\",\n                \"Team c\"\n            ],\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-07T07:53:33Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10118,\n            \"listName\": \"Test.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": null,\n                \"tertiarySortByDirection\": null,\n                \"quartnarySortByDirection\": null,\n                \"secondarySortByColumn\": null,\n                \"tertiarySortByColumn\": null,\n                \"quartnarySortByColumn\": null,\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": null,\n            \"recommended\": null,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[custom_phone_2, custom_phone_3, custom_phone_5]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-02T06:50:35Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10123,\n            \"listName\": \"Test.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": [\n                7424,\n                7424,\n                7424,\n                7660\n            ],\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [\n                    \"7424\",\n                    \"7424\",\n                    \"7424\",\n                    \"7660\"\n                ],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": null,\n                \"tertiarySortByDirection\": null,\n                \"quartnarySortByDirection\": null,\n                \"secondarySortByColumn\": null,\n                \"tertiarySortByColumn\": null,\n                \"quartnarySortByColumn\": null,\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": null,\n            \"recommended\": null,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[custom_phone_2, custom_phone_3, custom_phone_5]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": [\n                \"MG SQUAD\",\n                \"MG SQUAD 1\",\n                \"Team c\"\n            ],\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-02T08:03:08Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10201,\n            \"listName\": \"Test.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": [\n                7424,\n                7424,\n                7424,\n                7660\n            ],\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [\n                    \"7424\",\n                    \"7424\",\n                    \"7424\",\n                    \"7660\"\n                ],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": null,\n                \"tertiarySortByDirection\": null,\n                \"quartnarySortByDirection\": null,\n                \"secondarySortByColumn\": null,\n                \"tertiarySortByColumn\": null,\n                \"quartnarySortByColumn\": null,\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": null,\n            \"recommended\": null,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[custom_phone_2, custom_phone_3, custom_phone_5]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": [\n                \"MG SQUAD\",\n                \"MG SQUAD 1\",\n                \"Team c\"\n            ],\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-07T08:44:08Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10200,\n            \"listName\": \"Test.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": [\n                7424,\n                7424,\n                7424,\n                7660\n            ],\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [\n                    \"7424\",\n                    \"7424\",\n                    \"7424\",\n                    \"7660\"\n                ],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": null,\n                \"tertiarySortByDirection\": null,\n                \"quartnarySortByDirection\": null,\n                \"secondarySortByColumn\": null,\n                \"tertiarySortByColumn\": null,\n                \"quartnarySortByColumn\": null,\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": null,\n            \"recommended\": null,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[custom_phone_2, custom_phone_3, custom_phone_5]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": [\n                \"MG SQUAD\",\n                \"MG SQUAD 1\",\n                \"Team c\"\n            ],\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-07T08:00:40Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 8846,\n            \"listName\": \"test56\",\n            \"listType\": \"Cadence\",\n            \"listCrmName\": \"Cadence\",\n            \"listCrmReportName\": \"test56\",\n            \"listCrmReportUrl\": null,\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+1(978) 296-1106 [MA]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"custom_phone_3\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\",\n                    \"phone\",\n                    \"custom_phone_1\",\n                    \"custom_phone_4\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"custom_phone_3\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\",\\\"phone\\\",\\\"custom_phone_1\\\",\\\"custom_phone_4\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+1(978) 296-1106 [MA]\",\n            \"groupName\": null,\n            \"timezone\": \"EST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-03-28T13:21:16Z\",\n            \"updatedDate\": \"2022-03-28T13:21:16Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": [\n                2\n            ],\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                },\n                \"cadence\": {\n                    \"id\": 7591\n                }\n            }\n        },\n        {\n            \"id\": 8845,\n            \"listName\": \"test234\",\n            \"listType\": \"Cadence\",\n            \"listCrmName\": \"Cadence\",\n            \"listCrmReportName\": \"test234\",\n            \"listCrmReportUrl\": null,\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+1(978) 296-1106 [MA]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"custom_phone_3\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\",\n                    \"phone\",\n                    \"custom_phone_1\",\n                    \"custom_phone_4\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"custom_phone_3\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\",\\\"phone\\\",\\\"custom_phone_1\\\",\\\"custom_phone_4\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+1(978) 296-1106 [MA]\",\n            \"groupName\": null,\n            \"timezone\": \"EST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-03-28T13:09:40Z\",\n            \"updatedDate\": \"2022-03-28T13:09:40Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 9334,\n            \"listName\": \"'test123'-edge\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"key 6 records.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": \"2022-07-12T15:12:17Z\",\n            \"lastConnectedDate\": \"2022-07-12T15:12:17Z\",\n            \"totalDials\": 6,\n            \"totalConnects\": 6,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 6,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 100,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_1\",\n                    \"custom_phone_4\",\n                    \"custom_phone_3\",\n                    \"custom_phone_2\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_1\\\",\\\"custom_phone_4\\\",\\\"custom_phone_3\\\",\\\"custom_phone_2\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"EST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-05-19T07:43:39Z\",\n            \"updatedDate\": \"2022-05-19T07:43:39Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 1,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 3,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"50\",\n            \"connectRate\": \"100\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 8844,\n            \"listName\": \"test\",\n            \"listType\": \"Cadence\",\n            \"listCrmName\": \"Cadence\",\n            \"listCrmReportName\": \"test\",\n            \"listCrmReportUrl\": null,\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+1(978) 296-1106 [MA]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"custom_phone_3\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\",\n                    \"phone\",\n                    \"custom_phone_1\",\n                    \"custom_phone_4\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"custom_phone_3\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\",\\\"phone\\\",\\\"custom_phone_1\\\",\\\"custom_phone_4\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+1(978) 296-1106 [MA]\",\n            \"groupName\": null,\n            \"timezone\": \"EST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-03-28T12:59:32Z\",\n            \"updatedDate\": \"2022-03-28T12:59:32Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12563,\n            \"listName\": \"TeamC.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": [\n                7424,\n                7660\n            ],\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [\n                    \"7424,7660##SPL##Team c\"\n                ],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": [\n                \"Team c\"\n            ],\n            \"timezone\": \"EST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-11-11T08:36:20Z\",\n            \"updatedDate\": \"2022-11-11T08:36:20Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10414,\n            \"listName\": \"Prospects 2.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"UK Local\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+19782961106 [US]\",\n                \"callerIdMode\": \"RANDOM\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": true,\n                \"voiceMessage\": \"rajeshkumarvm\",\n                \"phoneColumnsToDial\": [\n                    \"[\\\"phone\\\"]\"\n                ],\n                \"callInstruction\": \"Hey..\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"DESC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": true,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": \"\",\n                \"quartnarySortByRecordType\": \"\",\n                \"tertiarySortByRecordType\": \"\"\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"RANDOM\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hey..\",\n            \"voiceMessage\": \"rajeshkumarvm\",\n            \"initialGreeting\": null,\n            \"sortBy\": \"DESC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+19782961106 [US]\",\n            \"groupName\": null,\n            \"timezone\": \"UK Local\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-16T10:53:29Z\",\n            \"updatedDate\": \"2022-09-19T11:30:43Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10334,\n            \"listName\": \"only(6).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7661\",\n                    \"7660\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_3\"\n                ],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_3\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7661,\n                7660\n            ],\n            \"createdDate\": \"2022-09-15T09:09:20Z\",\n            \"updatedDate\": \"2022-09-15T09:09:20Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10333,\n            \"listName\": \"only(5).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": [\n                7424,\n                7424\n            ],\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [\n                    \"7424##SPL##Team b\",\n                    \"7424##SPL##API Test Team - edited\"\n                ],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_3\"\n                ],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_3\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": [\n                \"Team b\",\n                \"API Test Team - edited\"\n            ],\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-15T08:30:19Z\",\n            \"updatedDate\": \"2022-09-15T08:30:19Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 10253,\n            \"listName\": \"only(4).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_3\"\n                ],\n                \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_3\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-12T11:55:56Z\",\n            \"updatedDate\": \"2022-09-12T11:55:56Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"user\": [\n            {\n                \"id\": 7424,\n                \"sfUserId\": \"STD-7881\",\n                \"name\": \"API Client Manager\",\n                \"userType\": null,\n                \"loginName\": \"apiclientmanager\",\n                \"email\": null,\n                \"userLicense\": \"TD,CD,TC,CO,AIDML\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"Connect Leader\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 1\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": \"\",\n                \"isManagerUser\": \"Y\",\n                \"lastProductType\": \"PD\",\n                \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\n                \"rcUrl\": \"https://dev.koncert.com/remotecoach/rcserver\",\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"916380992206\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"N\",\n                \"callRecordingUserPermission\": \"YYY\",\n                \"callRecordingEnabledByUser\": \"N\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n                \"enableScheduleCheck\": \"Y\",\n                \"isAdminUser\": \"Y\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": 86.00,\n                \"showAccountsBy\": null,\n                \"isTrucadenceLeftmenuExpanded\": true,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"lastExecutedDataListIds\": null,\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"Y\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"cl master\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2020-06-02T08:20:09Z\",\n                \"modifiedDate\": \"2022-11-15T13:01:48Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": \"all\",\n                \"displayName\": \"API Client Manager\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": null,\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": 26158336,\n                \"apiEnabled\": false,\n                \"exportProspects\": true,\n                \"isFirstTimeUser\": false,\n                \"associations\": {},\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": null,\n                \"location\": \"-1\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 211,\n        \"limit\": 20,\n        \"offset\": 0\n    }\n}"},{"id":"44ac2b08-ecc4-4bf5-97c0-ed0b4a9098c8","name":"My List Sparse Fieldsets","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist?page[limit]=2&includeAssociations[]=user&field=[id,assignedTeams,callInstruction,isMandatory]&field[user]=[id,name]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist"],"query":[{"key":"page[limit]","value":"2"},{"key":"includeAssociations[]","value":"user"},{"key":"field","value":"[id,assignedTeams,callInstruction,isMandatory]"},{"key":"field[user]","value":"[id,name]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 9879,\n            \"assignedTeams\": null,\n            \"isMandatory\": false,\n            \"callInstruction\": \"Hi\\nRajesh\\nGood Morning\\nhave a nice day\",\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 7548,\n            \"assignedTeams\": null,\n            \"isMandatory\": false,\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"user\": [\n            {\n                \"id\": 7424,\n                \"name\": \"API Client Manager\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 295,\n        \"limit\": 2,\n        \"offset\": 0\n    }\n}"},{"id":"7c926795-9e02-4232-81be-9f240f7ae365","name":"Teams List","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist?filter[user][id]=:[7432,7662]&filter[activeFlag]=Y&includeAssociations[]=user&sort[listName]=DESC&page[limit]=5","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist"],"query":[{"key":"filter[user][id]","value":":[7432,7662]"},{"key":"filter[activeFlag]","value":"Y"},{"key":"includeAssociations[]","value":"user"},{"key":"sort[listName]","value":"DESC"},{"key":"page[limit]","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 10251,\n            \"listName\": \"only.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"CST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"custom_phone_3\",\n                    \"custom_phone_2\",\n                    \"custom_phone_5\"\n                ],\n                \"callInstruction\": \"API Client Admin\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client User\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Admin\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"custom_phone_3\\\",\\\"custom_phone_2\\\",\\\"custom_phone_5\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"CST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-12T11:48:44Z\",\n            \"updatedDate\": \"2022-09-12T11:48:44Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7432\n                }\n            }\n        },\n        {\n            \"id\": 12648,\n            \"listName\": \"list_junit_yArOf.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668171528183.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-11-11T12:58:48Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7662\n                }\n            }\n        },\n        {\n            \"id\": 12469,\n            \"listName\": \"list_junit_Q3MZA.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1667916690702.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 3,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-11-08T14:11:32Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7432\n                }\n            }\n        },\n        {\n            \"id\": 12611,\n            \"listName\": \"list_junit_PGie5.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668167861709.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-11-11T11:57:42Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7662\n                }\n            }\n        },\n        {\n            \"id\": 12624,\n            \"listName\": \"list_junit_NVqlp.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668169105930.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": \"CSV\",\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-11-11T12:18:28Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": \"0\",\n            \"connectRate\": \"0\",\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7662\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"user\": [\n            {\n                \"id\": 7432,\n                \"sfUserId\": \"STD-8081\",\n                \"name\": \"API Client User\",\n                \"userType\": null,\n                \"loginName\": \"apiclientuser\",\n                \"email\": null,\n                \"userLicense\": \"TD,PD,CD,TC\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"Connect Leader\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 1\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": \"\",\n                \"isManagerUser\": \"N\",\n                \"lastProductType\": \"CD\",\n                \"lastProductUrl\": \"https://dev.koncert.com/clcti/ctiservice/\",\n                \"rcUrl\": null,\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"919600827949\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"Y\",\n                \"callRecordingUserPermission\": \"YYY\",\n                \"callRecordingEnabledByUser\": \"Y\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n                \"enableScheduleCheck\": \"Y\",\n                \"isAdminUser\": \"N\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": 5.50,\n                \"showAccountsBy\": null,\n                \"isTrucadenceLeftmenuExpanded\": true,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"lastExecutedDataListIds\": null,\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"Y\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"cl master\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2020-06-03T13:59:38Z\",\n                \"modifiedDate\": \"2022-10-26T10:37:38Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": \"all\",\n                \"displayName\": \"API Client User\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Impact\",\n                \"emailFontSize\": 36,\n                \"defaultCadenceWidgets\": null,\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": true,\n                \"isFirstTimeUser\": false,\n                \"associations\": {},\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": null,\n                \"location\": \"-1\"\n            },\n            {\n                \"id\": 7662,\n                \"sfUserId\": \"STD-10095\",\n                \"name\": \"API Client User 1\",\n                \"userType\": null,\n                \"loginName\": \"apiclientuser1\",\n                \"email\": null,\n                \"userLicense\": \"TD,PD,CD,TC\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"Connect Leader\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 1\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": \"\",\n                \"isManagerUser\": \"N\",\n                \"lastProductType\": \"PD\",\n                \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\n                \"rcUrl\": null,\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"N\",\n                \"callRecordingUserPermission\": \"NNN\",\n                \"callRecordingEnabledByUser\": \"N\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n                \"enableScheduleCheck\": \"Y\",\n                \"isAdminUser\": \"N\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": 0.00,\n                \"showAccountsBy\": null,\n                \"isTrucadenceLeftmenuExpanded\": true,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"lastExecutedDataListIds\": null,\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"Y\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"cl master\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2020-07-23T14:09:18Z\",\n                \"modifiedDate\": \"2022-10-11T14:29:33Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": false,\n                \"defaultActivityFilter\": null,\n                \"displayName\": \"API Client User 1\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": null,\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": false,\n                \"isFirstTimeUser\": false,\n                \"associations\": {},\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": null,\n                \"location\": \"-1\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 28,\n        \"limit\": 5,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"af9a89e1-be41-4662-a403-06c4535e0d7b"},{"name":"My List by Id","id":"f7dc0024-995b-467c-87c1-d0a7832bee39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/datalist/:id","description":"<p>This will return the data list details based on Id</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"1cf9a1e0-e20d-47e0-9d2a-bae0a1383318","type":"any","value":"Data List Id","key":"id"}]}},"response":[{"id":"defb833a-9665-4a76-bbda-6500ab7b0eb3","name":"My List by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/7548?filter[user][id]=7424&includeAssociations[]=user","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","7548"],"query":[{"key":"filter[user][id]","value":"7424"},{"key":"includeAssociations[]","value":"user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 7548,\n            \"listName\": \"vickyvignesh.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"vickyvignesh.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": \"2022-11-09T16:11:47Z\",\n            \"lastConnectedDate\": \"2022-11-09T16:12:21Z\",\n            \"totalDials\": 23,\n            \"totalConnects\": 9,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": \"<p>tested</p>\",\n            \"outreachStepIds\": null,\n            \"badData\": 9,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"PST\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": null,\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"ASC\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"account_name\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": \"\",\n                \"quartnarySortByRecordType\": \"\",\n                \"tertiarySortByRecordType\": \"\"\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": \"null\",\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2021-11-09T13:37:43Z\",\n            \"updatedDate\": \"2022-07-07T06:30:41Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 17,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 30,\n            \"usersMadeThisAsFavorite\": [\n                7424\n            ],\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"user\": [\n            {\n                \"id\": 7424,\n                \"sfUserId\": \"STD-7881\",\n                \"name\": \"API Client Manager\",\n                \"userType\": null,\n                \"loginName\": \"apiclientmanager\",\n                \"email\": null,\n                \"userLicense\": \"TD,CD,TC,CO,AIDML\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"Connect Leader\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 1\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": \"\",\n                \"isManagerUser\": \"Y\",\n                \"lastProductType\": \"PD\",\n                \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\n                \"rcUrl\": \"https://dev.koncert.com/remotecoach/rcserver\",\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"916380992206\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"N\",\n                \"callRecordingUserPermission\": \"YYY\",\n                \"callRecordingEnabledByUser\": \"N\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n                \"enableScheduleCheck\": \"Y\",\n                \"isAdminUser\": \"Y\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": 86.00,\n                \"showAccountsBy\": null,\n                \"isTrucadenceLeftmenuExpanded\": true,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"lastExecutedDataListIds\": null,\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"Y\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"cl master\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2020-06-02T08:20:09Z\",\n                \"modifiedDate\": \"2022-11-15T13:01:48Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": \"all\",\n                \"displayName\": \"API Client Manager\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": null,\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": 26158336,\n                \"apiEnabled\": false,\n                \"exportProspects\": true,\n                \"isFirstTimeUser\": false,\n                \"associations\": {},\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": null,\n                \"location\": \"-1\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f7dc0024-995b-467c-87c1-d0a7832bee39"},{"name":"All List","id":"a3f528f0-ccf3-4841-acb4-e65e4edf84a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/datalist/all","description":"<p>Get all the list imported from CSV, Cadence and CRM<br /><strong>Note:</strong> This will fetch data list based on userId and not based on teams or groups</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","all"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"026c4a90-93e6-451a-96b6-eccead9ca0a3","name":"All List","originalRequest":{"method":"GET","header":[],"url":{"raw":"datalist/all?filter[user][id]=7424&filter[listName]=(SW)list","host":["datalist"],"path":["all"],"query":[{"key":"filter[user][id]","value":"7424"},{"key":"filter[listName]","value":"(SW)list"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6252,\n            \"listName\": \"List 2  MRP project (2).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"List 2  MRP project (2).csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": \"2022-06-07T15:03:23Z\",\n            \"lastConnectedDate\": \"2022-06-07T15:01:22Z\",\n            \"totalDials\": 253,\n            \"totalConnects\": 60,\n            \"totalFollowUps\": 2,\n            \"totalRecords\": 24,\n            \"callScript\": \"<p>9876</p>\",\n            \"outreachStepIds\": null,\n            \"badData\": 2,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_4\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\",\\\"custom_phone_4\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2021-06-18T13:23:01Z\",\n            \"updatedDate\": \"2021-06-18T13:23:01Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 11,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 24,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12634,\n            \"listName\": \"list_junit_HbcYu.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668169911461.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T12:31:52Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12635,\n            \"listName\": \"list_junit_YN76n.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668169913288.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T12:31:54Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12636,\n            \"listName\": \"list_junit_59MGb.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668169914641.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T12:31:55Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12643,\n            \"listName\": \"list_junit_lRNHK.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668171284111.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T12:54:45Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12644,\n            \"listName\": \"list_junit_Tv8eN.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668171285961.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T12:54:47Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12645,\n            \"listName\": \"list_junit_zrusl.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668171287162.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T12:54:48Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12701,\n            \"listName\": \"list_junit_9vSPP.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668173717322.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T13:35:18Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12704,\n            \"listName\": \"list_junit_LiAQ9.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668173722042.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T13:35:22Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12705,\n            \"listName\": \"list_junit_TcKgd.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668173722953.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T13:35:23Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12579,\n            \"listName\": \"list_junit_rp0S1.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668162562099.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T10:29:23Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12580,\n            \"listName\": \"list_junit_d0lN8.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668162564751.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T10:29:26Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12581,\n            \"listName\": \"list_junit_HBKFN.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668162566274.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T10:29:27Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12742,\n            \"listName\": \"list_junit_NFf1G.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668173971958.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T13:39:33Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 8929,\n            \"listName\": \"List 2  MRP project(491).csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"List 2  MRP project.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 24,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"custom_phone_3\",\n                    \"custom_phone_5\",\n                    \"custom_phone_2\",\n                    \"custom_phone_1\",\n                    \"phone\",\n                    \"custom_phone_4\",\n                    \"custom_phone_5\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_4\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"API Client Manager\\nAPI Client\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"API Client Manager\\nAPI Client\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"custom_phone_3\\\",\\\"custom_phone_5\\\",\\\"custom_phone_2\\\",\\\"custom_phone_1\\\",\\\"phone\\\",\\\"custom_phone_4\\\",\\\"custom_phone_5\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_4\\\",\\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"EST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-04-12T13:24:29Z\",\n            \"updatedDate\": \"2022-04-12T13:24:29Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12745,\n            \"listName\": \"list_junit_jO2rM.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668173976505.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T13:39:37Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12587,\n            \"listName\": \"list_junit_f1p2S.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668163297460.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T10:41:39Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12588,\n            \"listName\": \"list_junit_ZHz8Y.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668163300305.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T10:41:42Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12746,\n            \"listName\": \"list_junit_KHL1C.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668173977682.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T13:39:38Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12589,\n            \"listName\": \"list_junit_q1BED.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668163302460.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T10:41:44Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12595,\n            \"listName\": \"list_junit_gYKxq.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668165195333.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T11:13:16Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12597,\n            \"listName\": \"list_junit_MAeIX.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668165198715.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T11:13:19Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12596,\n            \"listName\": \"list_junit_UhWE2.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668165197458.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T11:13:18Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12604,\n            \"listName\": \"list_junit_Na8XT.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668165913204.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T11:25:14Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        },\n        {\n            \"id\": 12605,\n            \"listName\": \"list_junit_8lvZ2.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"junit_test_1668165915285.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": true,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [\n                    \"7424\",\n                    \"7432\",\n                    \"7660\",\n                    \"7661\",\n                    \"7662\",\n                    \"7844\",\n                    \"7910\",\n                    \"7951\",\n                    \"8276\",\n                    \"9479\"\n                ],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\"\n                ],\n                \"callInstruction\": \"Good Morning\\nhave a nice day\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"API Client Manager 1\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Good Morning\\nhave a nice day\",\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": [\n                7424,\n                7432,\n                7660,\n                7661,\n                7662,\n                7844,\n                7910,\n                7951,\n                8276,\n                9479\n            ],\n            \"createdDate\": \"2022-11-11T11:25:16Z\",\n            \"updatedDate\": null,\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": \"prospect.firstName\",\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 29,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"},{"id":"55844f30-f322-4f51-8175-cdb87b19e448","name":"All List Sparse Fieldsets","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/all?filter[user][id]=7424&filter[listName]=(SW)list&filter[user][id]=7424&field=[id,listName]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","all"],"query":[{"key":"filter[user][id]","value":"7424"},{"key":"filter[listName]","value":"(SW)list"},{"key":"filter[user][id]","value":"7424"},{"key":"field","value":"[id,listName]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6252,\n            \"listName\": \"List 2  MRP project (2).csv\"\n        },\n        {\n            \"id\": 8929,\n            \"listName\": \"List 2  MRP project(491).csv\"\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"a3f528f0-ccf3-4841-acb4-e65e4edf84a2"},{"name":"Map Delete/Archive","id":"6cd0c59c-25f0-47d9-854c-5cc706b4c760","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/datalist/mapDeleteArchive?filter[id]=:[dataListIds]","description":"<p>Map Delete/Archive Action to the dataList</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","mapDeleteArchive"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>multiple dataList Ids</p>\n","type":"text/plain"},"key":"filter[id]","value":":[dataListIds]"}],"variable":[]}},"response":[{"id":"81bd970d-4f54-41e4-9157-7cc4bc80a25f","name":"Map Delete/Archive","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/mapDeleteArchive?filter[id]=:[6590,10761,11000]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","mapDeleteArchive"],"query":[{"key":"filter[id]","value":":[6590,10761,11000]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6590,\n            \"action\": \"delete,archive\"\n        },\n        {\n            \"id\": 10761,\n            \"action\": \"N/A\"\n        },\n        {\n            \"id\": 11000,\n            \"action\": \"archive\"\n        }\n    ]\n}"}],"_postman_id":"6cd0c59c-25f0-47d9-854c-5cc706b4c760"},{"name":"Audit Trail by Id","id":"d224eacd-8ad9-43e4-ab8b-fc9556744717","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/datalist/audit/:id","description":"<p>Get Audit Trail for each DataList</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","audit",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"6820ec33-c8d5-4ef0-9389-b68e7257ceab","type":"any","value":"DataList Id","key":"id"}]}},"response":[{"id":"b67b0266-6c8c-450f-a711-caa8d093fdaa","name":"Audit Trail by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/audit/9879?sort[eventDatetime]=DESC&includeAssociations[]=eventCreatedBy&page[limit]=5","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","audit","9879"],"query":[{"key":"sort[eventDatetime]","value":"DESC"},{"key":"includeAssociations[]","value":"eventCreatedBy"},{"key":"page[limit]","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 28445,\n            \"eventAction\": \"UPLOAD\",\n            \"eventDescription\": \"List was uploaded to session by API Client Manager\",\n            \"eventDatetime\": \"2022-11-11T11:48:38Z\",\n            \"eventActionOnUser\": [\n                7424\n            ],\n            \"additionalDetails\": {\n                \"listName\": \"key 6 records (1).csv\",\n                \"dataListId\": 9879,\n                \"listType\": \"Static\",\n                \"listCrmName\": \"File\",\n                \"isLeadPoolList\": null,\n                \"recordsAvailable\": 6,\n                \"recordsUploaded\": 0,\n                \"duplicateRecords\": 6,\n                \"missingFieldDetails\": {},\n                \"additionalFilterDetails\": {},\n                \"reportError\": \"\",\n                \"dialedFromRow\": null,\n                \"callerIdMode\": null,\n                \"callerIdList\": null,\n                \"selectedPhoneColumnsToDial\": null,\n                \"selectedTimezone\": null,\n                \"sortBy\": null,\n                \"dialingInstructions\": null\n            },\n            \"oldValue\": null,\n            \"newValue\": null,\n            \"fieldName\": null,\n            \"associations\": {\n                \"eventCreatedBy\": {\n                    \"id\": 7424\n                },\n                \"eventactiononuser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 28176,\n            \"eventAction\": \"BEGIN SESSION\",\n            \"eventDescription\": \"List was dialed with TD by API Client Manager\",\n            \"eventDatetime\": \"2022-11-09T16:05:49Z\",\n            \"eventActionOnUser\": [\n                7424\n            ],\n            \"additionalDetails\": {\n                \"listName\": \"key 6 records (1).csv\",\n                \"dataListId\": 9879,\n                \"listType\": null,\n                \"listCrmName\": null,\n                \"isLeadPoolList\": null,\n                \"recordsAvailable\": null,\n                \"recordsUploaded\": null,\n                \"duplicateRecords\": null,\n                \"missingFieldDetails\": null,\n                \"additionalFilterDetails\": null,\n                \"reportError\": null,\n                \"dialedFromRow\": 1,\n                \"callerIdMode\": \"UNBLOCK\",\n                \"callerIdList\": \"+19782961106 [US]\",\n                \"selectedPhoneColumnsToDial\": \"phone,custom_phone_3\",\n                \"selectedTimezone\": \"EST,CST,MST,PST\",\n                \"sortBy\": \"contact_name ASC NULLS FIRST\",\n                \"dialingInstructions\": \"API Client Manager\\nAPI Client\\n\\nHi\\nRajesh\\nGood Morning\\nhave a nice day\"\n            },\n            \"oldValue\": null,\n            \"newValue\": null,\n            \"fieldName\": null,\n            \"associations\": {\n                \"eventCreatedBy\": {\n                    \"id\": 7424\n                },\n                \"eventactiononuser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 28175,\n            \"eventAction\": \"BEGIN SESSION\",\n            \"eventDescription\": \"List was dialed with TD by API Client Manager\",\n            \"eventDatetime\": \"2022-11-09T16:05:01Z\",\n            \"eventActionOnUser\": [\n                7424\n            ],\n            \"additionalDetails\": {\n                \"listName\": \"key 6 records (1).csv\",\n                \"dataListId\": 9879,\n                \"listType\": null,\n                \"listCrmName\": null,\n                \"isLeadPoolList\": null,\n                \"recordsAvailable\": null,\n                \"recordsUploaded\": null,\n                \"duplicateRecords\": null,\n                \"missingFieldDetails\": null,\n                \"additionalFilterDetails\": null,\n                \"reportError\": null,\n                \"dialedFromRow\": 1,\n                \"callerIdMode\": \"UNBLOCK\",\n                \"callerIdList\": \"+19782961106 [US],+19782961107 [US],+44442083423890 [GB],+442083423890 [GB],+19782961107 [US],+656567237101 [SG],+6567237101 [SG],+3333182288950 [FR],+33182288950 [FR],+19782961106 [US],+19782961107 [US],+17868900548 [US]\",\n                \"selectedPhoneColumnsToDial\": \"phone,custom_phone_3\",\n                \"selectedTimezone\": \"International\",\n                \"sortBy\": \"contact_name ASC NULLS FIRST\",\n                \"dialingInstructions\": \"API Client Manager\\nAPI Client\\n\\nHi\\nRajesh\\nGood Morning\\nhave a nice day\"\n            },\n            \"oldValue\": null,\n            \"newValue\": null,\n            \"fieldName\": null,\n            \"associations\": {\n                \"eventCreatedBy\": {\n                    \"id\": 7424\n                },\n                \"eventactiononuser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 27280,\n            \"eventAction\": \"UPLOAD\",\n            \"eventDescription\": \"List was uploaded to session by API Client Manager\",\n            \"eventDatetime\": \"2022-11-08T06:32:31Z\",\n            \"eventActionOnUser\": [\n                7424\n            ],\n            \"additionalDetails\": {\n                \"listName\": \"key 6 records (1).csv\",\n                \"dataListId\": 9879,\n                \"listType\": \"Static\",\n                \"listCrmName\": \"File\",\n                \"isLeadPoolList\": null,\n                \"recordsAvailable\": 6,\n                \"recordsUploaded\": 6,\n                \"duplicateRecords\": 0,\n                \"missingFieldDetails\": {},\n                \"additionalFilterDetails\": {},\n                \"reportError\": \"\",\n                \"dialedFromRow\": null,\n                \"callerIdMode\": null,\n                \"callerIdList\": null,\n                \"selectedPhoneColumnsToDial\": null,\n                \"selectedTimezone\": null,\n                \"sortBy\": null,\n                \"dialingInstructions\": null\n            },\n            \"oldValue\": null,\n            \"newValue\": null,\n            \"fieldName\": null,\n            \"associations\": {\n                \"eventCreatedBy\": {\n                    \"id\": 7424\n                },\n                \"eventactiononuser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": 27279,\n            \"eventAction\": \"UPLOAD\",\n            \"eventDescription\": \"List was uploaded to session by API Client Manager\",\n            \"eventDatetime\": \"2022-11-08T06:31:49Z\",\n            \"eventActionOnUser\": [\n                7424\n            ],\n            \"additionalDetails\": {\n                \"listName\": \"key 6 records (1).csv\",\n                \"dataListId\": 9879,\n                \"listType\": \"Static\",\n                \"listCrmName\": \"File\",\n                \"isLeadPoolList\": null,\n                \"recordsAvailable\": 6,\n                \"recordsUploaded\": 6,\n                \"duplicateRecords\": 0,\n                \"missingFieldDetails\": {},\n                \"additionalFilterDetails\": {},\n                \"reportError\": \"\",\n                \"dialedFromRow\": null,\n                \"callerIdMode\": null,\n                \"callerIdList\": null,\n                \"selectedPhoneColumnsToDial\": null,\n                \"selectedTimezone\": null,\n                \"sortBy\": null,\n                \"dialingInstructions\": null\n            },\n            \"oldValue\": null,\n            \"newValue\": null,\n            \"fieldName\": null,\n            \"associations\": {\n                \"eventCreatedBy\": {\n                    \"id\": 7424\n                },\n                \"eventactiononuser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"eventCreatedBy\": [\n            {\n                \"id\": 7424,\n                \"sfUserId\": \"STD-7881\",\n                \"name\": \"API Client Manager\",\n                \"userType\": null,\n                \"loginName\": \"apiclientmanager\",\n                \"email\": null,\n                \"userLicense\": \"TD,CD,TC,CO,AIDML\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \"Connect Leader\",\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 1\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 0,\n                \"transferUrl\": \"\",\n                \"isManagerUser\": \"Y\",\n                \"lastProductType\": \"PD\",\n                \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\n                \"rcUrl\": \"https://dev.koncert.com/remotecoach/rcserver\",\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"916380992206\",\n                \"isInternalUser\": \"N\",\n                \"isActive\": \"Y\",\n                \"callRecordingEnabledByManager\": \"N\",\n                \"callRecordingUserPermission\": \"YYY\",\n                \"callRecordingEnabledByUser\": \"N\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n                \"enableScheduleCheck\": \"Y\",\n                \"isAdminUser\": \"Y\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": 86.00,\n                \"showAccountsBy\": null,\n                \"isTrucadenceLeftmenuExpanded\": true,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": null,\n                \"lastExecutedDataListIds\": null,\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"Y\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"cl master\",\n                \"modifiedBy\": \"cl master\",\n                \"createdDate\": \"2020-06-02T08:20:09Z\",\n                \"modifiedDate\": \"2022-11-15T13:01:48Z\",\n                \"zipwhipSessionKey\": null,\n                \"regionId\": \"US_EAST_1\",\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": \"all\",\n                \"displayName\": \"API Client Manager\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": null,\n                \"openExternalLinksInNewWindow\": true,\n                \"hubspotUserId\": 26158336,\n                \"apiEnabled\": false,\n                \"exportProspects\": true,\n                \"isFirstTimeUser\": false,\n                \"associations\": {},\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": null,\n                \"location\": \"-1\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 132,\n        \"limit\": 5,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"d224eacd-8ad9-43e4-ab8b-fc9556744717"},{"name":"Update","id":"21e194ba-5785-4424-aabd-bfd425b3c3a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callInstruction\":\"Hey..\",\r\n    \"sortBy\":\"DESC\",\r\n    \"sortByColumn\":\"contact_name\",\r\n    \"phoneColumnsToDial\":\"phone\",\r\n    \"callerIdMode\":\"RANDOM\",\r\n    \"callerIds\": \"+19782961106 [US]\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist/:id","description":"<p>To update DataList Dialing Settings</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"9e10e198-b75f-4fd0-83c8-e82a3c5c1519","type":"any","value":"DataList Id","key":"id"}]}},"response":[{"id":"db2e0258-bac5-4a9e-9601-0314b659d8b1","name":"Update","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"callInstruction\": \"Hey..\",\r\n    \"sortBy\": \"DESC\",\r\n    \"sortByColumnName\": \"contact_name\",\r\n    \"phoneColumnsToDial\": \"phone\",\r\n    \"callerIdMode\": \"RANDOM\",\r\n    \"callerIds\": \"+19782961106 [US]\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/datalist/10414"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 10414,\n            \"listName\": \"Prospects 2.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"only 2.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": null,\n            \"lastConnectedDate\": null,\n            \"totalDials\": 0,\n            \"totalConnects\": 0,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 0,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"UK Local\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+19782961106 [US]\",\n                \"callerIdMode\": \"RANDOM\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": true,\n                \"voiceMessage\": \"rajeshkumarvm\",\n                \"phoneColumnsToDial\": [\n                    \"[\\\"phone\\\"]\"\n                ],\n                \"callInstruction\": \"Hey..\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"DESC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": true,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": \"\",\n                \"quartnarySortByRecordType\": \"\",\n                \"tertiarySortByRecordType\": \"\"\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"RANDOM\",\n            \"name\": \"API Client Manager\",\n            \"company\": \"API Client\",\n            \"callInstruction\": \"Hey..\",\n            \"voiceMessage\": \"rajeshkumarvm\",\n            \"initialGreeting\": null,\n            \"sortBy\": \"DESC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+19782961106 [US]\",\n            \"groupName\": null,\n            \"timezone\": \"UK Local\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-09-16T10:53:29Z\",\n            \"updatedDate\": \"2022-11-15T08:37:42Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 0,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        }\n    ]\n}"},{"id":"e6438c01-5d8b-4c52-8e9e-be619a3eac5e","name":"Update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callInstruction\": \"Hey..\",\r\n    \"sortBy\": \"DESC\",\r\n    \"sortByColumn\": \"contact_name\",\r\n    \"phoneColumnsToDial\": \"phone\",\r\n    \"callerIdMode\": \"RANDOM\",\r\n    \"callerIds\": \"+19782961106 [US]\",\r\n    \"allowDaPlayVm\": true,\r\n    \"recordMessages\": {\r\n        \"id\": 1551\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/datalist/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist",":id"],"variable":[{"key":"id","value":"DataList Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 12773,\n            \"listName\": \"100 Prospects.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"100 Prospects.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": \"2023-01-23T07:23:27Z\",\n            \"lastConnectedDate\": \"2023-01-23T07:22:51Z\",\n            \"totalDials\": 159,\n            \"totalConnects\": 69,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 100,\n            \"callScript\": \"<p>Helllo&nbsp; aadhe barse .. .!<br>Jai bolo ganesh<br>Baby onBoard......!!!<br><br></p>\",\n            \"outreachStepIds\": null,\n            \"badData\": 28,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": null,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+19782961106 [CA]\",\n                \"callerIdMode\": \"UNBLOCK\",\n                \"isRecommended\": null,\n                \"allowDaPlayVm\": true,\n                \"voiceMessage\": \"final12\",\n                \"phoneColumnsToDial\": [\n                    \"[\\\"phone\\\", \\\"custom_phone_1\\\", \\\"custom_phone_3\\\", \\\"custom_phone_4\\\"]\"\n                ],\n                \"callInstruction\": \"\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": \"\",\n                \"quartnarySortByRecordType\": \"\",\n                \"tertiarySortByRecordType\": \"\"\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": 6,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"UNBLOCK\",\n            \"name\": \"bb vv\",\n            \"company\": \"remoteBase Test\",\n            \"callInstruction\": \"\",\n            \"voiceMessage\": \"final12\",\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\", \\\"custom_phone_1\\\", \\\"custom_phone_3\\\", \\\"custom_phone_4\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+19782961106 [CA]\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2022-11-14T12:29:59Z\",\n            \"updatedDate\": \"2023-06-12T11:16:17Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 2,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": \"ASC\",\n            \"totalUniqueDials\": 76,\n            \"usersMadeThisAsFavorite\": [\n                11271\n            ],\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": null,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 11271\n                }\n            },\n            \"badDataRate\": null,\n            \"mappingData\": \"{\\\"account_name\\\":\\\"Account name\\\",\\\"first_name\\\":\\\"First name\\\",\\\"last_name\\\":\\\"Last name\\\",\\\"phone\\\":\\\"Phone\\\",\\\"city\\\":\\\"City\\\",\\\"state\\\":\\\"State\\\"}\",\n            \"timeGapBetweenEachAttempt\": 0,\n            \"timeGapBetweenEachPhoneColumn\": 0\n        }\n    ]\n}"}],"_postman_id":"21e194ba-5785-4424-aabd-bfd425b3c3a7"},{"name":"Reset LPS","id":"64e7faab-fc50-48fc-a41b-2ddb01dc711b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/datalist/lpsReset/:id","description":"<p>To reset the lead pool list</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","lpsReset",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"500d93c2-a431-4d79-9566-eceb60b9ea32","name":"Reset LPS","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/lpsReset/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","lpsReset",":id"],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 9159,\n            \"requestId\": \"f2d0d6cf-69f8-3bf3-8e55-bb64fb3a3d16\",\n            \"type\": \"manual_reset_lps\",\n            \"status\": \"in_progress\",\n            \"startDateTime\": \"2024-05-31T11:58:57Z\",\n            \"endDateTime\": null,\n            \"description\": \"INITIATE IMPORT LPS\",\n            \"submitted\": null,\n            \"processed\": null,\n            \"source\": null,\n            \"dataListId\": [\n                23367\n            ],\n            \"response\": null,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 14525\n                    }\n                ],\n                \"dataList\": [\n                    {\n                        \"id\": 23367\n                    }\n                ]\n            }\n        }\n    ],\n    \"requestId\": \"f2d0d6cf-69f8-3bf3-8e55-bb64fb3a3d16\"\n}"}],"_postman_id":"64e7faab-fc50-48fc-a41b-2ddb01dc711b"},{"name":"Recently Used","id":"b5f36e7b-e863-4272-955b-0876a3021071","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/datalist/recent?filter[listCrmName]=:[System,Dynamic,File,salesloft,Salesforce,gong,File,Cadence]&filter[isLeadPoolList]=false&filter[enrichmentOnly]=false","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["datalist","recent"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[listCrmName]","value":":[System,Dynamic,File,salesloft,Salesforce,gong,File,Cadence]"},{"key":"filter[isLeadPoolList]","value":"false"},{"key":"filter[enrichmentOnly]","value":"false"}],"variable":[]}},"response":[{"id":"638626c3-1251-481b-a8e3-0fdd3c858a37","name":"Recently Used","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/datalist/recent?filter[listCrmName]=:[System,Dynamic,File,salesloft,Salesforce,gong,File,Cadence]&filter[isLeadPoolList]=false&filter[enrichmentOnly]=false","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["datalist","recent"],"query":[{"key":"filter[listCrmName]","value":":[System,Dynamic,File,salesloft,Salesforce,gong,File,Cadence]"},{"key":"filter[isLeadPoolList]","value":"false"},{"key":"filter[enrichmentOnly]","value":"false"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 42009,\n            \"listName\": \"10_Admin US Hotel List.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"10_Admin US Hotel List.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": \"2025-11-17T05:31:37Z\",\n            \"lastConnectedDate\": \"2025-11-14T06:28:20Z\",\n            \"totalDials\": 16,\n            \"totalConnects\": 3,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 10,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"+19782961106 [US],+19782961107 [US],+17894561230 [US],+17894561230 [US]\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_1\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": 5,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"Veerapandiyan V\",\n            \"company\": \"Veera Salesforce Orgs\",\n            \"callInstruction\": null,\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\", \\\"custom_phone_1\\\", \\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": \"+19782961106 [US],+19782961107 [US],+17894561230 [US],+17894561230 [US]\",\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2025-11-12T09:03:10Z\",\n            \"updatedDate\": \"2025-11-12T09:03:10Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 2,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": null,\n            \"totalUniqueDials\": 8,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"apolloCadenceId\": null,\n            \"apolloCadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 14525\n                }\n            },\n            \"badDataRate\": null,\n            \"mappingData\": \"{\\\"email_id\\\":\\\"Email\\\",\\\"contact_name\\\":\\\"Contact Name\\\",\\\"extension\\\":\\\"Extension\\\",\\\"activity_comments\\\":\\\"Comments\\\",\\\"city\\\":\\\"City\\\",\\\"subject\\\":\\\"Subject\\\",\\\"sf_report_name\\\":\\\"Report Name\\\",\\\"last_name\\\":\\\"Last Name\\\",\\\"extension_custom_phone_1\\\":\\\"Mobile Extension\\\",\\\"title\\\":\\\"Title\\\",\\\"record_type\\\":\\\"Record Type\\\",\\\"custom_phone_1\\\":\\\"Mobile\\\",\\\"website_url\\\":\\\"Website / Website URL\\\",\\\"phone\\\":\\\"Phone\\\",\\\"account_name\\\":\\\"Account Name\\\",\\\"state\\\":\\\"State\\\",\\\"linkedin_url\\\":\\\"Linkedin URL\\\",\\\"first_name\\\":\\\"First Name\\\"}\",\n            \"timeGapBetweenEachAttempt\": 15,\n            \"timeGapBetweenEachPhoneColumn\": 15,\n            \"lastUploadedDateTime\": \"2025-11-17T05:30:46.000Z\",\n            \"archivedDate\": null,\n            \"reset\": false,\n            \"listMergeIds\": null,\n            \"thirdPartyCrmStepNameVmName\": null,\n            \"canAgentsPlayVm\": false,\n            \"leadPoolStats\": null,\n            \"dialingSession\": false,\n            \"internalList\": false,\n            \"smartList\": false,\n            \"allowOvernightReset\": false,\n            \"thirdPartyCrmStepName\": null,\n            \"tag\": null,\n            \"smartListStartDate\": null,\n            \"smartListEndDate\": null,\n            \"aidNoOfMultipleLines\": 4,\n            \"enableVoicemail\": false,\n            \"enrichmentOnly\": false,\n            \"gongFlowId\": null\n        }\n    ]\n}"}],"_postman_id":"b5f36e7b-e863-4272-955b-0876a3021071"}],"id":"bb025ebb-8c3b-4ad9-abaf-0222a7cf3c03","description":"<p>My List will have different list of data imported from CSV, Cadence and CRM. These list can be uploaded to Dialing session.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>List Id</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>listName  <br /><code>String</code></td>\n<td>Name of the list</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>listType  <br /><code>String</code></td>\n<td>Type of the list. Allowed values are <code>Static, Dynamic, System, Cadence and Cadence FU</code></td>\n<td></td>\n</tr>\n<tr>\n<td>listCrmName  <br /><code>String</code></td>\n<td>CRM Name of the list. Allowed values are <code>File, Salesforce, Cadence, salesloft, Hubspot, outreach</code></td>\n<td></td>\n</tr>\n<tr>\n<td>listCrmReportName  <br /><code>String</code></td>\n<td>CRM Report Name of the list</td>\n<td></td>\n</tr>\n<tr>\n<td>listCrmReportUrl  <br /><code>String</code></td>\n<td>CRM Report Url of the list</td>\n<td></td>\n</tr>\n<tr>\n<td>activeFlag  <br /><code>String</code></td>\n<td>Status of the list. Allowed values are <code>'Y','N'</code></td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>textData  <br /><code>String</code></td>\n<td>Headers and first 5 rows of the List Content</td>\n<td></td>\n</tr>\n<tr>\n<td>mappingData  <br /><code>Json</code></td>\n<td>File Header fields and Koncert Fields</td>\n<td></td>\n</tr>\n<tr>\n<td>recordType  <br /><code>String</code></td>\n<td>Record type of the list. Allowed values are <code>Contact, Lead, Activity,Task</code></td>\n<td></td>\n</tr>\n<tr>\n<td>groupName  <br /><code>String Array</code></td>\n<td>Team users group name for the lead pool session</td>\n<td></td>\n</tr>\n<tr>\n<td>assignedUsers  <br /><code>Integer Array</code></td>\n<td>Team users Id for the lead pool session</td>\n<td></td>\n</tr>\n<tr>\n<td>status  <br /><code>String</code></td>\n<td>List menu . Allowed values are <code>'mylist' 'teamslist'</code></td>\n<td><code>Filterable</code>,<code>Readonly</code></td>\n</tr>\n<tr>\n<td>usersMadeThisAsFavorite  <br /><code>Integer Array</code></td>\n<td>users who are added the list as favorite</td>\n<td></td>\n</tr>\n<tr>\n<td>favorite  <br /><code>Boolean</code></td>\n<td>Add or remove favorite</td>\n<td><code>Filterable</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>User display name</td>\n<td></td>\n</tr>\n<tr>\n<td>Company  <br /><code>String</code></td>\n<td>Org ClientName</td>\n<td></td>\n</tr>\n<tr>\n<td>callInstruction  <br /><code>String</code></td>\n<td>Instruction to Dialing Agents</td>\n<td></td>\n</tr>\n<tr>\n<td>callerIdMode  <br /><code>String</code></td>\n<td>callerId Mode for the list</td>\n<td></td>\n</tr>\n<tr>\n<td>callerIds  <br /><code>String</code></td>\n<td>Mapped custom callerIds for the list</td>\n<td></td>\n</tr>\n<tr>\n<td>isLeadPoolList  <br /><code>Boolean</code></td>\n<td>Lead Pool Session for the list</td>\n<td></td>\n</tr>\n<tr>\n<td>assignedTeams  <br /><code>Integer Array</code></td>\n<td>Team Reporting userId for the lead pool session</td>\n<td></td>\n</tr>\n<tr>\n<td>timezone  <br /><code>String</code></td>\n<td>Mapped Timezones for the list</td>\n<td></td>\n</tr>\n<tr>\n<td>stepNo  <br /><code>Integer Array</code></td>\n<td>TouchNo of the cadence selected in cadence datalist</td>\n<td></td>\n</tr>\n<tr>\n<td>lastAttemptedDate  <br /><code>DateTime</code></td>\n<td>DataList dialing session dialed DateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>lastConnectedDate  <br /><code>DateTime</code></td>\n<td>DataList dialing session connected DateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>totalDials  <br /><code>Integer</code></td>\n<td>No of Dials made using the list</td>\n<td></td>\n</tr>\n<tr>\n<td>totalConnects  <br /><code>Integer</code></td>\n<td>No of connects made using the list</td>\n<td></td>\n</tr>\n<tr>\n<td>totalFollowUps  <br /><code>Integer</code></td>\n<td>No of followups using the list</td>\n<td></td>\n</tr>\n<tr>\n<td>totalRecords  <br /><code>Integer</code></td>\n<td>No of records in the list</td>\n<td></td>\n</tr>\n<tr>\n<td>callScript  <br /><code>String</code></td>\n<td>Call Script</td>\n<td></td>\n</tr>\n<tr>\n<td>outreachStepIds  <br /><code>Integer Array</code></td>\n<td>Outreach StepIds</td>\n<td></td>\n</tr>\n<tr>\n<td>badData  <br /><code>Integer</code></td>\n<td>No of badData ( based on dispositons ) using the list</td>\n<td></td>\n</tr>\n<tr>\n<td>dialingMetaData  <br /><code>Json</code></td>\n<td>List Dialing Settings Information</td>\n<td></td>\n</tr>\n<tr>\n<td>voiceMessage  <br /><code>String</code></td>\n<td>Recorded voice messages</td>\n<td></td>\n</tr>\n<tr>\n<td>callInstruction  <br /><code>Json</code></td>\n<td>Dialing Instruction</td>\n<td></td>\n</tr>\n<tr>\n<td>sortBy  <br /><code>String</code></td>\n<td>Sort Order</td>\n<td></td>\n</tr>\n<tr>\n<td>sortByColumnName  <br /><code>String</code></td>\n<td>Sort ColumnName</td>\n<td></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>DateTime</code></td>\n<td>List Created Date Time</td>\n<td></td>\n</tr>\n<tr>\n<td>modifiedDate  <br /><code>DateTime</code></td>\n<td>List Modified Date Time</td>\n<td></td>\n</tr>\n<tr>\n<td>coverage  <br /><code>String</code></td>\n<td>Percentage of totalUniqueDials and totalRecords</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>averageDialAttempts  <br /><code>Integer</code></td>\n<td>Average of contact attempt count</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>connectRate  <br /><code>String</code></td>\n<td>Percentage of totalConnects and totalDials</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>badDataRate  <br /><code>Integer</code></td>\n<td>Percentage of totalBadData and totalDials</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>User  <br /><code>Object</code></td>\n<td>Owner of the List</td>\n<td><code>Filterable</code>  <br /><code>Sortable IncludeAssociations</code></td>\n</tr>\n<tr>\n<td>Cadence  <br /><code>Object</code></td>\n<td>DataList Imported from Cadence</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"bb025ebb-8c3b-4ad9-abaf-0222a7cf3c03","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"My Session","item":[{"name":"Dialing Session","item":[{"name":"Register","id":"6902293e-2e3a-4853-83ae-b480e70669bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/mysession/register","description":"<p>Register with dialerServer</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","register"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"e4247d3e-71cd-4950-b31c-9e6f3f86fdf4","name":"Register","originalRequest":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/mysession/register"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"dialCode\": \"223-203-8778\",\n            \"accessCode\": \"582-200-270\",\n            \"externalCampaignId\": \"5797_del_124835_del_dialers_api_del_AIDSL\",\n            \"product\": \"AIDSL\",\n            \"clientId\": \"dialers_api\",\n            \"dialerAuthKey\": \"EPPlVchWxVANx7hazvJN-4vjk2VhXvsE\",\n            \"dialerServerUrl\": \"https://developmentds.koncert.com/aidialerserver/dialerserver\"\n        }\n    ]\n}"}],"_postman_id":"6902293e-2e3a-4853-83ae-b480e70669bf"},{"name":"CallMe","id":"8bedf717-a808-4f71-bb43-ee148c61353e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"isCountryCodePrefixed\": true,\r\n    \"phoneNumber\": 919600827949,\r\n    \"externalCampaignId\": \"5314_del_122858_del_dialers_api_del_AIDSL\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/callMe","description":"<p>Setup call me to join the conference</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","callMe"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"825f71f6-4454-4fcd-a601-2402d9acf8f6","name":"callMe","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"isCountryCodePrefixed\": true,\r\n    \"phoneNumber\": 919600827949,\r\n    \"externalCampaignId\": \"5314_del_122858_del_dialers_api_del_AIDSL\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/callMe"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"8bedf717-a808-4f71-bb43-ee148c61353e"},{"name":"Begin Dialing","id":"b5b3373e-f25e-495c-af5a-dc9baeee3643","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"5314_del_122858_del_dialers_api_del_AIDSL\",\r\n    \"startDialingType\": \"fromTheBeginning\",\r\n    \"dialingData\": {\r\n        \"timezone\": \"EST,CST,MST\",\r\n        \"phoneColumnsToDial\": [\r\n            \"phone,custom_phone_1\"\r\n        ],\r\n        \"callerIdMode\": \"UNBLOCK\",\r\n        \"callerIds\": \"+1(978) 296-1107 [MA]\",\r\n        \"sortBy\": \"contact_name ASC NULLS FIRST\"\r\n    },\r\n    \"modeOfJoining\": \"manual\",\r\n    \"schedulerSession\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/beginDialing","description":"<p>To start dialing the records</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","beginDialing"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"9cda1b9e-94fb-4ef4-b9a8-a98c2a1f20b5","name":"Begin Dialing","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"5314_del_122858_del_dialers_api_del_AIDSL\",\r\n    \"startDialingType\": \"fromTheBeginning\",\r\n    \"dialingData\": {\r\n        \"timezone\": \"EST,CST,MST\",\r\n        \"phoneColumnsToDial\": [\r\n            \"phone,custom_phone_1\"\r\n        ],\r\n        \"callerIdMode\": \"UNBLOCK\",\r\n        \"callerIds\": \"+1(978) 296-1107 [MA]\",\r\n        \"sortBy\": \"contact_name ASC NULLS FIRST\"\r\n    },\r\n    \"modeOfJoining\": \"manual\",\r\n    \"schedulerSession\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/beginDialing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"b5b3373e-f25e-495c-af5a-dc9baeee3643"},{"name":"Obtain Records","id":"d39a039f-2da7-425a-b29e-f272072851b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/obtainRecords","description":"<p>To get the dialing session records by batch.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","obtainRecords"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"cab109d5-bd07-4573-afb2-e406b8dcebb5","name":"Obtain Records","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/obtainRecords"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"callListRecord\": {\n                \"id\": 1751629,\n                \"orgId\": 4772,\n                \"userId\": 10937,\n                \"crmId\": \"crmgenkey_427ae94f-9972-361a-99e8-19a3af465533\",\n                \"activityId\": null,\n                \"associations\": {\n                    \"dataList\": {\n                        \"id\": 10719\n                    }\n                },\n                \"recordType\": null,\n                \"accountName\": \"Britannia\",\n                \"contactName\": \"key1 Moon\",\n                \"timezone\": \"EST\",\n                \"phone\": \"(603) 952-2500\",\n                \"callflagPhone\": \"Y\",\n                \"metadataPhone\": null,\n                \"dialerFormattedPhone\": null,\n                \"title\": \"test engineer\",\n                \"city\": \"Chennai\",\n                \"state\": \"Tamilnadu\",\n                \"emailId\": \"moon1@gmail.com\",\n                \"extension\": null,\n                \"qnotes\": null,\n                \"sfReportName\": \"key 6 records (1)(1).csv\",\n                \"priorityValue\": 1,\n                \"tempPriorityValue\": 1,\n                \"reportPriority\": 1,\n                \"daCallDisposition\": null,\n                \"talkerCallDisposition\": null,\n                \"daCallComments\": null,\n                \"talkerCallComments\": null,\n                \"subject\": null,\n                \"isReferralOrInboundLeadRecord\": false,\n                \"liveConversationRateScore\": null,\n                \"technologyDataBasedScore\": null,\n                \"intentDataBasedScore\": null,\n                \"companyScore\": null,\n                \"leadScore\": 0,\n                \"rowProcessedFlag\": \"Y\",\n                \"dialedFlag\": \"N\",\n                \"directPhoneAvailabilityScore\": null,\n                \"recentlyVerifiedScore\": null,\n                \"contactabiltyScore\": null,\n                \"firstName\": \"key1\",\n                \"lastName\": \"Moon\",\n                \"isLeadScoreProcessed\": \"N\",\n                \"activityDatetime\": null,\n                \"customVarchar1\": null,\n                \"customVarchar2\": null,\n                \"customVarchar3\": null,\n                \"customVarchar4\": null,\n                \"customVarchar5\": null,\n                \"customVarchar6\": null,\n                \"customVarchar7\": null,\n                \"customVarchar8\": null,\n                \"customVarchar9\": null,\n                \"customVarchar10\": null,\n                \"customVarchar11\": null,\n                \"customVarchar12\": null,\n                \"customVarchar13\": null,\n                \"customVarchar14\": null,\n                \"customVarchar15\": null,\n                \"customVarchar16\": null,\n                \"customVarchar17\": null,\n                \"customVarchar18\": null,\n                \"customVarchar19\": null,\n                \"customVarchar20\": null,\n                \"customPhone1\": \"(603) 386-0304\",\n                \"customPhone2\": null,\n                \"customPhone3\": null,\n                \"customPhone4\": null,\n                \"customPhone5\": null,\n                \"callflagCustomPhone1\": \"Y\",\n                \"callflagCustomPhone2\": \"Y\",\n                \"callflagCustomPhone3\": \"Y\",\n                \"callflagCustomPhone4\": \"Y\",\n                \"callflagCustomPhone5\": \"Y\",\n                \"metadataCustomPhone1\": null,\n                \"metadataCustomPhone2\": null,\n                \"metadataCustomPhone3\": null,\n                \"metadataCustomPhone4\": null,\n                \"metadataCustomPhone5\": null,\n                \"dialerFormattedCustomPhone1\": null,\n                \"dialerFormattedCustomPhone2\": null,\n                \"dialerFormattedCustomPhone3\": null,\n                \"dialerFormattedCustomPhone4\": null,\n                \"dialerFormattedCustomPhone5\": null,\n                \"customNumeric1\": null,\n                \"customNumeric2\": null,\n                \"customNumeric3\": null,\n                \"customNumeric4\": null,\n                \"customNumeric5\": null,\n                \"customInteger1\": null,\n                \"customInteger2\": null,\n                \"customInteger3\": null,\n                \"customInteger4\": null,\n                \"customInteger5\": null,\n                \"customDate1\": null,\n                \"customDate2\": null,\n                \"customDate3\": null,\n                \"customDate4\": null,\n                \"customDate5\": null,\n                \"customTimestamp1\": null,\n                \"customTimestamp2\": null,\n                \"customTimestamp3\": null,\n                \"customTimestamp4\": null,\n                \"customTimestamp5\": null,\n                \"callerIdPhone\": null,\n                \"cadenceId\": null,\n                \"touchStepNo\": null,\n                \"memberCurrentTouchId\": null,\n                \"duedate\": null,\n                \"multiTouchId\": null,\n                \"customBoolean1\": null,\n                \"customBoolean2\": null,\n                \"customBoolean3\": null,\n                \"customBoolean4\": null,\n                \"customBoolean5\": null,\n                \"inboundRecordsPk\": null,\n                \"relationshipName\": null,\n                \"crmType\": null,\n                \"accountId\": null,\n                \"timezoneCustomPhone1\": \"EST\",\n                \"timezoneCustomPhone2\": null,\n                \"timezoneCustomPhone3\": null,\n                \"timezoneCustomPhone4\": null,\n                \"timezoneCustomPhone5\": null,\n                \"trucadenceMemberTaskId\": null,\n                \"callCounter\": null,\n                \"campaignName\": null,\n                \"currentTouchId\": null,\n                \"currentTouchType\": null,\n                \"emailCounter\": null,\n                \"firstDialedDate\": null,\n                \"firstEmailedDate\": null,\n                \"lastDaCallOutcome\": null,\n                \"lastDialedDate\": null,\n                \"lastEmailOutcome\": null,\n                \"lastEmailedDate\": null,\n                \"lastTalkerCallOutcome\": null,\n                \"lastTouchDateTime\": null,\n                \"linkedinUrl\": null,\n                \"optoutFlag\": false,\n                \"tag\": null,\n                \"activityComments\": null,\n                \"extensionCustomPhone1\": null,\n                \"extensionCustomPhone2\": null,\n                \"extensionCustomPhone3\": null,\n                \"extensionCustomPhone4\": null,\n                \"extensionCustomPhone5\": null,\n                \"totalEngagementScore\": 0,\n                \"customVarchar21\": null,\n                \"customVarchar22\": null,\n                \"customVarchar23\": null,\n                \"customVarchar24\": null,\n                \"customVarchar25\": null,\n                \"customVarchar26\": null,\n                \"customVarchar27\": null,\n                \"customVarchar28\": null,\n                \"customVarchar29\": null,\n                \"customVarchar30\": null,\n                \"customVarchar31\": null,\n                \"customVarchar32\": null,\n                \"customVarchar33\": null,\n                \"customVarchar34\": null,\n                \"customVarchar35\": null,\n                \"customDate6\": null,\n                \"customDate7\": null,\n                \"customDate8\": null,\n                \"customPhone6\": null,\n                \"callFlagCustomPhone6\": null,\n                \"metadataCustomPhone6\": null,\n                \"dialerFormattedCustomPhone6\": null,\n                \"timezoneCustomPhone6\": null,\n                \"extensionCustomPhone6\": null,\n                \"customPhone7\": null,\n                \"callFlagCustomPhone7\": null,\n                \"metadataCustomPhone7\": null,\n                \"dialerFormattedCustomPhone7\": null,\n                \"timezoneCustomPhone7\": null,\n                \"extensionCustomPhone7\": null,\n                \"customVarchar36\": null,\n                \"customPhone8\": null,\n                \"callFlagCustomPhone8\": null,\n                \"metadataCustomPhone8\": null,\n                \"dialerFormattedCustomPhone8\": null,\n                \"timezoneCustomPhone8\": null,\n                \"customPhone9\": null,\n                \"callFlagCustomPhone9\": null,\n                \"metadataCustomPhone9\": null,\n                \"dialerFormattedCustomPhone9\": null,\n                \"timezoneCustomPhone9\": null,\n                \"customPhone10\": null,\n                \"callFlagCustomPhone10\": null,\n                \"metadataCustomPhone10\": null,\n                \"dialerFormattedCustomPhone10\": null,\n                \"timezoneCustomPhone10\": null,\n                \"customVarchar37\": null,\n                \"customVarchar38\": null,\n                \"customVarchar39\": null,\n                \"customVarchar40\": null,\n                \"customVarchar41\": null,\n                \"customVarchar42\": null,\n                \"customVarchar43\": null,\n                \"customVarchar44\": null,\n                \"customVarchar45\": null,\n                \"customVarchar46\": null,\n                \"customVarchar47\": null,\n                \"customVarchar48\": null,\n                \"customVarchar49\": null,\n                \"customVarchar50\": null,\n                \"customDate9\": null,\n                \"customDate10\": null,\n                \"customDate11\": null,\n                \"customDate12\": null,\n                \"customDate13\": null,\n                \"customDate14\": null,\n                \"customDate15\": null,\n                \"customDate16\": null,\n                \"customDate17\": null,\n                \"customPhone11\": null,\n                \"callFlagCustomPhone11\": null,\n                \"metadataCustomPhone11\": null,\n                \"dialerFormattedCustomPhone11\": null,\n                \"timezoneCustomPhone11\": null,\n                \"customPhone12\": null,\n                \"callFlagCustomPhone12\": null,\n                \"metadataCustomPhone12\": null,\n                \"dialerFormattedCustomPhone12\": null,\n                \"timezoneCustomPhone12\": null,\n                \"customPhone13\": null,\n                \"callFlagCustomPhone13\": null,\n                \"metadataCustomPhone13\": null,\n                \"dialerFormattedCustomPhone13\": null,\n                \"timezoneCustomPhone13\": null,\n                \"customPhone14\": null,\n                \"callFlagCustomPhone14\": null,\n                \"metadataCustomPhone14\": null,\n                \"dialerFormattedCustomPhone14\": null,\n                \"timezoneCustomPhone14\": null,\n                \"customPhone15\": null,\n                \"callFlagCustomPhone15\": null,\n                \"metadataCustomPhone15\": null,\n                \"dialerFormattedCustomPhone15\": null,\n                \"timezoneCustomPhone15\": null,\n                \"customPhone16\": null,\n                \"callFlagCustomPhone16\": null,\n                \"metadataCustomPhone16\": null,\n                \"dialerFormattedCustomPhone16\": null,\n                \"timezoneCustomPhone16\": null,\n                \"customPhone17\": null,\n                \"callFlagCustomPhone17\": null,\n                \"metadataCustomPhone17\": null,\n                \"dialerFormattedCustomPhone17\": null,\n                \"timezoneCustomPhone17\": null,\n                \"customPhone18\": null,\n                \"callFlagCustomPhone18\": null,\n                \"metadataCustomPhone18\": null,\n                \"dialerFormattedCustomPhone18\": null,\n                \"timezoneCustomPhone18\": null,\n                \"customPhone19\": null,\n                \"callFlagCustomPhone19\": null,\n                \"metadataCustomPhone19\": null,\n                \"dialerFormattedCustomPhone19\": null,\n                \"timezoneCustomPhone19\": null,\n                \"modifiedDatetime\": null,\n                \"customDate18\": null,\n                \"customDate19\": null,\n                \"customDate20\": null,\n                \"customPhone20\": null,\n                \"callFlagCustomPhone20\": null,\n                \"metadataCustomPhone20\": null,\n                \"dialerFormattedCustomPhone20\": null,\n                \"timezoneCustomPhone20\": null,\n                \"extensionCustomPhone20\": null,\n                \"taskType\": null,\n                \"owner\": null,\n                \"isparkinglotrecord\": false,\n                \"rowId\": 1,\n                \"doNotCall\": false,\n                \"isDialable\": true\n            },\n            \"phoneInfo\": [\n                {\n                    \"columnName\": \"phone\",\n                    \"columnValue\": \"(603) 952-2500\",\n                    \"dialer_column_formatted_phone\": \"+16039522500_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_phone\": \"Y\"\n                },\n                {\n                    \"columnName\": \"custom_phone_1\",\n                    \"columnValue\": \"(603) 386-0304\",\n                    \"dialer_column_formatted_custom_phone_1\": \"+16033860304_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_custom_phone_1\": \"Y\"\n                }\n            ]\n        },\n        {\n            \"callListRecord\": {\n                \"id\": 1751630,\n                \"orgId\": 4772,\n                \"userId\": 10937,\n                \"crmId\": \"crmgenkey_0b27d155-b75d-3e44-8a95-b120828cdd05\",\n                \"activityId\": null,\n                \"associations\": {\n                    \"dataList\": {\n                        \"id\": 10719\n                    }\n                },\n                \"recordType\": null,\n                \"accountName\": \"Britannia\",\n                \"contactName\": \"key2 Moon\",\n                \"timezone\": \"EST\",\n                \"phone\": \"(603) 952-2500\",\n                \"callflagPhone\": \"Y\",\n                \"metadataPhone\": null,\n                \"dialerFormattedPhone\": null,\n                \"title\": \"test engineer\",\n                \"city\": \"Chennai\",\n                \"state\": \"Tamilnadu\",\n                \"emailId\": \"moon2@gmail.com\",\n                \"extension\": null,\n                \"qnotes\": null,\n                \"sfReportName\": \"key 6 records (1)(1).csv\",\n                \"priorityValue\": 1,\n                \"tempPriorityValue\": 1,\n                \"reportPriority\": 1,\n                \"daCallDisposition\": null,\n                \"talkerCallDisposition\": null,\n                \"daCallComments\": null,\n                \"talkerCallComments\": null,\n                \"subject\": null,\n                \"isReferralOrInboundLeadRecord\": false,\n                \"liveConversationRateScore\": null,\n                \"technologyDataBasedScore\": null,\n                \"intentDataBasedScore\": null,\n                \"companyScore\": null,\n                \"leadScore\": 0,\n                \"rowProcessedFlag\": \"Y\",\n                \"dialedFlag\": \"N\",\n                \"directPhoneAvailabilityScore\": null,\n                \"recentlyVerifiedScore\": null,\n                \"contactabiltyScore\": null,\n                \"firstName\": \"key2\",\n                \"lastName\": \"Moon\",\n                \"isLeadScoreProcessed\": \"N\",\n                \"activityDatetime\": null,\n                \"customVarchar1\": null,\n                \"customVarchar2\": null,\n                \"customVarchar3\": null,\n                \"customVarchar4\": null,\n                \"customVarchar5\": null,\n                \"customVarchar6\": null,\n                \"customVarchar7\": null,\n                \"customVarchar8\": null,\n                \"customVarchar9\": null,\n                \"customVarchar10\": null,\n                \"customVarchar11\": null,\n                \"customVarchar12\": null,\n                \"customVarchar13\": null,\n                \"customVarchar14\": null,\n                \"customVarchar15\": null,\n                \"customVarchar16\": null,\n                \"customVarchar17\": null,\n                \"customVarchar18\": null,\n                \"customVarchar19\": null,\n                \"customVarchar20\": null,\n                \"customPhone1\": \"(603) 386-0304\",\n                \"customPhone2\": null,\n                \"customPhone3\": null,\n                \"customPhone4\": null,\n                \"customPhone5\": null,\n                \"callflagCustomPhone1\": \"Y\",\n                \"callflagCustomPhone2\": \"Y\",\n                \"callflagCustomPhone3\": \"Y\",\n                \"callflagCustomPhone4\": \"Y\",\n                \"callflagCustomPhone5\": \"Y\",\n                \"metadataCustomPhone1\": null,\n                \"metadataCustomPhone2\": null,\n                \"metadataCustomPhone3\": null,\n                \"metadataCustomPhone4\": null,\n                \"metadataCustomPhone5\": null,\n                \"dialerFormattedCustomPhone1\": null,\n                \"dialerFormattedCustomPhone2\": null,\n                \"dialerFormattedCustomPhone3\": null,\n                \"dialerFormattedCustomPhone4\": null,\n                \"dialerFormattedCustomPhone5\": null,\n                \"customNumeric1\": null,\n                \"customNumeric2\": null,\n                \"customNumeric3\": null,\n                \"customNumeric4\": null,\n                \"customNumeric5\": null,\n                \"customInteger1\": null,\n                \"customInteger2\": null,\n                \"customInteger3\": null,\n                \"customInteger4\": null,\n                \"customInteger5\": null,\n                \"customDate1\": null,\n                \"customDate2\": null,\n                \"customDate3\": null,\n                \"customDate4\": null,\n                \"customDate5\": null,\n                \"customTimestamp1\": null,\n                \"customTimestamp2\": null,\n                \"customTimestamp3\": null,\n                \"customTimestamp4\": null,\n                \"customTimestamp5\": null,\n                \"callerIdPhone\": null,\n                \"cadenceId\": null,\n                \"touchStepNo\": null,\n                \"memberCurrentTouchId\": null,\n                \"duedate\": null,\n                \"multiTouchId\": null,\n                \"customBoolean1\": null,\n                \"customBoolean2\": null,\n                \"customBoolean3\": null,\n                \"customBoolean4\": null,\n                \"customBoolean5\": null,\n                \"inboundRecordsPk\": null,\n                \"relationshipName\": null,\n                \"crmType\": null,\n                \"accountId\": null,\n                \"timezoneCustomPhone1\": \"EST\",\n                \"timezoneCustomPhone2\": null,\n                \"timezoneCustomPhone3\": null,\n                \"timezoneCustomPhone4\": null,\n                \"timezoneCustomPhone5\": null,\n                \"trucadenceMemberTaskId\": null,\n                \"callCounter\": null,\n                \"campaignName\": null,\n                \"currentTouchId\": null,\n                \"currentTouchType\": null,\n                \"emailCounter\": null,\n                \"firstDialedDate\": null,\n                \"firstEmailedDate\": null,\n                \"lastDaCallOutcome\": null,\n                \"lastDialedDate\": null,\n                \"lastEmailOutcome\": null,\n                \"lastEmailedDate\": null,\n                \"lastTalkerCallOutcome\": null,\n                \"lastTouchDateTime\": null,\n                \"linkedinUrl\": null,\n                \"optoutFlag\": false,\n                \"tag\": null,\n                \"activityComments\": null,\n                \"extensionCustomPhone1\": null,\n                \"extensionCustomPhone2\": null,\n                \"extensionCustomPhone3\": null,\n                \"extensionCustomPhone4\": null,\n                \"extensionCustomPhone5\": null,\n                \"totalEngagementScore\": 0,\n                \"customVarchar21\": null,\n                \"customVarchar22\": null,\n                \"customVarchar23\": null,\n                \"customVarchar24\": null,\n                \"customVarchar25\": null,\n                \"customVarchar26\": null,\n                \"customVarchar27\": null,\n                \"customVarchar28\": null,\n                \"customVarchar29\": null,\n                \"customVarchar30\": null,\n                \"customVarchar31\": null,\n                \"customVarchar32\": null,\n                \"customVarchar33\": null,\n                \"customVarchar34\": null,\n                \"customVarchar35\": null,\n                \"customDate6\": null,\n                \"customDate7\": null,\n                \"customDate8\": null,\n                \"customPhone6\": null,\n                \"callFlagCustomPhone6\": null,\n                \"metadataCustomPhone6\": null,\n                \"dialerFormattedCustomPhone6\": null,\n                \"timezoneCustomPhone6\": null,\n                \"extensionCustomPhone6\": null,\n                \"customPhone7\": null,\n                \"callFlagCustomPhone7\": null,\n                \"metadataCustomPhone7\": null,\n                \"dialerFormattedCustomPhone7\": null,\n                \"timezoneCustomPhone7\": null,\n                \"extensionCustomPhone7\": null,\n                \"customVarchar36\": null,\n                \"customPhone8\": null,\n                \"callFlagCustomPhone8\": null,\n                \"metadataCustomPhone8\": null,\n                \"dialerFormattedCustomPhone8\": null,\n                \"timezoneCustomPhone8\": null,\n                \"customPhone9\": null,\n                \"callFlagCustomPhone9\": null,\n                \"metadataCustomPhone9\": null,\n                \"dialerFormattedCustomPhone9\": null,\n                \"timezoneCustomPhone9\": null,\n                \"customPhone10\": null,\n                \"callFlagCustomPhone10\": null,\n                \"metadataCustomPhone10\": null,\n                \"dialerFormattedCustomPhone10\": null,\n                \"timezoneCustomPhone10\": null,\n                \"customVarchar37\": null,\n                \"customVarchar38\": null,\n                \"customVarchar39\": null,\n                \"customVarchar40\": null,\n                \"customVarchar41\": null,\n                \"customVarchar42\": null,\n                \"customVarchar43\": null,\n                \"customVarchar44\": null,\n                \"customVarchar45\": null,\n                \"customVarchar46\": null,\n                \"customVarchar47\": null,\n                \"customVarchar48\": null,\n                \"customVarchar49\": null,\n                \"customVarchar50\": null,\n                \"customDate9\": null,\n                \"customDate10\": null,\n                \"customDate11\": null,\n                \"customDate12\": null,\n                \"customDate13\": null,\n                \"customDate14\": null,\n                \"customDate15\": null,\n                \"customDate16\": null,\n                \"customDate17\": null,\n                \"customPhone11\": null,\n                \"callFlagCustomPhone11\": null,\n                \"metadataCustomPhone11\": null,\n                \"dialerFormattedCustomPhone11\": null,\n                \"timezoneCustomPhone11\": null,\n                \"customPhone12\": null,\n                \"callFlagCustomPhone12\": null,\n                \"metadataCustomPhone12\": null,\n                \"dialerFormattedCustomPhone12\": null,\n                \"timezoneCustomPhone12\": null,\n                \"customPhone13\": null,\n                \"callFlagCustomPhone13\": null,\n                \"metadataCustomPhone13\": null,\n                \"dialerFormattedCustomPhone13\": null,\n                \"timezoneCustomPhone13\": null,\n                \"customPhone14\": null,\n                \"callFlagCustomPhone14\": null,\n                \"metadataCustomPhone14\": null,\n                \"dialerFormattedCustomPhone14\": null,\n                \"timezoneCustomPhone14\": null,\n                \"customPhone15\": null,\n                \"callFlagCustomPhone15\": null,\n                \"metadataCustomPhone15\": null,\n                \"dialerFormattedCustomPhone15\": null,\n                \"timezoneCustomPhone15\": null,\n                \"customPhone16\": null,\n                \"callFlagCustomPhone16\": null,\n                \"metadataCustomPhone16\": null,\n                \"dialerFormattedCustomPhone16\": null,\n                \"timezoneCustomPhone16\": null,\n                \"customPhone17\": null,\n                \"callFlagCustomPhone17\": null,\n                \"metadataCustomPhone17\": null,\n                \"dialerFormattedCustomPhone17\": null,\n                \"timezoneCustomPhone17\": null,\n                \"customPhone18\": null,\n                \"callFlagCustomPhone18\": null,\n                \"metadataCustomPhone18\": null,\n                \"dialerFormattedCustomPhone18\": null,\n                \"timezoneCustomPhone18\": null,\n                \"customPhone19\": null,\n                \"callFlagCustomPhone19\": null,\n                \"metadataCustomPhone19\": null,\n                \"dialerFormattedCustomPhone19\": null,\n                \"timezoneCustomPhone19\": null,\n                \"modifiedDatetime\": null,\n                \"customDate18\": null,\n                \"customDate19\": null,\n                \"customDate20\": null,\n                \"customPhone20\": null,\n                \"callFlagCustomPhone20\": null,\n                \"metadataCustomPhone20\": null,\n                \"dialerFormattedCustomPhone20\": null,\n                \"timezoneCustomPhone20\": null,\n                \"extensionCustomPhone20\": null,\n                \"taskType\": null,\n                \"owner\": null,\n                \"isparkinglotrecord\": false,\n                \"rowId\": 2,\n                \"doNotCall\": false,\n                \"isDialable\": true\n            },\n            \"phoneInfo\": [\n                {\n                    \"columnName\": \"phone\",\n                    \"columnValue\": \"(603) 952-2500\",\n                    \"dialer_column_formatted_phone\": \"+16039522500_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_phone\": \"Y\"\n                },\n                {\n                    \"columnName\": \"custom_phone_1\",\n                    \"columnValue\": \"(603) 386-0304\",\n                    \"dialer_column_formatted_custom_phone_1\": \"+16033860304_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_custom_phone_1\": \"Y\"\n                }\n            ]\n        },\n        {\n            \"callListRecord\": {\n                \"id\": 1751631,\n                \"orgId\": 4772,\n                \"userId\": 10937,\n                \"crmId\": \"crmgenkey_2aba9314-84bb-33a7-9958-91b9505aec37\",\n                \"activityId\": null,\n                \"associations\": {\n                    \"dataList\": {\n                        \"id\": 10719\n                    }\n                },\n                \"recordType\": null,\n                \"accountName\": \"Britannia\",\n                \"contactName\": \"key3 Moon\",\n                \"timezone\": \"EST\",\n                \"phone\": \"(603) 952-2500\",\n                \"callflagPhone\": \"Y\",\n                \"metadataPhone\": null,\n                \"dialerFormattedPhone\": null,\n                \"title\": \"test engineer\",\n                \"city\": \"Chennai\",\n                \"state\": \"Tamilnadu\",\n                \"emailId\": \"moon3@gmail.com\",\n                \"extension\": null,\n                \"qnotes\": null,\n                \"sfReportName\": \"key 6 records (1)(1).csv\",\n                \"priorityValue\": 1,\n                \"tempPriorityValue\": 1,\n                \"reportPriority\": 1,\n                \"daCallDisposition\": null,\n                \"talkerCallDisposition\": null,\n                \"daCallComments\": null,\n                \"talkerCallComments\": null,\n                \"subject\": null,\n                \"isReferralOrInboundLeadRecord\": false,\n                \"liveConversationRateScore\": null,\n                \"technologyDataBasedScore\": null,\n                \"intentDataBasedScore\": null,\n                \"companyScore\": null,\n                \"leadScore\": 0,\n                \"rowProcessedFlag\": \"Y\",\n                \"dialedFlag\": \"N\",\n                \"directPhoneAvailabilityScore\": null,\n                \"recentlyVerifiedScore\": null,\n                \"contactabiltyScore\": null,\n                \"firstName\": \"key3\",\n                \"lastName\": \"Moon\",\n                \"isLeadScoreProcessed\": \"N\",\n                \"activityDatetime\": null,\n                \"customVarchar1\": null,\n                \"customVarchar2\": null,\n                \"customVarchar3\": null,\n                \"customVarchar4\": null,\n                \"customVarchar5\": null,\n                \"customVarchar6\": null,\n                \"customVarchar7\": null,\n                \"customVarchar8\": null,\n                \"customVarchar9\": null,\n                \"customVarchar10\": null,\n                \"customVarchar11\": null,\n                \"customVarchar12\": null,\n                \"customVarchar13\": null,\n                \"customVarchar14\": null,\n                \"customVarchar15\": null,\n                \"customVarchar16\": null,\n                \"customVarchar17\": null,\n                \"customVarchar18\": null,\n                \"customVarchar19\": null,\n                \"customVarchar20\": null,\n                \"customPhone1\": \"(603) 386-0304\",\n                \"customPhone2\": null,\n                \"customPhone3\": null,\n                \"customPhone4\": null,\n                \"customPhone5\": null,\n                \"callflagCustomPhone1\": \"Y\",\n                \"callflagCustomPhone2\": \"Y\",\n                \"callflagCustomPhone3\": \"Y\",\n                \"callflagCustomPhone4\": \"Y\",\n                \"callflagCustomPhone5\": \"Y\",\n                \"metadataCustomPhone1\": null,\n                \"metadataCustomPhone2\": null,\n                \"metadataCustomPhone3\": null,\n                \"metadataCustomPhone4\": null,\n                \"metadataCustomPhone5\": null,\n                \"dialerFormattedCustomPhone1\": null,\n                \"dialerFormattedCustomPhone2\": null,\n                \"dialerFormattedCustomPhone3\": null,\n                \"dialerFormattedCustomPhone4\": null,\n                \"dialerFormattedCustomPhone5\": null,\n                \"customNumeric1\": null,\n                \"customNumeric2\": null,\n                \"customNumeric3\": null,\n                \"customNumeric4\": null,\n                \"customNumeric5\": null,\n                \"customInteger1\": null,\n                \"customInteger2\": null,\n                \"customInteger3\": null,\n                \"customInteger4\": null,\n                \"customInteger5\": null,\n                \"customDate1\": null,\n                \"customDate2\": null,\n                \"customDate3\": null,\n                \"customDate4\": null,\n                \"customDate5\": null,\n                \"customTimestamp1\": null,\n                \"customTimestamp2\": null,\n                \"customTimestamp3\": null,\n                \"customTimestamp4\": null,\n                \"customTimestamp5\": null,\n                \"callerIdPhone\": null,\n                \"cadenceId\": null,\n                \"touchStepNo\": null,\n                \"memberCurrentTouchId\": null,\n                \"duedate\": null,\n                \"multiTouchId\": null,\n                \"customBoolean1\": null,\n                \"customBoolean2\": null,\n                \"customBoolean3\": null,\n                \"customBoolean4\": null,\n                \"customBoolean5\": null,\n                \"inboundRecordsPk\": null,\n                \"relationshipName\": null,\n                \"crmType\": null,\n                \"accountId\": null,\n                \"timezoneCustomPhone1\": \"EST\",\n                \"timezoneCustomPhone2\": null,\n                \"timezoneCustomPhone3\": null,\n                \"timezoneCustomPhone4\": null,\n                \"timezoneCustomPhone5\": null,\n                \"trucadenceMemberTaskId\": null,\n                \"callCounter\": null,\n                \"campaignName\": null,\n                \"currentTouchId\": null,\n                \"currentTouchType\": null,\n                \"emailCounter\": null,\n                \"firstDialedDate\": null,\n                \"firstEmailedDate\": null,\n                \"lastDaCallOutcome\": null,\n                \"lastDialedDate\": null,\n                \"lastEmailOutcome\": null,\n                \"lastEmailedDate\": null,\n                \"lastTalkerCallOutcome\": null,\n                \"lastTouchDateTime\": null,\n                \"linkedinUrl\": null,\n                \"optoutFlag\": false,\n                \"tag\": null,\n                \"activityComments\": null,\n                \"extensionCustomPhone1\": null,\n                \"extensionCustomPhone2\": null,\n                \"extensionCustomPhone3\": null,\n                \"extensionCustomPhone4\": null,\n                \"extensionCustomPhone5\": null,\n                \"totalEngagementScore\": 0,\n                \"customVarchar21\": null,\n                \"customVarchar22\": null,\n                \"customVarchar23\": null,\n                \"customVarchar24\": null,\n                \"customVarchar25\": null,\n                \"customVarchar26\": null,\n                \"customVarchar27\": null,\n                \"customVarchar28\": null,\n                \"customVarchar29\": null,\n                \"customVarchar30\": null,\n                \"customVarchar31\": null,\n                \"customVarchar32\": null,\n                \"customVarchar33\": null,\n                \"customVarchar34\": null,\n                \"customVarchar35\": null,\n                \"customDate6\": null,\n                \"customDate7\": null,\n                \"customDate8\": null,\n                \"customPhone6\": null,\n                \"callFlagCustomPhone6\": null,\n                \"metadataCustomPhone6\": null,\n                \"dialerFormattedCustomPhone6\": null,\n                \"timezoneCustomPhone6\": null,\n                \"extensionCustomPhone6\": null,\n                \"customPhone7\": null,\n                \"callFlagCustomPhone7\": null,\n                \"metadataCustomPhone7\": null,\n                \"dialerFormattedCustomPhone7\": null,\n                \"timezoneCustomPhone7\": null,\n                \"extensionCustomPhone7\": null,\n                \"customVarchar36\": null,\n                \"customPhone8\": null,\n                \"callFlagCustomPhone8\": null,\n                \"metadataCustomPhone8\": null,\n                \"dialerFormattedCustomPhone8\": null,\n                \"timezoneCustomPhone8\": null,\n                \"customPhone9\": null,\n                \"callFlagCustomPhone9\": null,\n                \"metadataCustomPhone9\": null,\n                \"dialerFormattedCustomPhone9\": null,\n                \"timezoneCustomPhone9\": null,\n                \"customPhone10\": null,\n                \"callFlagCustomPhone10\": null,\n                \"metadataCustomPhone10\": null,\n                \"dialerFormattedCustomPhone10\": null,\n                \"timezoneCustomPhone10\": null,\n                \"customVarchar37\": null,\n                \"customVarchar38\": null,\n                \"customVarchar39\": null,\n                \"customVarchar40\": null,\n                \"customVarchar41\": null,\n                \"customVarchar42\": null,\n                \"customVarchar43\": null,\n                \"customVarchar44\": null,\n                \"customVarchar45\": null,\n                \"customVarchar46\": null,\n                \"customVarchar47\": null,\n                \"customVarchar48\": null,\n                \"customVarchar49\": null,\n                \"customVarchar50\": null,\n                \"customDate9\": null,\n                \"customDate10\": null,\n                \"customDate11\": null,\n                \"customDate12\": null,\n                \"customDate13\": null,\n                \"customDate14\": null,\n                \"customDate15\": null,\n                \"customDate16\": null,\n                \"customDate17\": null,\n                \"customPhone11\": null,\n                \"callFlagCustomPhone11\": null,\n                \"metadataCustomPhone11\": null,\n                \"dialerFormattedCustomPhone11\": null,\n                \"timezoneCustomPhone11\": null,\n                \"customPhone12\": null,\n                \"callFlagCustomPhone12\": null,\n                \"metadataCustomPhone12\": null,\n                \"dialerFormattedCustomPhone12\": null,\n                \"timezoneCustomPhone12\": null,\n                \"customPhone13\": null,\n                \"callFlagCustomPhone13\": null,\n                \"metadataCustomPhone13\": null,\n                \"dialerFormattedCustomPhone13\": null,\n                \"timezoneCustomPhone13\": null,\n                \"customPhone14\": null,\n                \"callFlagCustomPhone14\": null,\n                \"metadataCustomPhone14\": null,\n                \"dialerFormattedCustomPhone14\": null,\n                \"timezoneCustomPhone14\": null,\n                \"customPhone15\": null,\n                \"callFlagCustomPhone15\": null,\n                \"metadataCustomPhone15\": null,\n                \"dialerFormattedCustomPhone15\": null,\n                \"timezoneCustomPhone15\": null,\n                \"customPhone16\": null,\n                \"callFlagCustomPhone16\": null,\n                \"metadataCustomPhone16\": null,\n                \"dialerFormattedCustomPhone16\": null,\n                \"timezoneCustomPhone16\": null,\n                \"customPhone17\": null,\n                \"callFlagCustomPhone17\": null,\n                \"metadataCustomPhone17\": null,\n                \"dialerFormattedCustomPhone17\": null,\n                \"timezoneCustomPhone17\": null,\n                \"customPhone18\": null,\n                \"callFlagCustomPhone18\": null,\n                \"metadataCustomPhone18\": null,\n                \"dialerFormattedCustomPhone18\": null,\n                \"timezoneCustomPhone18\": null,\n                \"customPhone19\": null,\n                \"callFlagCustomPhone19\": null,\n                \"metadataCustomPhone19\": null,\n                \"dialerFormattedCustomPhone19\": null,\n                \"timezoneCustomPhone19\": null,\n                \"modifiedDatetime\": null,\n                \"customDate18\": null,\n                \"customDate19\": null,\n                \"customDate20\": null,\n                \"customPhone20\": null,\n                \"callFlagCustomPhone20\": null,\n                \"metadataCustomPhone20\": null,\n                \"dialerFormattedCustomPhone20\": null,\n                \"timezoneCustomPhone20\": null,\n                \"extensionCustomPhone20\": null,\n                \"taskType\": null,\n                \"owner\": null,\n                \"isparkinglotrecord\": false,\n                \"rowId\": 3,\n                \"doNotCall\": false,\n                \"isDialable\": true\n            },\n            \"phoneInfo\": [\n                {\n                    \"columnName\": \"phone\",\n                    \"columnValue\": \"(603) 952-2500\",\n                    \"dialer_column_formatted_phone\": \"+16039522500_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_phone\": \"Y\"\n                },\n                {\n                    \"columnName\": \"custom_phone_1\",\n                    \"columnValue\": \"(603) 386-0304\",\n                    \"dialer_column_formatted_custom_phone_1\": \"+16033860304_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_custom_phone_1\": \"Y\"\n                }\n            ]\n        },\n        {\n            \"callListRecord\": {\n                \"id\": 1751632,\n                \"orgId\": 4772,\n                \"userId\": 10937,\n                \"crmId\": \"crmgenkey_218537d1-4aec-3366-ae41-e18c50b4ecc2\",\n                \"activityId\": null,\n                \"associations\": {\n                    \"dataList\": {\n                        \"id\": 10719\n                    }\n                },\n                \"recordType\": null,\n                \"accountName\": \"Britannia\",\n                \"contactName\": \"key4 Moon\",\n                \"timezone\": \"EST\",\n                \"phone\": \"(603) 952-2500\",\n                \"callflagPhone\": \"Y\",\n                \"metadataPhone\": null,\n                \"dialerFormattedPhone\": null,\n                \"title\": \"test engineer\",\n                \"city\": \"Chennai\",\n                \"state\": \"Tamilnadu\",\n                \"emailId\": \"moon4@gmail.com\",\n                \"extension\": null,\n                \"qnotes\": null,\n                \"sfReportName\": \"key 6 records (1)(1).csv\",\n                \"priorityValue\": 1,\n                \"tempPriorityValue\": 1,\n                \"reportPriority\": 1,\n                \"daCallDisposition\": null,\n                \"talkerCallDisposition\": null,\n                \"daCallComments\": null,\n                \"talkerCallComments\": null,\n                \"subject\": null,\n                \"isReferralOrInboundLeadRecord\": false,\n                \"liveConversationRateScore\": null,\n                \"technologyDataBasedScore\": null,\n                \"intentDataBasedScore\": null,\n                \"companyScore\": null,\n                \"leadScore\": 0,\n                \"rowProcessedFlag\": \"Y\",\n                \"dialedFlag\": \"N\",\n                \"directPhoneAvailabilityScore\": null,\n                \"recentlyVerifiedScore\": null,\n                \"contactabiltyScore\": null,\n                \"firstName\": \"key4\",\n                \"lastName\": \"Moon\",\n                \"isLeadScoreProcessed\": \"N\",\n                \"activityDatetime\": null,\n                \"customVarchar1\": null,\n                \"customVarchar2\": null,\n                \"customVarchar3\": null,\n                \"customVarchar4\": null,\n                \"customVarchar5\": null,\n                \"customVarchar6\": null,\n                \"customVarchar7\": null,\n                \"customVarchar8\": null,\n                \"customVarchar9\": null,\n                \"customVarchar10\": null,\n                \"customVarchar11\": null,\n                \"customVarchar12\": null,\n                \"customVarchar13\": null,\n                \"customVarchar14\": null,\n                \"customVarchar15\": null,\n                \"customVarchar16\": null,\n                \"customVarchar17\": null,\n                \"customVarchar18\": null,\n                \"customVarchar19\": null,\n                \"customVarchar20\": null,\n                \"customPhone1\": \"(603) 386-0304\",\n                \"customPhone2\": null,\n                \"customPhone3\": null,\n                \"customPhone4\": null,\n                \"customPhone5\": null,\n                \"callflagCustomPhone1\": \"Y\",\n                \"callflagCustomPhone2\": \"Y\",\n                \"callflagCustomPhone3\": \"Y\",\n                \"callflagCustomPhone4\": \"Y\",\n                \"callflagCustomPhone5\": \"Y\",\n                \"metadataCustomPhone1\": null,\n                \"metadataCustomPhone2\": null,\n                \"metadataCustomPhone3\": null,\n                \"metadataCustomPhone4\": null,\n                \"metadataCustomPhone5\": null,\n                \"dialerFormattedCustomPhone1\": null,\n                \"dialerFormattedCustomPhone2\": null,\n                \"dialerFormattedCustomPhone3\": null,\n                \"dialerFormattedCustomPhone4\": null,\n                \"dialerFormattedCustomPhone5\": null,\n                \"customNumeric1\": null,\n                \"customNumeric2\": null,\n                \"customNumeric3\": null,\n                \"customNumeric4\": null,\n                \"customNumeric5\": null,\n                \"customInteger1\": null,\n                \"customInteger2\": null,\n                \"customInteger3\": null,\n                \"customInteger4\": null,\n                \"customInteger5\": null,\n                \"customDate1\": null,\n                \"customDate2\": null,\n                \"customDate3\": null,\n                \"customDate4\": null,\n                \"customDate5\": null,\n                \"customTimestamp1\": null,\n                \"customTimestamp2\": null,\n                \"customTimestamp3\": null,\n                \"customTimestamp4\": null,\n                \"customTimestamp5\": null,\n                \"callerIdPhone\": null,\n                \"cadenceId\": null,\n                \"touchStepNo\": null,\n                \"memberCurrentTouchId\": null,\n                \"duedate\": null,\n                \"multiTouchId\": null,\n                \"customBoolean1\": null,\n                \"customBoolean2\": null,\n                \"customBoolean3\": null,\n                \"customBoolean4\": null,\n                \"customBoolean5\": null,\n                \"inboundRecordsPk\": null,\n                \"relationshipName\": null,\n                \"crmType\": null,\n                \"accountId\": null,\n                \"timezoneCustomPhone1\": \"EST\",\n                \"timezoneCustomPhone2\": null,\n                \"timezoneCustomPhone3\": null,\n                \"timezoneCustomPhone4\": null,\n                \"timezoneCustomPhone5\": null,\n                \"trucadenceMemberTaskId\": null,\n                \"callCounter\": null,\n                \"campaignName\": null,\n                \"currentTouchId\": null,\n                \"currentTouchType\": null,\n                \"emailCounter\": null,\n                \"firstDialedDate\": null,\n                \"firstEmailedDate\": null,\n                \"lastDaCallOutcome\": null,\n                \"lastDialedDate\": null,\n                \"lastEmailOutcome\": null,\n                \"lastEmailedDate\": null,\n                \"lastTalkerCallOutcome\": null,\n                \"lastTouchDateTime\": null,\n                \"linkedinUrl\": null,\n                \"optoutFlag\": false,\n                \"tag\": null,\n                \"activityComments\": null,\n                \"extensionCustomPhone1\": null,\n                \"extensionCustomPhone2\": null,\n                \"extensionCustomPhone3\": null,\n                \"extensionCustomPhone4\": null,\n                \"extensionCustomPhone5\": null,\n                \"totalEngagementScore\": 0,\n                \"customVarchar21\": null,\n                \"customVarchar22\": null,\n                \"customVarchar23\": null,\n                \"customVarchar24\": null,\n                \"customVarchar25\": null,\n                \"customVarchar26\": null,\n                \"customVarchar27\": null,\n                \"customVarchar28\": null,\n                \"customVarchar29\": null,\n                \"customVarchar30\": null,\n                \"customVarchar31\": null,\n                \"customVarchar32\": null,\n                \"customVarchar33\": null,\n                \"customVarchar34\": null,\n                \"customVarchar35\": null,\n                \"customDate6\": null,\n                \"customDate7\": null,\n                \"customDate8\": null,\n                \"customPhone6\": null,\n                \"callFlagCustomPhone6\": null,\n                \"metadataCustomPhone6\": null,\n                \"dialerFormattedCustomPhone6\": null,\n                \"timezoneCustomPhone6\": null,\n                \"extensionCustomPhone6\": null,\n                \"customPhone7\": null,\n                \"callFlagCustomPhone7\": null,\n                \"metadataCustomPhone7\": null,\n                \"dialerFormattedCustomPhone7\": null,\n                \"timezoneCustomPhone7\": null,\n                \"extensionCustomPhone7\": null,\n                \"customVarchar36\": null,\n                \"customPhone8\": null,\n                \"callFlagCustomPhone8\": null,\n                \"metadataCustomPhone8\": null,\n                \"dialerFormattedCustomPhone8\": null,\n                \"timezoneCustomPhone8\": null,\n                \"customPhone9\": null,\n                \"callFlagCustomPhone9\": null,\n                \"metadataCustomPhone9\": null,\n                \"dialerFormattedCustomPhone9\": null,\n                \"timezoneCustomPhone9\": null,\n                \"customPhone10\": null,\n                \"callFlagCustomPhone10\": null,\n                \"metadataCustomPhone10\": null,\n                \"dialerFormattedCustomPhone10\": null,\n                \"timezoneCustomPhone10\": null,\n                \"customVarchar37\": null,\n                \"customVarchar38\": null,\n                \"customVarchar39\": null,\n                \"customVarchar40\": null,\n                \"customVarchar41\": null,\n                \"customVarchar42\": null,\n                \"customVarchar43\": null,\n                \"customVarchar44\": null,\n                \"customVarchar45\": null,\n                \"customVarchar46\": null,\n                \"customVarchar47\": null,\n                \"customVarchar48\": null,\n                \"customVarchar49\": null,\n                \"customVarchar50\": null,\n                \"customDate9\": null,\n                \"customDate10\": null,\n                \"customDate11\": null,\n                \"customDate12\": null,\n                \"customDate13\": null,\n                \"customDate14\": null,\n                \"customDate15\": null,\n                \"customDate16\": null,\n                \"customDate17\": null,\n                \"customPhone11\": null,\n                \"callFlagCustomPhone11\": null,\n                \"metadataCustomPhone11\": null,\n                \"dialerFormattedCustomPhone11\": null,\n                \"timezoneCustomPhone11\": null,\n                \"customPhone12\": null,\n                \"callFlagCustomPhone12\": null,\n                \"metadataCustomPhone12\": null,\n                \"dialerFormattedCustomPhone12\": null,\n                \"timezoneCustomPhone12\": null,\n                \"customPhone13\": null,\n                \"callFlagCustomPhone13\": null,\n                \"metadataCustomPhone13\": null,\n                \"dialerFormattedCustomPhone13\": null,\n                \"timezoneCustomPhone13\": null,\n                \"customPhone14\": null,\n                \"callFlagCustomPhone14\": null,\n                \"metadataCustomPhone14\": null,\n                \"dialerFormattedCustomPhone14\": null,\n                \"timezoneCustomPhone14\": null,\n                \"customPhone15\": null,\n                \"callFlagCustomPhone15\": null,\n                \"metadataCustomPhone15\": null,\n                \"dialerFormattedCustomPhone15\": null,\n                \"timezoneCustomPhone15\": null,\n                \"customPhone16\": null,\n                \"callFlagCustomPhone16\": null,\n                \"metadataCustomPhone16\": null,\n                \"dialerFormattedCustomPhone16\": null,\n                \"timezoneCustomPhone16\": null,\n                \"customPhone17\": null,\n                \"callFlagCustomPhone17\": null,\n                \"metadataCustomPhone17\": null,\n                \"dialerFormattedCustomPhone17\": null,\n                \"timezoneCustomPhone17\": null,\n                \"customPhone18\": null,\n                \"callFlagCustomPhone18\": null,\n                \"metadataCustomPhone18\": null,\n                \"dialerFormattedCustomPhone18\": null,\n                \"timezoneCustomPhone18\": null,\n                \"customPhone19\": null,\n                \"callFlagCustomPhone19\": null,\n                \"metadataCustomPhone19\": null,\n                \"dialerFormattedCustomPhone19\": null,\n                \"timezoneCustomPhone19\": null,\n                \"modifiedDatetime\": null,\n                \"customDate18\": null,\n                \"customDate19\": null,\n                \"customDate20\": null,\n                \"customPhone20\": null,\n                \"callFlagCustomPhone20\": null,\n                \"metadataCustomPhone20\": null,\n                \"dialerFormattedCustomPhone20\": null,\n                \"timezoneCustomPhone20\": null,\n                \"extensionCustomPhone20\": null,\n                \"taskType\": null,\n                \"owner\": null,\n                \"isparkinglotrecord\": false,\n                \"rowId\": 4,\n                \"doNotCall\": false,\n                \"isDialable\": true\n            },\n            \"phoneInfo\": [\n                {\n                    \"columnName\": \"phone\",\n                    \"columnValue\": \"(603) 952-2500\",\n                    \"dialer_column_formatted_phone\": \"+16039522500_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_phone\": \"Y\"\n                },\n                {\n                    \"columnName\": \"custom_phone_1\",\n                    \"columnValue\": \"(603) 386-0304\",\n                    \"dialer_column_formatted_custom_phone_1\": \"+16033860304_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_custom_phone_1\": \"Y\"\n                }\n            ]\n        },\n        {\n            \"callListRecord\": {\n                \"id\": 1751633,\n                \"orgId\": 4772,\n                \"userId\": 10937,\n                \"crmId\": \"crmgenkey_5e0e85aa-5847-3ed7-9575-f19441786468\",\n                \"activityId\": null,\n                \"associations\": {\n                    \"dataList\": {\n                        \"id\": 10719\n                    }\n                },\n                \"recordType\": null,\n                \"accountName\": \"Britannia\",\n                \"contactName\": \"key5 Moon\",\n                \"timezone\": \"EST\",\n                \"phone\": \"(603) 952-2500\",\n                \"callflagPhone\": \"Y\",\n                \"metadataPhone\": null,\n                \"dialerFormattedPhone\": null,\n                \"title\": \"test engineer\",\n                \"city\": \"Chennai\",\n                \"state\": \"Tamilnadu\",\n                \"emailId\": \"moon5@gmail.com\",\n                \"extension\": null,\n                \"qnotes\": null,\n                \"sfReportName\": \"key 6 records (1)(1).csv\",\n                \"priorityValue\": 1,\n                \"tempPriorityValue\": 1,\n                \"reportPriority\": 1,\n                \"daCallDisposition\": null,\n                \"talkerCallDisposition\": null,\n                \"daCallComments\": null,\n                \"talkerCallComments\": null,\n                \"subject\": null,\n                \"isReferralOrInboundLeadRecord\": false,\n                \"liveConversationRateScore\": null,\n                \"technologyDataBasedScore\": null,\n                \"intentDataBasedScore\": null,\n                \"companyScore\": null,\n                \"leadScore\": 0,\n                \"rowProcessedFlag\": \"Y\",\n                \"dialedFlag\": \"N\",\n                \"directPhoneAvailabilityScore\": null,\n                \"recentlyVerifiedScore\": null,\n                \"contactabiltyScore\": null,\n                \"firstName\": \"key5\",\n                \"lastName\": \"Moon\",\n                \"isLeadScoreProcessed\": \"N\",\n                \"activityDatetime\": null,\n                \"customVarchar1\": null,\n                \"customVarchar2\": null,\n                \"customVarchar3\": null,\n                \"customVarchar4\": null,\n                \"customVarchar5\": null,\n                \"customVarchar6\": null,\n                \"customVarchar7\": null,\n                \"customVarchar8\": null,\n                \"customVarchar9\": null,\n                \"customVarchar10\": null,\n                \"customVarchar11\": null,\n                \"customVarchar12\": null,\n                \"customVarchar13\": null,\n                \"customVarchar14\": null,\n                \"customVarchar15\": null,\n                \"customVarchar16\": null,\n                \"customVarchar17\": null,\n                \"customVarchar18\": null,\n                \"customVarchar19\": null,\n                \"customVarchar20\": null,\n                \"customPhone1\": \"(603) 386-0304\",\n                \"customPhone2\": null,\n                \"customPhone3\": null,\n                \"customPhone4\": null,\n                \"customPhone5\": null,\n                \"callflagCustomPhone1\": \"Y\",\n                \"callflagCustomPhone2\": \"Y\",\n                \"callflagCustomPhone3\": \"Y\",\n                \"callflagCustomPhone4\": \"Y\",\n                \"callflagCustomPhone5\": \"Y\",\n                \"metadataCustomPhone1\": null,\n                \"metadataCustomPhone2\": null,\n                \"metadataCustomPhone3\": null,\n                \"metadataCustomPhone4\": null,\n                \"metadataCustomPhone5\": null,\n                \"dialerFormattedCustomPhone1\": null,\n                \"dialerFormattedCustomPhone2\": null,\n                \"dialerFormattedCustomPhone3\": null,\n                \"dialerFormattedCustomPhone4\": null,\n                \"dialerFormattedCustomPhone5\": null,\n                \"customNumeric1\": null,\n                \"customNumeric2\": null,\n                \"customNumeric3\": null,\n                \"customNumeric4\": null,\n                \"customNumeric5\": null,\n                \"customInteger1\": null,\n                \"customInteger2\": null,\n                \"customInteger3\": null,\n                \"customInteger4\": null,\n                \"customInteger5\": null,\n                \"customDate1\": null,\n                \"customDate2\": null,\n                \"customDate3\": null,\n                \"customDate4\": null,\n                \"customDate5\": null,\n                \"customTimestamp1\": null,\n                \"customTimestamp2\": null,\n                \"customTimestamp3\": null,\n                \"customTimestamp4\": null,\n                \"customTimestamp5\": null,\n                \"callerIdPhone\": null,\n                \"cadenceId\": null,\n                \"touchStepNo\": null,\n                \"memberCurrentTouchId\": null,\n                \"duedate\": null,\n                \"multiTouchId\": null,\n                \"customBoolean1\": null,\n                \"customBoolean2\": null,\n                \"customBoolean3\": null,\n                \"customBoolean4\": null,\n                \"customBoolean5\": null,\n                \"inboundRecordsPk\": null,\n                \"relationshipName\": null,\n                \"crmType\": null,\n                \"accountId\": null,\n                \"timezoneCustomPhone1\": \"EST\",\n                \"timezoneCustomPhone2\": null,\n                \"timezoneCustomPhone3\": null,\n                \"timezoneCustomPhone4\": null,\n                \"timezoneCustomPhone5\": null,\n                \"trucadenceMemberTaskId\": null,\n                \"callCounter\": null,\n                \"campaignName\": null,\n                \"currentTouchId\": null,\n                \"currentTouchType\": null,\n                \"emailCounter\": null,\n                \"firstDialedDate\": null,\n                \"firstEmailedDate\": null,\n                \"lastDaCallOutcome\": null,\n                \"lastDialedDate\": null,\n                \"lastEmailOutcome\": null,\n                \"lastEmailedDate\": null,\n                \"lastTalkerCallOutcome\": null,\n                \"lastTouchDateTime\": null,\n                \"linkedinUrl\": null,\n                \"optoutFlag\": false,\n                \"tag\": null,\n                \"activityComments\": null,\n                \"extensionCustomPhone1\": null,\n                \"extensionCustomPhone2\": null,\n                \"extensionCustomPhone3\": null,\n                \"extensionCustomPhone4\": null,\n                \"extensionCustomPhone5\": null,\n                \"totalEngagementScore\": 0,\n                \"customVarchar21\": null,\n                \"customVarchar22\": null,\n                \"customVarchar23\": null,\n                \"customVarchar24\": null,\n                \"customVarchar25\": null,\n                \"customVarchar26\": null,\n                \"customVarchar27\": null,\n                \"customVarchar28\": null,\n                \"customVarchar29\": null,\n                \"customVarchar30\": null,\n                \"customVarchar31\": null,\n                \"customVarchar32\": null,\n                \"customVarchar33\": null,\n                \"customVarchar34\": null,\n                \"customVarchar35\": null,\n                \"customDate6\": null,\n                \"customDate7\": null,\n                \"customDate8\": null,\n                \"customPhone6\": null,\n                \"callFlagCustomPhone6\": null,\n                \"metadataCustomPhone6\": null,\n                \"dialerFormattedCustomPhone6\": null,\n                \"timezoneCustomPhone6\": null,\n                \"extensionCustomPhone6\": null,\n                \"customPhone7\": null,\n                \"callFlagCustomPhone7\": null,\n                \"metadataCustomPhone7\": null,\n                \"dialerFormattedCustomPhone7\": null,\n                \"timezoneCustomPhone7\": null,\n                \"extensionCustomPhone7\": null,\n                \"customVarchar36\": null,\n                \"customPhone8\": null,\n                \"callFlagCustomPhone8\": null,\n                \"metadataCustomPhone8\": null,\n                \"dialerFormattedCustomPhone8\": null,\n                \"timezoneCustomPhone8\": null,\n                \"customPhone9\": null,\n                \"callFlagCustomPhone9\": null,\n                \"metadataCustomPhone9\": null,\n                \"dialerFormattedCustomPhone9\": null,\n                \"timezoneCustomPhone9\": null,\n                \"customPhone10\": null,\n                \"callFlagCustomPhone10\": null,\n                \"metadataCustomPhone10\": null,\n                \"dialerFormattedCustomPhone10\": null,\n                \"timezoneCustomPhone10\": null,\n                \"customVarchar37\": null,\n                \"customVarchar38\": null,\n                \"customVarchar39\": null,\n                \"customVarchar40\": null,\n                \"customVarchar41\": null,\n                \"customVarchar42\": null,\n                \"customVarchar43\": null,\n                \"customVarchar44\": null,\n                \"customVarchar45\": null,\n                \"customVarchar46\": null,\n                \"customVarchar47\": null,\n                \"customVarchar48\": null,\n                \"customVarchar49\": null,\n                \"customVarchar50\": null,\n                \"customDate9\": null,\n                \"customDate10\": null,\n                \"customDate11\": null,\n                \"customDate12\": null,\n                \"customDate13\": null,\n                \"customDate14\": null,\n                \"customDate15\": null,\n                \"customDate16\": null,\n                \"customDate17\": null,\n                \"customPhone11\": null,\n                \"callFlagCustomPhone11\": null,\n                \"metadataCustomPhone11\": null,\n                \"dialerFormattedCustomPhone11\": null,\n                \"timezoneCustomPhone11\": null,\n                \"customPhone12\": null,\n                \"callFlagCustomPhone12\": null,\n                \"metadataCustomPhone12\": null,\n                \"dialerFormattedCustomPhone12\": null,\n                \"timezoneCustomPhone12\": null,\n                \"customPhone13\": null,\n                \"callFlagCustomPhone13\": null,\n                \"metadataCustomPhone13\": null,\n                \"dialerFormattedCustomPhone13\": null,\n                \"timezoneCustomPhone13\": null,\n                \"customPhone14\": null,\n                \"callFlagCustomPhone14\": null,\n                \"metadataCustomPhone14\": null,\n                \"dialerFormattedCustomPhone14\": null,\n                \"timezoneCustomPhone14\": null,\n                \"customPhone15\": null,\n                \"callFlagCustomPhone15\": null,\n                \"metadataCustomPhone15\": null,\n                \"dialerFormattedCustomPhone15\": null,\n                \"timezoneCustomPhone15\": null,\n                \"customPhone16\": null,\n                \"callFlagCustomPhone16\": null,\n                \"metadataCustomPhone16\": null,\n                \"dialerFormattedCustomPhone16\": null,\n                \"timezoneCustomPhone16\": null,\n                \"customPhone17\": null,\n                \"callFlagCustomPhone17\": null,\n                \"metadataCustomPhone17\": null,\n                \"dialerFormattedCustomPhone17\": null,\n                \"timezoneCustomPhone17\": null,\n                \"customPhone18\": null,\n                \"callFlagCustomPhone18\": null,\n                \"metadataCustomPhone18\": null,\n                \"dialerFormattedCustomPhone18\": null,\n                \"timezoneCustomPhone18\": null,\n                \"customPhone19\": null,\n                \"callFlagCustomPhone19\": null,\n                \"metadataCustomPhone19\": null,\n                \"dialerFormattedCustomPhone19\": null,\n                \"timezoneCustomPhone19\": null,\n                \"modifiedDatetime\": null,\n                \"customDate18\": null,\n                \"customDate19\": null,\n                \"customDate20\": null,\n                \"customPhone20\": null,\n                \"callFlagCustomPhone20\": null,\n                \"metadataCustomPhone20\": null,\n                \"dialerFormattedCustomPhone20\": null,\n                \"timezoneCustomPhone20\": null,\n                \"extensionCustomPhone20\": null,\n                \"taskType\": null,\n                \"owner\": null,\n                \"isparkinglotrecord\": false,\n                \"rowId\": 5,\n                \"doNotCall\": false,\n                \"isDialable\": true\n            },\n            \"phoneInfo\": [\n                {\n                    \"columnName\": \"phone\",\n                    \"columnValue\": \"(603) 952-2500\",\n                    \"dialer_column_formatted_phone\": \"+16039522500_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_phone\": \"Y\"\n                },\n                {\n                    \"columnName\": \"custom_phone_1\",\n                    \"columnValue\": \"(603) 386-0304\",\n                    \"dialer_column_formatted_custom_phone_1\": \"+16033860304_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_custom_phone_1\": \"Y\"\n                }\n            ]\n        },\n        {\n            \"callListRecord\": {\n                \"id\": 1751634,\n                \"orgId\": 4772,\n                \"userId\": 10937,\n                \"crmId\": \"crmgenkey_55a98f49-c199-3fd6-b6bd-026eddc567c2\",\n                \"activityId\": null,\n                \"associations\": {\n                    \"dataList\": {\n                        \"id\": 10719\n                    }\n                },\n                \"recordType\": null,\n                \"accountName\": \"Britannia\",\n                \"contactName\": \"key6 Moon\",\n                \"timezone\": \"EST\",\n                \"phone\": \"(603) 952-2500\",\n                \"callflagPhone\": \"Y\",\n                \"metadataPhone\": null,\n                \"dialerFormattedPhone\": null,\n                \"title\": \"test engineer\",\n                \"city\": \"Chennai\",\n                \"state\": \"Tamilnadu\",\n                \"emailId\": \"moon6@gmail.com\",\n                \"extension\": null,\n                \"qnotes\": null,\n                \"sfReportName\": \"key 6 records (1)(1).csv\",\n                \"priorityValue\": 1,\n                \"tempPriorityValue\": 1,\n                \"reportPriority\": 1,\n                \"daCallDisposition\": null,\n                \"talkerCallDisposition\": null,\n                \"daCallComments\": null,\n                \"talkerCallComments\": null,\n                \"subject\": null,\n                \"isReferralOrInboundLeadRecord\": false,\n                \"liveConversationRateScore\": null,\n                \"technologyDataBasedScore\": null,\n                \"intentDataBasedScore\": null,\n                \"companyScore\": null,\n                \"leadScore\": 0,\n                \"rowProcessedFlag\": \"Y\",\n                \"dialedFlag\": \"N\",\n                \"directPhoneAvailabilityScore\": null,\n                \"recentlyVerifiedScore\": null,\n                \"contactabiltyScore\": null,\n                \"firstName\": \"key6\",\n                \"lastName\": \"Moon\",\n                \"isLeadScoreProcessed\": \"N\",\n                \"activityDatetime\": null,\n                \"customVarchar1\": null,\n                \"customVarchar2\": null,\n                \"customVarchar3\": null,\n                \"customVarchar4\": null,\n                \"customVarchar5\": null,\n                \"customVarchar6\": null,\n                \"customVarchar7\": null,\n                \"customVarchar8\": null,\n                \"customVarchar9\": null,\n                \"customVarchar10\": null,\n                \"customVarchar11\": null,\n                \"customVarchar12\": null,\n                \"customVarchar13\": null,\n                \"customVarchar14\": null,\n                \"customVarchar15\": null,\n                \"customVarchar16\": null,\n                \"customVarchar17\": null,\n                \"customVarchar18\": null,\n                \"customVarchar19\": null,\n                \"customVarchar20\": null,\n                \"customPhone1\": \"(603) 386-0304\",\n                \"customPhone2\": null,\n                \"customPhone3\": null,\n                \"customPhone4\": null,\n                \"customPhone5\": null,\n                \"callflagCustomPhone1\": \"Y\",\n                \"callflagCustomPhone2\": \"Y\",\n                \"callflagCustomPhone3\": \"Y\",\n                \"callflagCustomPhone4\": \"Y\",\n                \"callflagCustomPhone5\": \"Y\",\n                \"metadataCustomPhone1\": null,\n                \"metadataCustomPhone2\": null,\n                \"metadataCustomPhone3\": null,\n                \"metadataCustomPhone4\": null,\n                \"metadataCustomPhone5\": null,\n                \"dialerFormattedCustomPhone1\": null,\n                \"dialerFormattedCustomPhone2\": null,\n                \"dialerFormattedCustomPhone3\": null,\n                \"dialerFormattedCustomPhone4\": null,\n                \"dialerFormattedCustomPhone5\": null,\n                \"customNumeric1\": null,\n                \"customNumeric2\": null,\n                \"customNumeric3\": null,\n                \"customNumeric4\": null,\n                \"customNumeric5\": null,\n                \"customInteger1\": null,\n                \"customInteger2\": null,\n                \"customInteger3\": null,\n                \"customInteger4\": null,\n                \"customInteger5\": null,\n                \"customDate1\": null,\n                \"customDate2\": null,\n                \"customDate3\": null,\n                \"customDate4\": null,\n                \"customDate5\": null,\n                \"customTimestamp1\": null,\n                \"customTimestamp2\": null,\n                \"customTimestamp3\": null,\n                \"customTimestamp4\": null,\n                \"customTimestamp5\": null,\n                \"callerIdPhone\": null,\n                \"cadenceId\": null,\n                \"touchStepNo\": null,\n                \"memberCurrentTouchId\": null,\n                \"duedate\": null,\n                \"multiTouchId\": null,\n                \"customBoolean1\": null,\n                \"customBoolean2\": null,\n                \"customBoolean3\": null,\n                \"customBoolean4\": null,\n                \"customBoolean5\": null,\n                \"inboundRecordsPk\": null,\n                \"relationshipName\": null,\n                \"crmType\": null,\n                \"accountId\": null,\n                \"timezoneCustomPhone1\": \"EST\",\n                \"timezoneCustomPhone2\": null,\n                \"timezoneCustomPhone3\": null,\n                \"timezoneCustomPhone4\": null,\n                \"timezoneCustomPhone5\": null,\n                \"trucadenceMemberTaskId\": null,\n                \"callCounter\": null,\n                \"campaignName\": null,\n                \"currentTouchId\": null,\n                \"currentTouchType\": null,\n                \"emailCounter\": null,\n                \"firstDialedDate\": null,\n                \"firstEmailedDate\": null,\n                \"lastDaCallOutcome\": null,\n                \"lastDialedDate\": null,\n                \"lastEmailOutcome\": null,\n                \"lastEmailedDate\": null,\n                \"lastTalkerCallOutcome\": null,\n                \"lastTouchDateTime\": null,\n                \"linkedinUrl\": null,\n                \"optoutFlag\": false,\n                \"tag\": null,\n                \"activityComments\": null,\n                \"extensionCustomPhone1\": null,\n                \"extensionCustomPhone2\": null,\n                \"extensionCustomPhone3\": null,\n                \"extensionCustomPhone4\": null,\n                \"extensionCustomPhone5\": null,\n                \"totalEngagementScore\": 0,\n                \"customVarchar21\": null,\n                \"customVarchar22\": null,\n                \"customVarchar23\": null,\n                \"customVarchar24\": null,\n                \"customVarchar25\": null,\n                \"customVarchar26\": null,\n                \"customVarchar27\": null,\n                \"customVarchar28\": null,\n                \"customVarchar29\": null,\n                \"customVarchar30\": null,\n                \"customVarchar31\": null,\n                \"customVarchar32\": null,\n                \"customVarchar33\": null,\n                \"customVarchar34\": null,\n                \"customVarchar35\": null,\n                \"customDate6\": null,\n                \"customDate7\": null,\n                \"customDate8\": null,\n                \"customPhone6\": null,\n                \"callFlagCustomPhone6\": null,\n                \"metadataCustomPhone6\": null,\n                \"dialerFormattedCustomPhone6\": null,\n                \"timezoneCustomPhone6\": null,\n                \"extensionCustomPhone6\": null,\n                \"customPhone7\": null,\n                \"callFlagCustomPhone7\": null,\n                \"metadataCustomPhone7\": null,\n                \"dialerFormattedCustomPhone7\": null,\n                \"timezoneCustomPhone7\": null,\n                \"extensionCustomPhone7\": null,\n                \"customVarchar36\": null,\n                \"customPhone8\": null,\n                \"callFlagCustomPhone8\": null,\n                \"metadataCustomPhone8\": null,\n                \"dialerFormattedCustomPhone8\": null,\n                \"timezoneCustomPhone8\": null,\n                \"customPhone9\": null,\n                \"callFlagCustomPhone9\": null,\n                \"metadataCustomPhone9\": null,\n                \"dialerFormattedCustomPhone9\": null,\n                \"timezoneCustomPhone9\": null,\n                \"customPhone10\": null,\n                \"callFlagCustomPhone10\": null,\n                \"metadataCustomPhone10\": null,\n                \"dialerFormattedCustomPhone10\": null,\n                \"timezoneCustomPhone10\": null,\n                \"customVarchar37\": null,\n                \"customVarchar38\": null,\n                \"customVarchar39\": null,\n                \"customVarchar40\": null,\n                \"customVarchar41\": null,\n                \"customVarchar42\": null,\n                \"customVarchar43\": null,\n                \"customVarchar44\": null,\n                \"customVarchar45\": null,\n                \"customVarchar46\": null,\n                \"customVarchar47\": null,\n                \"customVarchar48\": null,\n                \"customVarchar49\": null,\n                \"customVarchar50\": null,\n                \"customDate9\": null,\n                \"customDate10\": null,\n                \"customDate11\": null,\n                \"customDate12\": null,\n                \"customDate13\": null,\n                \"customDate14\": null,\n                \"customDate15\": null,\n                \"customDate16\": null,\n                \"customDate17\": null,\n                \"customPhone11\": null,\n                \"callFlagCustomPhone11\": null,\n                \"metadataCustomPhone11\": null,\n                \"dialerFormattedCustomPhone11\": null,\n                \"timezoneCustomPhone11\": null,\n                \"customPhone12\": null,\n                \"callFlagCustomPhone12\": null,\n                \"metadataCustomPhone12\": null,\n                \"dialerFormattedCustomPhone12\": null,\n                \"timezoneCustomPhone12\": null,\n                \"customPhone13\": null,\n                \"callFlagCustomPhone13\": null,\n                \"metadataCustomPhone13\": null,\n                \"dialerFormattedCustomPhone13\": null,\n                \"timezoneCustomPhone13\": null,\n                \"customPhone14\": null,\n                \"callFlagCustomPhone14\": null,\n                \"metadataCustomPhone14\": null,\n                \"dialerFormattedCustomPhone14\": null,\n                \"timezoneCustomPhone14\": null,\n                \"customPhone15\": null,\n                \"callFlagCustomPhone15\": null,\n                \"metadataCustomPhone15\": null,\n                \"dialerFormattedCustomPhone15\": null,\n                \"timezoneCustomPhone15\": null,\n                \"customPhone16\": null,\n                \"callFlagCustomPhone16\": null,\n                \"metadataCustomPhone16\": null,\n                \"dialerFormattedCustomPhone16\": null,\n                \"timezoneCustomPhone16\": null,\n                \"customPhone17\": null,\n                \"callFlagCustomPhone17\": null,\n                \"metadataCustomPhone17\": null,\n                \"dialerFormattedCustomPhone17\": null,\n                \"timezoneCustomPhone17\": null,\n                \"customPhone18\": null,\n                \"callFlagCustomPhone18\": null,\n                \"metadataCustomPhone18\": null,\n                \"dialerFormattedCustomPhone18\": null,\n                \"timezoneCustomPhone18\": null,\n                \"customPhone19\": null,\n                \"callFlagCustomPhone19\": null,\n                \"metadataCustomPhone19\": null,\n                \"dialerFormattedCustomPhone19\": null,\n                \"timezoneCustomPhone19\": null,\n                \"modifiedDatetime\": null,\n                \"customDate18\": null,\n                \"customDate19\": null,\n                \"customDate20\": null,\n                \"customPhone20\": null,\n                \"callFlagCustomPhone20\": null,\n                \"metadataCustomPhone20\": null,\n                \"dialerFormattedCustomPhone20\": null,\n                \"timezoneCustomPhone20\": null,\n                \"extensionCustomPhone20\": null,\n                \"taskType\": null,\n                \"owner\": null,\n                \"isparkinglotrecord\": false,\n                \"rowId\": 6,\n                \"doNotCall\": false,\n                \"isDialable\": true\n            },\n            \"phoneInfo\": [\n                {\n                    \"columnName\": \"phone\",\n                    \"columnValue\": \"(603) 952-2500\",\n                    \"dialer_column_formatted_phone\": \"+16039522500_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_phone\": \"Y\"\n                },\n                {\n                    \"columnName\": \"custom_phone_1\",\n                    \"columnValue\": \"(603) 386-0304\",\n                    \"dialer_column_formatted_custom_phone_1\": \"+16033860304_del_+19782961107_del_Y\",\n                    \"two_party_consent_enabled_custom_phone_1\": \"Y\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"d39a039f-2da7-425a-b29e-f272072851b5"},{"name":"Blacklist Records","id":"6f90b134-1767-4f51-a0e4-331385eaed12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"callListRecordId\": 1758346\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/blacklist","description":"<p>To remove call list records from the current session.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["blacklist"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"4c0f4a3f-3fd6-4879-b315-b78bdd42043e","name":"Blacklist Records","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"callListRecordId\": 1758346\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/blacklist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 501,\n            \"crmId\": \"5586193000000406189\",\n            \"accountName\": \"King (Sample)\",\n            \"contactName\": \"JUnit - vzxDf Marrier (Sample)\",\n            \"phoneNumber\": \"(603) 386-0304\",\n            \"emailId\": \"krismarrier@gmail.com\",\n            \"createdDate\": \"2023-05-05T12:33:48.000Z\",\n            \"associations\": {\n                \"user\": {\n                    \"id\": 11855\n                },\n                \"dataList\": {\n                    \"id\": 17530\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"6f90b134-1767-4f51-a0e4-331385eaed12"},{"name":"Pause/Resume","id":"634fcbbe-33d1-475f-a672-a27a1ec3a75f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"5797_del_124577_del_dialers_api_del_AIDSL\",\r\n    \"campaignStatus\": \"RESUME\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/campaignStatus","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","campaignStatus"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"9ce11786-3a6c-4236-882a-c6795704f544","name":"Pause/Resume","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"5797_del_124577_del_dialers_api_del_AIDSL\",\r\n    \"campaignStatus\": \"RESUME\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/campaignStatus"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"634fcbbe-33d1-475f-a672-a27a1ec3a75f"},{"name":"End Call","id":"0834ddf3-c1e8-4c32-a311-b97427f9cd85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"{{externalCampaignId}}\",\r\n    \"campaignStatus\": \"ENDCALL\",\r\n    \"totalConnectDuration\": 10,\r\n    \"totalHoldDuration\": 0,\r\n    \"totalWrapDuration\": 0,\r\n    \"isLtHangup\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/campaignStatus","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","campaignStatus"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"9cdbaeb1-9e93-4b7d-b7b0-8b10030f4c2f","name":"End Call","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"{{externalCampaignId}}\",\r\n    \"campaignStatus\": \"ENDCALL\",\r\n    \"totalConnectDuration\": 10,\r\n    \"totalHoldDuration\": 0,\r\n    \"totalWrapDuration\": 0,\r\n    \"isLtHangup\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/campaignStatus"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0834ddf3-c1e8-4c32-a311-b97427f9cd85"},{"name":"End Session","id":"8cf78706-63cf-4fa9-b14c-6caef6185c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"{{externalCampaignId}}\",\r\n    \"campaignStatus\": \"ENDSESSION\",\r\n    \"totalConnectDuration\": 35,\r\n    \"totalHoldDuration\": 14,\r\n    \"totalWrapDuration\": 78,\r\n    \"isListComplete\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/endSession","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","endSession"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"8ac833df-706e-4f41-8cf6-2a1fa398051b","name":"End Session","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"{{externalCampaignId}}\",\r\n    \"campaignStatus\": \"ENDSESSION\",\r\n    \"totalConnectDuration\": 35,\r\n    \"totalHoldDuration\": 14,\r\n    \"totalWrapDuration\": 78,\r\n    \"isListComplete\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/endSession"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8cf78706-63cf-4fa9-b14c-6caef6185c3d"},{"name":"Kill Session","id":"e28a9d19-03c2-4e2f-a162-8de0ceeba86c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/killSession","description":"<p>To kill the existing session. It will delete all the existing session data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","killSession"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"2761d1f0-79db-4cba-80b2-e3ca0daafbe4","name":"Kill Session","originalRequest":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/killSession"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e28a9d19-03c2-4e2f-a162-8de0ceeba86c"},{"name":"Referral Add/Format","id":"665c9839-7c60-45f4-b4c6-b3140d2e1730","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"5794_del_127865_del_dialers_api_del_AIDSL\",\r\n    \"callListRecordId\": 1790792,\r\n    \"referralAction\": \"FORMAT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/referral","description":"<p>To add the referral to dialing session or format the referral to make a call immediately.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","referral"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"3de1d0e2-16e8-43dd-8fd2-a3951ae576f0","name":"Referral Add/Format","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"5794_del_127865_del_dialers_api_del_AIDSL\",\r\n    \"callListRecordId\": 1790792,\r\n    \"referralAction\": \"FORMAT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/referral"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"isDialable\": true,\n            \"dialerColumnFormatted_phone\": \"+16033860304_del_+19782961106_del_Y\"\n        }\n    ]\n}"}],"_postman_id":"665c9839-7c60-45f4-b4c6-b3140d2e1730"},{"name":"Save Call","id":"4aa2ff4a-e3ae-48f3-90bb-b2d71cb4da87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callListRecordId\": 1790792,\r\n    \"externalCampaignId\": \"5794_del_127865_del_dialers_api_del_AIDSL\",\r\n    \"callDuration\": 10,\r\n    \"callResultSubject\": \"Follow Up - Busy, not a good time\",\r\n    \"callProblemSubject\": \"\",\r\n    \"callProblemComments\": \"\",\r\n    \"callComments\": \"test followup\",\r\n    \"compActivityFields\": [\r\n        \"completed_activity_screencall_disposition,completed_activity_screencall_comments\"\r\n    ],\r\n    \"fupActivityFields\": [\r\n        \"follow_up_activity_screenactivity_type,follow_up_activity_screensubject,follow_up_activity_screendescription,follow_up_activity_screenfollow_up_date,follow_up_activity_screenreminder_time\"\r\n    ],\r\n    \"callRecordingEnabled\": true,\r\n    \"rowId\": 3,\r\n    \"refCallStartTime\": null,\r\n    \"wrapTime\": 42,\r\n    \"phoneType\": \"phone\",\r\n    \"dialingInstructions\": \"\",\r\n    \"cdOpenMethod\": \"\",\r\n    \"cdPopupOpenTime\": null,\r\n    \"dialerType\": \"AIDSL\",\r\n    \"phoneNavigation\": \"\",\r\n    \"completedActivityCallDispostion\": \"Follow Up - Busy\",\r\n    \"completedActivityCallComments\": \"test followup\",\r\n    \"completedActivitySentiment\": \"\",\r\n    \"referral\": {\r\n        \"contactName\": \"Test234\",\r\n        \"recordType\": \"Contact\",\r\n        \"accountName\": \"temp\",\r\n        \"phone\": \"123123123131\",\r\n        \"source\": \"Koncert\",\r\n        \"emailId\": \"test345@gmail.com\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/saveCall","description":"<p>To save the call outcome, followup &amp; referral details during dialing session.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","saveCall"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"392a64ad-e0ab-4056-8e04-b3bcaa38a62c","name":"Save Call","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callListRecordId\": 1790792,\r\n    \"externalCampaignId\": \"5794_del_127865_del_dialers_api_del_AIDSL\",\r\n    \"callDuration\": 10,\r\n    \"callResultSubject\": \"Follow Up - Busy, not a good time\",\r\n    \"callProblemSubject\": \"\",\r\n    \"callProblemComments\": \"\",\r\n    \"callComments\": \"test followup\",\r\n    \"compActivityFields\": [\r\n        \"completed_activity_screencall_disposition,completed_activity_screencall_comments\"\r\n    ],\r\n    \"fupActivityFields\": [\r\n        \"follow_up_activity_screenactivity_type,follow_up_activity_screensubject,follow_up_activity_screendescription,follow_up_activity_screenfollow_up_date,follow_up_activity_screenreminder_time\"\r\n    ],\r\n    \"callRecordingEnabled\": true,\r\n    \"rowId\": 3,\r\n    \"refCallStartTime\": null,\r\n    \"wrapTime\": 42,\r\n    \"phoneType\": \"phone\",\r\n    \"dialingInstructions\": \"\",\r\n    \"cdOpenMethod\": \"\",\r\n    \"cdPopupOpenTime\": null,\r\n    \"dialerType\": \"AIDSL\",\r\n    \"phoneNavigation\": \"\",\r\n    \"completedActivityCallDispostion\": \"Follow Up - Busy\",\r\n    \"completedActivityCallComments\": \"test followup\",\r\n    \"completedActivitySentiment\": \"\",\r\n    \"referral\": {\r\n        \"contactName\": \"Test234\",\r\n        \"recordType\": \"Contact\",\r\n        \"accountName\": \"temp\",\r\n        \"phone\": \"123123123131\",\r\n        \"source\": \"Koncert\",\r\n        \"emailId\": \"test345@gmail.com\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/referral"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"updateDispositionStandAlone\": true,\r\n            \"updateDispositionCRM\": true,\r\n            \"followUpId\": \"15180\",\r\n            \"createFollowup\": true,\r\n            \"createReferral\": true,\r\n            \"referralId\": \"1797415\",\r\n            \"cadenceProspectId\": \"270897\",\r\n            \"referralFollowUpId\": \"15181\"\r\n        }\r\n    ]\r\n}"},{"id":"d2b545bc-b3c6-495c-87a9-bce420f20ece","name":"Save Call","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callListRecordId\": 1797385,\r\n    \"externalCampaignId\": \"6079_del_128100_del_dialers_api_del_AIDSL\",\r\n    \"callDuration\": 11,\r\n    \"callResultSubject\": \"Meeting Scheduled\",\r\n    \"callProblemSubject\": \"\",\r\n    \"callProblemComments\": \"\",\r\n    \"callComments\": \"Test\",\r\n    \"compActivityFields\": [\r\n        \"completed_activity_screencall_disposition,completed_activity_screencall_comments\"\r\n    ],\r\n    \"fupActivityFields\": [\r\n        \"follow_up_activity_screenactivity_type,follow_up_activity_screensubject,follow_up_activity_screendescription,follow_up_activity_screenfollow_up_date,follow_up_activity_screenreminder_time\"\r\n    ],\r\n    \"callRecordingEnabled\": false,\r\n    \"rowId\": 1,\r\n    \"referralRecord\": true,\r\n    \"refCallStartTime\": null,\r\n    \"wrapTime\": 12,\r\n    \"phoneType\": \"phone\",\r\n    \"dialingInstructions\": \"\",\r\n    \"cdOpenMethod\": \"\",\r\n    \"cdPopupOpenTime\": null,\r\n    \"dialerType\": \"AIDSL\",\r\n    \"phoneNavigation\": \"\",\r\n    \"completedActivityCallDispostion\": \"Meeting Scheduled\",\r\n    \"completedActivityCallComments\": \"Test\",\r\n    \"completedActivitySentiment\": \"\",\r\n    \"followUp\": {\r\n        \"followupDate\": \"2023-06-23\",\r\n        \"reminder\": \"6:30 AM\",\r\n        \"taskType\": \"Task\",\r\n        \"subject\": \"Today Task\",\r\n        \"comments\": \"New Task\"\r\n    },\r\n    \"referral\": {\r\n        \"contactName\": \"Test234\",\r\n        \"recordType\": \"Contact\",\r\n        \"accountName\": \"temp\",\r\n        \"phone\": \"6039522500\",\r\n        \"source\": \"Koncert\",\r\n        \"emailId\": \"tes12432@gmail.com\",\r\n        \"cadence\": {\r\n            \"id\": 10746\r\n        },\r\n        \"followUp\": {\r\n            \"followupDate\": \"2023-06-23\",\r\n            \"reminder\": \"6:30 AM\",\r\n            \"taskType\": \"Task\",\r\n            \"subject\": \"Test Task\",\r\n            \"comments\": \"Test Task\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/referral"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"updateDispositionStandAlone\": true,\n            \"updateDispositionCRM\": true,\n            \"followUpId\": \"15180\",\n            \"createFollowup\": true,\n            \"createReferral\": true,\n            \"referralId\": \"1797415\",\n            \"cadenceProspectId\": \"270897\",\n            \"referralFollowUpId\": \"15181\"\n        }\n    ]\n}"}],"_postman_id":"4aa2ff4a-e3ae-48f3-90bb-b2d71cb4da87"},{"name":"AddToCadence","id":"b0249599-16b1-49fe-a1b4-43306d34f460","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callListRecordId\": 1797393,\r\n    \"cadenceId\": 10746,\r\n    \"product\": \"AIDSL\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/addToCadence","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","addToCadence"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"2d36c35d-e72e-4bed-8369-f3adba1a6a46","name":"AddToCadence","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callListRecordId\": 1797393,\r\n    \"cadenceId\": 10746,\r\n    \"product\": \"AIDSL\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/addToCadence"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b0249599-16b1-49fe-a1b4-43306d34f460"},{"name":"DoNotCall","id":"12b4c45b-4866-4866-889b-08bd1c83ea4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"externalCampaignId\": \"6749_del_128855_del_dialers_api_del_AIDSL\",\r\n        \"rowId\": 2,\r\n        \"callListRecordId\": 1816511,\r\n        \"doNotCallUntil\": \"2023-02-27T10:06:12Z\"\r\n    },\r\n    {\r\n        \"externalCampaignId\": \"6749_del_128855_del_dialers_api_del_AIDSL\",\r\n        \"rowId\": 3,\r\n        \"callListRecordId\": 1816512,\r\n        \"doNotCallUntil\": \"2023-02-27T10:06:12Z\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/doNotCall","description":"<p>To create DNC during the dialing session</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","doNotCall"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"2d393023-1037-4d36-ba7e-b8f3c233fea6","name":"DoNotCall","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"6749_del_128855_del_dialers_api_del_AIDSL\",\r\n    \"rowId\": 2,\r\n    \"callListRecordId\": 1816511,\r\n    \"doNotCallUntil\": \"2023-02-27T10:06:12Z\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/doNotCall"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"12b4c45b-4866-4866-889b-08bd1c83ea4f"},{"name":"Toggle Row","id":"a4031190-e29a-48db-ba36-1fd3bca7b35d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"externalCampaignId\": \"6749_del_128855_del_dialers_api_del_AIDSL\",\r\n        \"rowId\": 2,\r\n        \"callListRecordId\": 1816511,\r\n        \"skip\": false\r\n    },\r\n    {\r\n        \"externalCampaignId\": \"6749_del_128855_del_dialers_api_del_AIDSL\",\r\n        \"rowId\": 3,\r\n        \"callListRecordId\": 1816512,\r\n        \"skip\": false\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/toggleRow","description":"<p>To skip the record during dialing session</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","toggleRow"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c239cd7f-b279-4769-bd37-b8c77084a451","name":"Toggle Row","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"externalCampaignId\": \"6749_del_128855_del_dialers_api_del_AIDSL\",\r\n    \"rowId\": 2,\r\n    \"callListRecordId\": 1816511,\r\n    \"skip\":false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/toggleRow"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"a4031190-e29a-48db-ba36-1fd3bca7b35d"},{"name":"WorkflowInitialize","id":"12f84d52-98fc-4b7a-81ce-4687a152bab0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/mysession/workflow/initialize/:externalCampaignId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","workflow","initialize",":externalCampaignId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"d98138ad-5b25-4061-b25b-bb90abfb2b39","description":{"content":"","type":"text/plain"},"type":"any","value":"CampaignId created during register session.","key":"externalCampaignId"}]}},"response":[{"id":"6645068e-ea30-4481-a6a9-1356a73a33f9","name":"WorkflowInitialize","originalRequest":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/mysession/workflow/initialize/5314_del_129575_del_dialers_api_del_AIDSL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"CONTACT\": {\n                \"IsDeleted\": \"IsDeleted\",\n                \"LastName\": \"LastName\",\n                \"FirstName\": \"FirstName\",\n                \"Salutation\": \"Salutation\",\n                \"Name\": \"Name\",\n                \"OtherStreet\": \"OtherStreet\",\n                \"OtherCity\": \"OtherCity\",\n                \"OtherState\": \"OtherState\",\n                \"OtherPostalCode\": \"OtherPostalCode\",\n                \"OtherCountry\": \"OtherCountry\",\n                \"OtherLatitude\": \"OtherLatitude\",\n                \"OtherLongitude\": \"OtherLongitude\",\n                \"OtherGeocodeAccuracy\": \"OtherGeocodeAccuracy\",\n                \"MailingStreet\": \"MailingStreet\",\n                \"MailingCity\": \"MailingCity\",\n                \"MailingState\": \"MailingState\",\n                \"MailingPostalCode\": \"MailingPostalCode\",\n                \"MailingCountry\": \"MailingCountry\",\n                \"MailingLatitude\": \"MailingLatitude\",\n                \"MailingLongitude\": \"MailingLongitude\",\n                \"MailingGeocodeAccuracy\": \"MailingGeocodeAccuracy\",\n                \"Phone\": \"Phone\",\n                \"Fax\": \"Fax\",\n                \"MobilePhone\": \"MobilePhone\",\n                \"HomePhone\": \"HomePhone\",\n                \"OtherPhone\": \"OtherPhone\",\n                \"AssistantPhone\": \"AssistantPhone\",\n                \"Email\": \"Email\",\n                \"Title\": \"Title\",\n                \"Department\": \"Department\",\n                \"AssistantName\": \"AssistantName\",\n                \"LeadSource\": \"LeadSource\",\n                \"Birthdate\": \"Birthdate\",\n                \"Description\": \"Description\",\n                \"DoNotCall\": \"DoNotCall\",\n                \"CreatedDate\": \"CreatedDate\",\n                \"LastModifiedDate\": \"LastModifiedDate\",\n                \"SystemModstamp\": \"SystemModstamp\",\n                \"LastActivityDate\": \"LastActivityDate\",\n                \"LastCURequestDate\": \"LastCURequestDate\",\n                \"LastCUUpdateDate\": \"LastCUUpdateDate\",\n                \"LastViewedDate\": \"LastViewedDate\",\n                \"LastReferencedDate\": \"LastReferencedDate\",\n                \"EmailBouncedReason\": \"EmailBouncedReason\",\n                \"EmailBouncedDate\": \"EmailBouncedDate\",\n                \"IsEmailBounced\": \"IsEmailBounced\",\n                \"PhotoUrl\": \"PhotoUrl\",\n                \"Jigsaw\": \"Jigsaw\",\n                \"JigsawContactId\": \"JigsawContactId\",\n                \"CleanStatus\": \"CleanStatus\",\n                \"Level__c\": \"Level__c\",\n                \"Languages__c\": \"Languages__c\",\n                \"CLDR__Active_Contacts__c\": \"CLDR__Active_Contacts__c\",\n                \"Linkedin_URL__c\": \"Linkedin_URL__c\",\n                \"Increment_call_counter__c\": \"Increment_call_counter__c\",\n                \"DA_Field_Update__c\": \"DA_Field_Update__c\",\n                \"Contact_3X3__c\": \"Contact_3X3__c\",\n                \"CRM_List__c\": \"CRM_List__c\",\n                \"CL_Dialed_Phone__c\": \"CL_Dialed_Phone__c\",\n                \"Phone_1__c\": \"Phone_1__c\",\n                \"Phone_2__c\": \"Phone_2__c\",\n                \"Note__c\": \"Note__c\",\n                \"Message__c\": \"Message__c\",\n                \"KC_Talker_Field_Update__c\": \"KC_Talker_Field_Update__c\"\n            },\n            \"LEAD\": {\n                \"IsDeleted\": \"IsDeleted\",\n                \"LastName\": \"LastName\",\n                \"FirstName\": \"FirstName\",\n                \"Salutation\": \"Salutation\",\n                \"Name\": \"Name\",\n                \"Title\": \"Title\",\n                \"Company\": \"Company\",\n                \"Street\": \"Street\",\n                \"City\": \"City\",\n                \"State\": \"State\",\n                \"PostalCode\": \"PostalCode\",\n                \"Country\": \"Country\",\n                \"Latitude\": \"Latitude\",\n                \"Longitude\": \"Longitude\",\n                \"GeocodeAccuracy\": \"GeocodeAccuracy\",\n                \"Phone\": \"Phone\",\n                \"MobilePhone\": \"MobilePhone\",\n                \"Fax\": \"Fax\",\n                \"Email\": \"Email\",\n                \"Website\": \"Website\",\n                \"PhotoUrl\": \"PhotoUrl\",\n                \"Description\": \"Description\",\n                \"LeadSource\": \"LeadSource\",\n                \"Status\": \"Status\",\n                \"Industry\": \"Industry\",\n                \"Rating\": \"Rating\",\n                \"AnnualRevenue\": \"AnnualRevenue\",\n                \"NumberOfEmployees\": \"NumberOfEmployees\",\n                \"IsConverted\": \"IsConverted\",\n                \"ConvertedDate\": \"ConvertedDate\",\n                \"IsUnreadByOwner\": \"IsUnreadByOwner\",\n                \"CreatedDate\": \"CreatedDate\",\n                \"LastModifiedDate\": \"LastModifiedDate\",\n                \"SystemModstamp\": \"SystemModstamp\",\n                \"LastActivityDate\": \"LastActivityDate\",\n                \"LastViewedDate\": \"LastViewedDate\",\n                \"LastReferencedDate\": \"LastReferencedDate\",\n                \"Jigsaw\": \"Jigsaw\",\n                \"JigsawContactId\": \"JigsawContactId\",\n                \"CleanStatus\": \"CleanStatus\",\n                \"CompanyDunsNumber\": \"CompanyDunsNumber\",\n                \"EmailBouncedReason\": \"EmailBouncedReason\",\n                \"EmailBouncedDate\": \"EmailBouncedDate\",\n                \"SICCode__c\": \"SICCode__c\",\n                \"ProductInterest__c\": \"ProductInterest__c\",\n                \"Primary__c\": \"Primary__c\",\n                \"CurrentGenerators__c\": \"CurrentGenerators__c\",\n                \"NumberofLocations__c\": \"NumberofLocations__c\",\n                \"CLDR__Active_Leads__c\": \"CLDR__Active_Leads__c\"\n            },\n            \"TASK\": {\n                \"Subject\": \"Subject\",\n                \"ActivityDate\": \"ActivityDate\",\n                \"Status\": \"Status\",\n                \"Priority\": \"Priority\",\n                \"IsHighPriority\": \"IsHighPriority\",\n                \"Description\": \"Description\",\n                \"Type\": \"Type\",\n                \"IsDeleted\": \"IsDeleted\",\n                \"IsClosed\": \"IsClosed\",\n                \"CreatedDate\": \"CreatedDate\",\n                \"LastModifiedDate\": \"LastModifiedDate\",\n                \"SystemModstamp\": \"SystemModstamp\",\n                \"IsArchived\": \"IsArchived\",\n                \"CallDurationInSeconds\": \"CallDurationInSeconds\",\n                \"CallType\": \"CallType\",\n                \"CallDisposition\": \"CallDisposition\",\n                \"CallObject\": \"CallObject\",\n                \"ReminderDateTime\": \"ReminderDateTime\",\n                \"IsReminderSet\": \"IsReminderSet\",\n                \"IsRecurrence\": \"IsRecurrence\",\n                \"RecurrenceStartDateOnly\": \"RecurrenceStartDateOnly\",\n                \"RecurrenceEndDateOnly\": \"RecurrenceEndDateOnly\",\n                \"RecurrenceTimeZoneSidKey\": \"RecurrenceTimeZoneSidKey\",\n                \"RecurrenceType\": \"RecurrenceType\",\n                \"RecurrenceInterval\": \"RecurrenceInterval\",\n                \"RecurrenceDayOfWeekMask\": \"RecurrenceDayOfWeekMask\",\n                \"RecurrenceDayOfMonth\": \"RecurrenceDayOfMonth\",\n                \"RecurrenceInstance\": \"RecurrenceInstance\",\n                \"RecurrenceMonthOfYear\": \"RecurrenceMonthOfYear\",\n                \"RecurrenceRegeneratedType\": \"RecurrenceRegeneratedType\",\n                \"TaskSubtype\": \"TaskSubtype\",\n                \"CLDR__CL_Call_Recording__c\": \"CLDR__CL_Call_Recording__c\",\n                \"CL_Dialed_phone__c\": \"CL_Dialed_phone__c\",\n                \"Caller_Id__c\": \"Caller_Id__c\",\n                \"KC_Call_Duration__c\": \"KC_Call_Duration__c\",\n                \"KC_Call_Recordings__c\": \"KC_Call_Recordings__c\",\n                \"List_Name__c\": \"List_Name__c\"\n            },\n            \"CLDR__CallLog__c\": {\n                \"IsDeleted\": \"IsDeleted\",\n                \"Name\": \"Name\",\n                \"CreatedDate\": \"CreatedDate\",\n                \"LastModifiedDate\": \"LastModifiedDate\",\n                \"SystemModstamp\": \"SystemModstamp\",\n                \"LastActivityDate\": \"LastActivityDate\",\n                \"LastViewedDate\": \"LastViewedDate\",\n                \"LastReferencedDate\": \"LastReferencedDate\",\n                \"CLDR__Activity__c\": \"CLDR__Activity__c\",\n                \"CLDR__CallCost__c\": \"CLDR__CallCost__c\",\n                \"CLDR__CallDisposition__c\": \"CLDR__CallDisposition__c\",\n                \"CLDR__CallDuration_in_Units__c\": \"CLDR__CallDuration_in_Units__c\",\n                \"CLDR__CallType__c\": \"CLDR__CallType__c\",\n                \"CLDR__CallerId__c\": \"CLDR__CallerId__c\",\n                \"CLDR__Caller_ID_Type__c\": \"CLDR__Caller_ID_Type__c\",\n                \"CLDR__Comments__c\": \"CLDR__Comments__c\",\n                \"CLDR__Company__c\": \"CLDR__Company__c\",\n                \"CLDR__CostPerMinute__c\": \"CLDR__CostPerMinute__c\",\n                \"CLDR__EndTime__c\": \"CLDR__EndTime__c\",\n                \"CLDR__Follow_up_date__c\": \"CLDR__Follow_up_date__c\",\n                \"CLDR__Group_Conversation__c\": \"CLDR__Group_Conversation__c\",\n                \"CLDR__IsConnect__c\": \"CLDR__IsConnect__c\",\n                \"CLDR__IsPositiveConnect__c\": \"CLDR__IsPositiveConnect__c\",\n                \"CLDR__IsVmLeft__c\": \"CLDR__IsVmLeft__c\",\n                \"CLDR__List_View_Name__c\": \"CLDR__List_View_Name__c\",\n                \"CLDR__Location_Group_Name__c\": \"CLDR__Location_Group_Name__c\",\n                \"CLDR__Location__c\": \"CLDR__Location__c\",\n                \"CLDR__Phone_Number__c\": \"CLDR__Phone_Number__c\",\n                \"CLDR__Problem_Comments__c\": \"CLDR__Problem_Comments__c\",\n                \"CLDR__Problem__c\": \"CLDR__Problem__c\",\n                \"CLDR__Product_Type__c\": \"CLDR__Product_Type__c\",\n                \"CLDR__RecordId__c\": \"CLDR__RecordId__c\",\n                \"CLDR__StartTime__c\": \"CLDR__StartTime__c\",\n                \"CLDR__Subject__c\": \"CLDR__Subject__c\",\n                \"CLDR__TDDialingAgentName__c\": \"CLDR__TDDialingAgentName__c\",\n                \"CLDR__TDTransferEndTimestamp__c\": \"CLDR__TDTransferEndTimestamp__c\",\n                \"CLDR__TDTransferStartTimestamp__c\": \"CLDR__TDTransferStartTimestamp__c\",\n                \"CLDR__TDTransferTimestamp__c\": \"CLDR__TDTransferTimestamp__c\",\n                \"CLDR__User_Type__c\": \"CLDR__User_Type__c\",\n                \"CLDR__VMFileName__c\": \"CLDR__VMFileName__c\",\n                \"CLDR__CallDuration__c\": \"CLDR__CallDuration__c\",\n                \"CLDR__Call_Duration_in_units__c\": \"CLDR__Call_Duration_in_units__c\",\n                \"CLDR__Call_time__c\": \"CLDR__Call_time__c\",\n                \"CLDR__Connect_Duration_in_hour__c\": \"CLDR__Connect_Duration_in_hour__c\",\n                \"CLDR__Group_Call_Metrics__c\": \"CLDR__Group_Call_Metrics__c\",\n                \"CLDR__Group_Call_Result__c\": \"CLDR__Group_Call_Result__c\"\n            }\n        }\n    ]\n}"}],"_postman_id":"12f84d52-98fc-4b7a-81ce-4687a152bab0"},{"name":"Get Call History Details","id":"b54fcf69-d3e6-44dd-830e-9540a86dc2d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/callHistory?filter[id]=12993050&filter[campaignStartTime]=2023-07-13T15:58:43Z","description":"<p>To get LastConnected and LastAttempted Data for the prospect.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","callHistory"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[id]","value":"12993050"},{"key":"filter[campaignStartTime]","value":"2023-07-13T15:58:43Z"}],"variable":[]}},"response":[{"id":"302d06c9-4715-4efb-87a0-55e60223c679","name":"Get Call History Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/mysession/callHistory?filter[id]=12993050&filter[campaignStartTime]=2023-07-13T15:58:43Z","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["mysession","callHistory"],"query":[{"key":"filter[id]","value":"12993050"},{"key":"filter[campaignStartTime]","value":"2023-07-13T15:58:43Z"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b54fcf69-d3e6-44dd-830e-9540a86dc2d8"},{"name":"Post Login Initialize","id":"1aa48a63-87b0-4d5e-9df8-9ae8f2f6dde7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/postLoginInitialize","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","postLoginInitialize"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"6feef14d-fd15-454c-8b4b-241613abda18","name":"Post Login Initialize","originalRequest":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/postLoginInitialize"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"1aa48a63-87b0-4d5e-9df8-9ae8f2f6dde7"},{"name":"Prospect Search","id":"1007e35b-dc60-49ec-95ee-ed11aea24fa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/crmSearch?filter[q]=Test&filter[source]=Salesloft","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","crmSearch"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[q]","value":"Test"},{"key":"filter[source]","value":"Salesloft"}],"variable":[]}},"response":[{"id":"d9735c70-95b9-4d7a-8318-98906b841de8","name":"Prospect Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/mysession/crmSearch?filter[q]=Test&filter[source]=Salesloft","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["mysession","crmSearch"],"query":[{"key":"filter[q]","value":"Test"},{"key":"filter[source]","value":"Salesloft"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"emailId\": \"testcadence90@yahoo.com\",\n            \"contactName\": \"Test Cadence\",\n            \"activityComments\": \"\",\n            \"city\": \"\",\n            \"subject\": \"\",\n            \"lastName\": \"Cadence\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"551241912\",\n            \"customVarchar13\": \"\",\n            \"title\": \"\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(603) 952-2507\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"551241912\",\n            \"state\": \"\",\n            \"firstName\": \"Test\",\n            \"crmId\": \"551241912\"\n        },\n        {\n            \"emailId\": \"\",\n            \"contactName\": \"Test John\",\n            \"activityComments\": \"\",\n            \"city\": \"\",\n            \"subject\": \"\",\n            \"lastName\": \"John\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"551241906\",\n            \"customVarchar13\": \"\",\n            \"title\": \"\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(603) 386-0304\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"551241906\",\n            \"state\": \"\",\n            \"firstName\": \"Test\",\n            \"crmId\": \"551241906\"\n        },\n        {\n            \"emailId\": \"\",\n            \"contactName\": \"Test John\",\n            \"activityComments\": \"\",\n            \"city\": \"\",\n            \"subject\": \"\",\n            \"lastName\": \"John\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"551241904\",\n            \"customVarchar13\": \"\",\n            \"title\": \"\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(603) 952-2507\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"551241904\",\n            \"state\": \"\",\n            \"firstName\": \"Test\",\n            \"crmId\": \"551241904\"\n        },\n        {\n            \"emailId\": \"\",\n            \"contactName\": \"TEst\",\n            \"activityComments\": \"\",\n            \"city\": \"\",\n            \"subject\": \"\",\n            \"lastName\": \"\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"643497521\",\n            \"customVarchar13\": \"\",\n            \"title\": \"\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"897565656565\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"643497521\",\n            \"state\": \"\",\n            \"firstName\": \"TEst\",\n            \"crmId\": \"643497521\"\n        },\n        {\n            \"emailId\": \"\",\n            \"contactName\": \"Test Referral\",\n            \"activityComments\": \"\",\n            \"city\": \"\",\n            \"subject\": \"\",\n            \"lastName\": \"Referral\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"596866661\",\n            \"customVarchar13\": \"\",\n            \"title\": \"\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(603) 952-2500\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"596866661\",\n            \"state\": \"\",\n            \"firstName\": \"Test\",\n            \"crmId\": \"596866661\"\n        },\n        {\n            \"emailId\": \"eantony@gem.com\",\n            \"contactName\": \"Test ref\",\n            \"activityComments\": \"\",\n            \"city\": \"\",\n            \"subject\": \"\",\n            \"lastName\": \"ref\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"153422828\",\n            \"customVarchar13\": \"\",\n            \"title\": \"tester\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(978) 296-2376\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"153422828\",\n            \"state\": \"\",\n            \"firstName\": \"Test\",\n            \"crmId\": \"153422828\"\n        },\n        {\n            \"emailId\": \"\",\n            \"contactName\": \"Test Harold\",\n            \"activityComments\": \"\",\n            \"city\": \"Merrimack\",\n            \"subject\": \"\",\n            \"lastName\": \"Harold\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"422818643\",\n            \"customVarchar13\": \"\",\n            \"title\": \"BDR\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(603) 952-2505\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"422818643\",\n            \"state\": \"NH\",\n            \"firstName\": \"Test\",\n            \"crmId\": \"422818643\"\n        },\n        {\n            \"emailId\": \"scato@msn.com\",\n            \"contactName\": \"test Colin\",\n            \"activityComments\": \"\",\n            \"city\": \"Boston\",\n            \"subject\": \"\",\n            \"lastName\": \"Colin\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"151653871\",\n            \"customVarchar13\": \"\",\n            \"title\": \"FBI Technical AnalystCo-Communications Liaison\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"(267) 808-3774\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(603) 952-2500\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"151653871\",\n            \"state\": \"NE\",\n            \"firstName\": \"test\",\n            \"crmId\": \"151653871\"\n        },\n        {\n            \"emailId\": \"test55@yahoo.com\",\n            \"contactName\": \"test 55\",\n            \"activityComments\": \"\",\n            \"city\": \"Silverthorne\",\n            \"subject\": \"\",\n            \"lastName\": \"55\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"169762331\",\n            \"customVarchar13\": \"\",\n            \"title\": \"\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"+919884351702\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(603) 386-0304\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"169762331\",\n            \"state\": \"CO\",\n            \"firstName\": \"test\",\n            \"crmId\": \"169762331\"\n        },\n        {\n            \"emailId\": \"\",\n            \"contactName\": \"test ramkumar\",\n            \"activityComments\": \"\",\n            \"city\": \"\",\n            \"subject\": \"\",\n            \"lastName\": \"ramkumar\",\n            \"customVarchar12\": \"\",\n            \"thirdPartyCrmTaskId\": \"389323960\",\n            \"customVarchar13\": \"\",\n            \"title\": \"title ramkumar\",\n            \"customVarchar3\": \"\",\n            \"customVarchar2\": \"\",\n            \"customVarchar1\": \"\",\n            \"customPhone1\": \"\",\n            \"websiteUrl\": \"\",\n            \"phone\": \"(603) 386-0304\",\n            \"duedate\": \"\",\n            \"accountName\": \"\",\n            \"activityId\": \"389323960\",\n            \"state\": \"\",\n            \"firstName\": \"test\",\n            \"crmId\": \"389323960\"\n        }\n    ]\n}"}],"_postman_id":"1007e35b-dc60-49ec-95ee-ed11aea24fa4"},{"name":"Create Prospect","id":"6b1b6fec-eaca-4cbc-a125-afae07084ad8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"name\":\"apollo\",\"groupName\":\"enrichment_order\",\"value\":4}"},"url":"https://{{koncert_dialers_api}}/mysession/createProspect","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","createProspect"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"65f18d1c-88c8-40a7-9af1-e6003bb1dc01","name":"Create Prospect","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"accountName\": \"\",\r\n    \"contactName\": \"Test Cadence\",\r\n    \"emailId\": \"testcadence90@yahoo.com\",\r\n    \"phone\": \"(603) 952-2507\",\r\n    \"title\": \"\",\r\n    \"crmId\": \"551241912\",\r\n    \"state\": \"\",\r\n    \"customPhone1\": \"\",\r\n    \"source\": \"salesloft\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/createProspect"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 3002136,\r\n            \"orgId\": 6993,\r\n            \"userId\": 14525,\r\n            \"crmId\": \"551241912\",\r\n            \"activityId\": null,\r\n            \"recordType\": \"Prospect\",\r\n            \"accountName\": null,\r\n            \"contactName\": \"Test Cadence\",\r\n            \"timezone\": \"EST\",\r\n            \"phone\": \"(603) 952-2507\",\r\n            \"callflagPhone\": \"Y\",\r\n            \"metadataPhone\": null,\r\n            \"dialerFormattedPhone\": null,\r\n            \"title\": null,\r\n            \"city\": null,\r\n            \"state\": null,\r\n            \"emailId\": \"testcadence90@yahoo.com\",\r\n            \"extension\": null,\r\n            \"qnotes\": null,\r\n            \"sfReportName\": null,\r\n            \"priorityValue\": 1,\r\n            \"tempPriorityValue\": 1,\r\n            \"reportPriority\": 1,\r\n            \"daCallDisposition\": null,\r\n            \"talkerCallDisposition\": null,\r\n            \"daCallComments\": null,\r\n            \"talkerCallComments\": null,\r\n            \"subject\": null,\r\n            \"isReferralOrInboundLeadRecord\": false,\r\n            \"liveConversationRateScore\": null,\r\n            \"technologyDataBasedScore\": null,\r\n            \"intentDataBasedScore\": null,\r\n            \"companyScore\": null,\r\n            \"leadScore\": 0,\r\n            \"rowProcessedFlag\": \"N\",\r\n            \"dialedFlag\": \"N\",\r\n            \"directPhoneAvailabilityScore\": null,\r\n            \"recentlyVerifiedScore\": null,\r\n            \"contactabiltyScore\": null,\r\n            \"firstName\": null,\r\n            \"lastName\": null,\r\n            \"isLeadScoreProcessed\": \"N\",\r\n            \"activityDatetime\": null,\r\n            \"customVarchar1\": null,\r\n            \"customVarchar2\": null,\r\n            \"customVarchar3\": null,\r\n            \"customVarchar4\": null,\r\n            \"customVarchar5\": null,\r\n            \"customVarchar6\": null,\r\n            \"customVarchar7\": null,\r\n            \"customVarchar8\": null,\r\n            \"customVarchar9\": null,\r\n            \"customVarchar10\": null,\r\n            \"customVarchar11\": null,\r\n            \"customVarchar12\": null,\r\n            \"customVarchar13\": null,\r\n            \"customVarchar14\": null,\r\n            \"customVarchar15\": null,\r\n            \"customVarchar16\": null,\r\n            \"customVarchar17\": null,\r\n            \"customVarchar18\": null,\r\n            \"customVarchar19\": null,\r\n            \"customPhone1\": null,\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"customPhone4\": null,\r\n            \"customDate1\": null,\r\n            \"customTimestamp1\": null,\r\n            \"customTimestamp2\": null,\r\n            \"callerIdPhone\": null,\r\n            \"prospectId\": null,\r\n            \"touchStepNo\": null,\r\n            \"memberCurrentTouchId\": null,\r\n            \"duedate\": null,\r\n            \"multiTouchId\": null,\r\n            \"inboundRecordsPk\": null,\r\n            \"relationshipName\": null,\r\n            \"crmType\": \"salesloft\",\r\n            \"accountId\": null,\r\n            \"trucadenceMemberTaskId\": null,\r\n            \"callCounter\": null,\r\n            \"campaignName\": null,\r\n            \"currentTouchId\": null,\r\n            \"currentTouchType\": null,\r\n            \"emailCounter\": null,\r\n            \"firstDialedDate\": null,\r\n            \"firstEmailedDate\": null,\r\n            \"lastDaCallOutcome\": null,\r\n            \"lastDialedDate\": null,\r\n            \"lastEmailOutcome\": null,\r\n            \"lastEmailedDate\": null,\r\n            \"lastTalkerCallOutcome\": null,\r\n            \"lastTouchDateTime\": null,\r\n            \"linkedinUrl\": null,\r\n            \"optoutFlag\": false,\r\n            \"tag\": null,\r\n            \"activityComments\": null,\r\n            \"totalEngagementScore\": 0,\r\n            \"modifiedDatetime\": null,\r\n            \"taskType\": null,\r\n            \"websiteUrl\": null,\r\n            \"createdDate\": null,\r\n            \"taskPriority\": null,\r\n            \"thirdPartyCrmTaskId\": null,\r\n            \"personaId\": null,\r\n            \"opportunityName\": null,\r\n            \"opportunityId\": null,\r\n            \"opportunityAmount\": null,\r\n            \"opportunityStage\": null,\r\n            \"opportunityCloseDate\": null,\r\n            \"lastAiCallOutcome\": null,\r\n            \"taskQueue\": null,\r\n            \"lastAttemptedDate\": null,\r\n            \"lastConnectedDate\": null,\r\n            \"persona\": null,\r\n            \"sourceListName\": null,\r\n            \"enrichedProspectsDetailId\": null,\r\n            \"dialerSequenceId\": null,\r\n            \"dialerAccountId\": null,\r\n            \"enrichedProviderId\": null,\r\n            \"canAssociateCompanyRecord\": false,\r\n            \"sequenceId\": null,\r\n            \"gongContactId\": null,\r\n            \"gongLeadId\": null,\r\n            \"dncAccountsId\": null,\r\n            \"isParkingLotRecord\": false,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"associations\": {\r\n                \"dataList\": {\r\n                    \"id\": 27455\r\n                }\r\n            },\r\n            \"phoneInfo\": [\r\n                {\r\n                    \"columnName\": \"phone\",\r\n                    \"phoneStatus\": null\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"6b1b6fec-eaca-4cbc-a125-afae07084ad8"}],"id":"2be30ce2-5752-4654-afb0-8184e0f7e1ef","description":"<p>To connect the DialerServer and start dialing the Prospects</p>\n","_postman_id":"2be30ce2-5752-4654-afb0-8184e0f7e1ef","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Call Notes","item":[{"name":"Get All Call Notes","id":"8b3adbec-68f6-4ba1-a267-95e48a48ab1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/callnotes?page[limit]=25&page[offset]=0","description":"<p>Retrieve all call notes with optional filters, pagination, sorting, and associations</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callnotes"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Offset for pagination</p>\n","type":"text/plain"},"key":"page[offset]","value":"0"},{"disabled":true,"description":{"content":"<p>Filter by user ID</p>\n","type":"text/plain"},"key":"filter[user][id]","value":"20223"},{"disabled":true,"description":{"content":"<p>Filter by call notes ID</p>\n","type":"text/plain"},"key":"filter[id]","value":"464"},{"disabled":true,"description":{"content":"<p>Filter by call list record ID</p>\n","type":"text/plain"},"key":"filter[callListRecordId]","value":"3173160"},{"disabled":true,"description":{"content":"<p>Sort by id in descending order</p>\n","type":"text/plain"},"key":"sort[id]","value":"desc"},{"disabled":true,"description":{"content":"<p>Sort by created date</p>\n","type":"text/plain"},"key":"sort[createdDate]","value":"desc"},{"disabled":true,"description":{"content":"<p>Include user associations</p>\n","type":"text/plain"},"key":"include","value":"user"}],"variable":[]}},"response":[{"id":"f3b3ae50-0ca3-422d-8964-cb7ef0f265dc","name":"Success Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/callnotes?page[limit]=25&page[offset]=0","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["callnotes"],"query":[{"key":"page[limit]","value":"25"},{"key":"page[offset]","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 464,\n            \"accountName\": \"Tesing Prospect Data\",\n            \"contactName\": \"Alberto Ken\",\n            \"crmId\": \"crmgenkey_af184867-b447-38b1-a402-76f5ed170ab0\",\n            \"phone\": \"(603) 952-2500\",\n            \"email\": \"Testing770@testing.com\",\n            \"callNotes\": \"ca;lll back\",\n            \"createdDate\": \"2025-03-06T06:59:09Z\",\n            \"updatedDate\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 20223\n                }\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 2,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"8b3adbec-68f6-4ba1-a267-95e48a48ab1e"},{"name":"Create Call Note","id":"37542781-f5df-4f17-92a2-b5586a632663","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"callNotes\": \"callnotes\",\n    \"callListRecordId\": 3173160\n}"},"url":"https://{{koncert_dialers_api}}/callnotes","description":"<p>Create a new call note</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callnotes"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"a089116b-c8ca-4eeb-890a-73b9f15f0f9a","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"callNotes\": \"callnotes\",\n    \"callListRecordId\": 3173160\n}"},"url":"https://{{koncert_dialers_api}}/callnotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 550,\n            \"accountName\": \"Mani Group\",\n            \"contactName\": \"Raghu88 Ram88\",\n            \"crmId\": \"crmgenkey_5d501dcc-fde3-359f-ae5c-0722e018c97b\",\n            \"phone\": \"(603) 952-2507\",\n            \"email\": \"Quaity87@gmail.com\",\n            \"callNotes\": \"callnotes\",\n            \"createdDate\": \"2025-11-19T11:58:38Z\",\n            \"updatedDate\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 20223\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"37542781-f5df-4f17-92a2-b5586a632663"},{"name":"Update Call Note","id":"121e85f8-70a6-40e6-aff8-599d5854a8bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"callNotes\": \"Updated call notes text\",\n    \"callListRecordId\": 3173160\n}"},"url":"https://{{koncert_dialers_api}}/callnotes/:id","description":"<p>Update an existing call note</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["callnotes",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"4ef7ec61-60e5-4a7a-860d-57fb21efbf6b","description":{"content":"<p>Call Note ID</p>\n","type":"text/plain"},"type":"any","value":"550","key":"id"}]}},"response":[{"id":"8563132e-9d8b-495a-9d1d-b5e8e74c756f","name":"Success Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"callNotes\": \"Updated call notes text\",\n    \"callListRecordId\": 3173160\n}"},"url":"https://{{koncert_dialers_api}}/callnotes/550"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 550,\n            \"accountName\": \"Mani Group\",\n            \"contactName\": \"Raghu88 Ram88\",\n            \"crmId\": \"crmgenkey_5d501dcc-fde3-359f-ae5c-0722e018c97b\",\n            \"phone\": \"(603) 952-2507\",\n            \"email\": \"Quaity87@gmail.com\",\n            \"callNotes\": \"Updated call notes text\",\n            \"createdDate\": \"2025-11-19T11:58:38Z\",\n            \"updatedDate\": \"2025-11-19T12:15:22Z\",\n            \"associations\": {\n                \"user\": {\n                    \"id\": 20223\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"121e85f8-70a6-40e6-aff8-599d5854a8bf"}],"id":"5c884fb8-674f-445c-b846-7ab096c24789","_postman_id":"5c884fb8-674f-445c-b846-7ab096c24789","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"My Session","id":"831332bf-f05e-492f-be6e-3c89adb52dcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"1a73cd66-ad76-4bad-88e3-215d70ad8af3","name":"My Session","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/mysession?includeAssociations[]=dataList&field[dataList]=[id,listName]&page[limit]=10&page[offset]=0","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["mysession"],"query":[{"key":"includeAssociations[]","value":"dataList"},{"key":"field[dataList]","value":"[id,listName]"},{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"accountName\": \"Chef Manager\",\r\n            \"title\": null,\r\n            \"contactName\": \"Adela Baldwin\",\r\n            \"subject\": \"Test\",\r\n            \"duedate\": \"2022-12-29\",\r\n            \"phone\": null,\r\n            \"timezone\": null,\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"Adela_Baldwin5222@nickia.com\",\r\n            \"city\": \"Richmond\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706127,\r\n            \"crmId\": \"crmgenkey_6a5a6ba2-1fa5-36d2-8220-8d77c71207dd\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 266155,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": null,\r\n            \"title\": null,\r\n            \"contactName\": \"Alwin 3\",\r\n            \"subject\": \"Koncert\",\r\n            \"duedate\": \"2022-12-31\",\r\n            \"phone\": null,\r\n            \"timezone\": null,\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": null,\r\n            \"city\": null,\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706126,\r\n            \"crmId\": \"crmgenkey_bda6b903-b499-3c3e-b947-da8bde56cb45\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 268413,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": \"Doctor\",\r\n            \"title\": null,\r\n            \"contactName\": \"Daphne Whitmore\",\r\n            \"subject\": \"Test 23\",\r\n            \"duedate\": \"2022-12-23\",\r\n            \"phone\": null,\r\n            \"timezone\": \"EST\",\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"apugalendi@gembrill.com\",\r\n            \"city\": \"Wilmington\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706125,\r\n            \"crmId\": \"crmgenkey_2f2bc9c4-0956-37e6-919f-f154810925e4\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 266610,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": \"Doctor\",\r\n            \"title\": null,\r\n            \"contactName\": \"Daphne Whitmore\",\r\n            \"subject\": \"Test 23\",\r\n            \"duedate\": \"2022-12-23\",\r\n            \"phone\": null,\r\n            \"timezone\": \"EST\",\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"apugalendi@gembrill.com\",\r\n            \"city\": \"Wilmington\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706124,\r\n            \"crmId\": \"crmgenkey_2f2bc9c4-0956-37e6-919f-f154810925e4\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 266610,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": null,\r\n            \"title\": \"Test12\",\r\n            \"contactName\": \"Domenic Trent\",\r\n            \"subject\": \"Call Task Update issue\",\r\n            \"duedate\": \"2022-12-30\",\r\n            \"phone\": \"(534) 279-2278\",\r\n            \"timezone\": \"CST\",\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"Domenic_Trent650@liret.org\",\r\n            \"city\": \"California\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706123,\r\n            \"crmId\": \"crmgenkey_b057532f-feda-30a8-a8f9-67c4b481451a\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 264317,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": null,\r\n            \"title\": \"Test12\",\r\n            \"contactName\": \"Domenic Trent\",\r\n            \"subject\": null,\r\n            \"duedate\": \"2023-01-21\",\r\n            \"phone\": \"(534) 279-2278\",\r\n            \"timezone\": \"CST\",\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"Domenic_Trent650@liret.org\",\r\n            \"city\": \"California\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706122,\r\n            \"crmId\": \"crmgenkey_b057532f-feda-30a8-a8f9-67c4b481451a\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 264317,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": \"Lecturer\",\r\n            \"title\": null,\r\n            \"contactName\": \"Eduardo Hogg\",\r\n            \"subject\": null,\r\n            \"duedate\": \"2023-01-21\",\r\n            \"phone\": \"(771) 387-1655\",\r\n            \"timezone\": null,\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"Eduardo_Hogg588@grannar.com\",\r\n            \"city\": \"Nutley\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706121,\r\n            \"crmId\": \"crmgenkey_8db5e13b-9088-3b51-9574-74d8f7a6c5b5\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 264209,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": \"Krei 800 Radio Station\",\r\n            \"title\": null,\r\n            \"contactName\": \"Elfriede\",\r\n            \"subject\": null,\r\n            \"duedate\": \"2023-01-21\",\r\n            \"phone\": \"(635) 317-5875\",\r\n            \"timezone\": null,\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"ebakeley@bakeley.com\",\r\n            \"city\": \"Grand-Sault/Grand Falls\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706120,\r\n            \"crmId\": \"crmgenkey_ea0cb0e1-1a5b-34d5-b696-16734a436c40\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 263119,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": \"Service Supervisor\",\r\n            \"title\": null,\r\n            \"contactName\": \"Elijah Addley\",\r\n            \"subject\": null,\r\n            \"duedate\": \"2023-01-21\",\r\n            \"phone\": null,\r\n            \"timezone\": null,\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"Elijah_Addley492@muall.tech\",\r\n            \"city\": \"Union City\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706119,\r\n            \"crmId\": \"crmgenkey_b7a14b16-90c7-3eae-bb6b-d421d59c60b6\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 266814,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        },\r\n        {\r\n            \"accountName\": \"Investment  Advisor\",\r\n            \"title\": null,\r\n            \"contactName\": \"Elise Moore\",\r\n            \"subject\": null,\r\n            \"duedate\": \"2023-01-21\",\r\n            \"phone\": null,\r\n            \"timezone\": null,\r\n            \"customPhone2\": null,\r\n            \"customPhone3\": null,\r\n            \"emailId\": \"Elise_Moore8499@yahoo.com\",\r\n            \"city\": \"Sioux Falls\",\r\n            \"customVarchar1\": null,\r\n            \"customPhone5\": null,\r\n            \"customPhone1\": null,\r\n            \"extensionCustomPhone3\": null,\r\n            \"customBoolean4\": false,\r\n            \"id\": 1706118,\r\n            \"crmId\": \"crmgenkey_be671ee4-98c4-304a-bdd2-1c49ab86ddf6\",\r\n            \"dataListId\": null,\r\n            \"reportPriority\": 1,\r\n            \"cadenceId\": 265888,\r\n            \"doNotCallUntil\": null,\r\n            \"doNotCall\": false,\r\n            \"isParkingLotRecord\": false\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 17,\r\n        \"limit\": 10,\r\n        \"offset\": 0\r\n    }\r\n}"},{"id":"10c49e07-598d-4cbd-b7a2-ed3432a56f7d","name":"My Session with sparseFieldSets","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/mysession?page[limit]=2&field=[firstDialedDate,rowProcessedFlag,sfPk,activityId,emailId]&field[dataList]=[id,listName]&includeAssociations[]=dataList","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["mysession"],"query":[{"key":"page[limit]","value":"2"},{"key":"field","value":"[firstDialedDate,rowProcessedFlag,sfPk,activityId,emailId]"},{"key":"field[dataList]","value":"[id,listName]"},{"key":"includeAssociations[]","value":"dataList"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"crmId\": \"crmgenkey_fa82034f-23ce-3c72-813b-f8931fb73c8e\",\n            \"activityId\": null,\n            \"emailId\": null,\n            \"rowProcessedFlag\": \"Y\",\n            \"firstDialedDate\": null,\n            \"associations\": {\n                \"dataList\": {\n                    \"id\": 9603\n                }\n            }\n        },\n        {\n            \"crmId\": \"crmgenkey_026db34b-70a4-3965-93ba-33354dd22fdd\",\n            \"activityId\": null,\n            \"emailId\": null,\n            \"rowProcessedFlag\": \"Y\",\n            \"firstDialedDate\": null,\n            \"associations\": {\n                \"dataList\": {\n                    \"id\": 9603\n                }\n            }\n        }\n    ],\n    \"includeAssociation\": {\n        \"dataList\": [\n            {\n                \"id\": 9603,\n                \"listName\": \"Cadence - Pending Calls\"\n            }\n        ]\n    },\n    \"paging\": {\n        \"totalCount\": 16,\n        \"limit\": 2,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"831332bf-f05e-492f-be6e-3c89adb52dcf"},{"name":"Statistics","id":"ccc69ebd-20ee-4a03-b34a-c1bd7bf17e20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/callListStats","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","callListStats"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"faaa41d5-ee07-46a8-b01c-b44ee839ced4","name":"Statistics","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/callListStats"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"overall\": 136,\n            \"total\": 136,\n            \"dialable\": 26,\n            \"nonDialable\": 105,\n            \"dialed\": 5\n        }\n    ]\n}"}],"_postman_id":"ccc69ebd-20ee-4a03-b34a-c1bd7bf17e20"},{"name":"My Session by Id","id":"5b822f2b-df90-44d3-bb9c-d89a6ea9794a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/:{id}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession",":{id}"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"62dfe079-b0dc-4254-94b3-e2dc849f4394","type":"any","value":"callListRecord Id","key":"{id}"}]}},"response":[{"id":"5151588c-393c-41f4-a5df-75a8561af3ea","name":"My Session by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/mysession/1706127?includeAssociations[]=dataList&field[dataList]=[id,listName]","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["mysession","1706127"],"query":[{"key":"includeAssociations[]","value":"dataList"},{"key":"field[dataList]","value":"[id,listName]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1706127,\n            \"orgId\": 2355,\n            \"userId\": 7424,\n            \"crmId\": \"crmgenkey_6a5a6ba2-1fa5-36d2-8220-8d77c71207dd\",\n            \"activityId\": null,\n            \"dataListId\": null,\n            \"recordType\": \"Activity\",\n            \"accountName\": \"Chef Manager\",\n            \"contactName\": \"Adela Baldwin\",\n            \"timezone\": null,\n            \"phone\": null,\n            \"callflagPhone\": \"Y\",\n            \"metadataPhone\": null,\n            \"dialerFormattedPhone\": null,\n            \"title\": null,\n            \"city\": \"Richmond\",\n            \"state\": \"VA\",\n            \"emailId\": \"Adela_Baldwin5222@nickia.com\",\n            \"extension\": null,\n            \"qnotes\": null,\n            \"sfReportName\": \"Cadence\",\n            \"priorityValue\": 1,\n            \"tempPriorityValue\": 1,\n            \"reportPriority\": 1,\n            \"daCallDisposition\": null,\n            \"talkerCallDisposition\": null,\n            \"daCallComments\": null,\n            \"talkerCallComments\": null,\n            \"subject\": \"Test\",\n            \"isReferralOrInboundLeadRecord\": false,\n            \"liveConversationRateScore\": null,\n            \"technologyDataBasedScore\": null,\n            \"intentDataBasedScore\": null,\n            \"companyScore\": null,\n            \"leadScore\": 0,\n            \"rowProcessedFlag\": \"N\",\n            \"dialedFlag\": \"N\",\n            \"directPhoneAvailabilityScore\": null,\n            \"recentlyVerifiedScore\": null,\n            \"contactabiltyScore\": null,\n            \"firstName\": \"Adela\",\n            \"lastName\": \"Baldwin\",\n            \"isLeadScoreProcessed\": \"N\",\n            \"activityDatetime\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": \"(800) 817-0075\",\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"callflagCustomPhone1\": \"Y\",\n            \"callflagCustomPhone2\": \"Y\",\n            \"callflagCustomPhone3\": \"Y\",\n            \"callflagCustomPhone4\": \"Y\",\n            \"callflagCustomPhone5\": \"Y\",\n            \"metadataCustomPhone1\": null,\n            \"metadataCustomPhone2\": null,\n            \"metadataCustomPhone3\": null,\n            \"metadataCustomPhone4\": null,\n            \"metadataCustomPhone5\": null,\n            \"dialerFormattedCustomPhone1\": null,\n            \"dialerFormattedCustomPhone2\": null,\n            \"dialerFormattedCustomPhone3\": null,\n            \"dialerFormattedCustomPhone4\": null,\n            \"dialerFormattedCustomPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"callerIdPhone\": null,\n            \"cadenceId\": 266155,\n            \"touchStepNo\": null,\n            \"memberCurrentTouchId\": 0,\n            \"duedate\": \"2022-12-29\",\n            \"multiTouchId\": 10535,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"inboundRecordsPk\": null,\n            \"relationshipName\": null,\n            \"crmType\": null,\n            \"accountId\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"trucadenceMemberTaskId\": 7991,\n            \"callCounter\": 0,\n            \"campaignName\": \"Performance Personalize Email\",\n            \"currentTouchId\": 0,\n            \"currentTouchType\": \"EMAIL\",\n            \"emailCounter\": 5,\n            \"firstDialedDate\": null,\n            \"firstEmailedDate\": null,\n            \"lastDaCallOutcome\": null,\n            \"lastDialedDate\": null,\n            \"lastEmailOutcome\": \"Sent\",\n            \"lastEmailedDate\": null,\n            \"lastTalkerCallOutcome\": null,\n            \"lastTouchDateTime\": null,\n            \"linkedinUrl\": null,\n            \"optoutFlag\": false,\n            \"tag\": \"21Jul\",\n            \"activityComments\": \"Task34\",\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"totalEngagementScore\": 15035,\n            \"customVarchar21\": null,\n            \"customVarchar22\": null,\n            \"customVarchar23\": null,\n            \"customVarchar24\": null,\n            \"customVarchar25\": null,\n            \"customVarchar26\": null,\n            \"customVarchar27\": null,\n            \"customVarchar28\": null,\n            \"customVarchar29\": null,\n            \"customVarchar30\": null,\n            \"customVarchar31\": null,\n            \"customVarchar32\": null,\n            \"customVarchar33\": null,\n            \"customVarchar34\": null,\n            \"customVarchar35\": null,\n            \"customDate6\": null,\n            \"customDate7\": null,\n            \"customDate8\": null,\n            \"customPhone6\": null,\n            \"callFlagCustomPhone6\": null,\n            \"metadataCustomPhone6\": null,\n            \"dialerFormattedCustomPhone6\": null,\n            \"timezoneCustomPhone6\": null,\n            \"extensionCustomPhone6\": null,\n            \"customPhone7\": null,\n            \"callFlagCustomPhone7\": null,\n            \"metadataCustomPhone7\": null,\n            \"dialerFormattedCustomPhone7\": null,\n            \"timezoneCustomPhone7\": null,\n            \"extensionCustomPhone7\": null,\n            \"customVarchar36\": null,\n            \"customPhone8\": null,\n            \"callFlagCustomPhone8\": null,\n            \"metadataCustomPhone8\": null,\n            \"dialerFormattedCustomPhone8\": null,\n            \"timezoneCustomPhone8\": null,\n            \"customPhone9\": null,\n            \"callFlagCustomPhone9\": null,\n            \"metadataCustomPhone9\": null,\n            \"dialerFormattedCustomPhone9\": null,\n            \"timezoneCustomPhone9\": null,\n            \"customPhone10\": null,\n            \"callFlagCustomPhone10\": null,\n            \"metadataCustomPhone10\": null,\n            \"dialerFormattedCustomPhone10\": null,\n            \"timezoneCustomPhone10\": null,\n            \"customVarchar37\": null,\n            \"customVarchar38\": null,\n            \"customVarchar39\": null,\n            \"customVarchar40\": null,\n            \"customVarchar41\": null,\n            \"customVarchar42\": null,\n            \"customVarchar43\": null,\n            \"customVarchar44\": null,\n            \"customVarchar45\": null,\n            \"customVarchar46\": null,\n            \"customVarchar47\": null,\n            \"customVarchar48\": null,\n            \"customVarchar49\": null,\n            \"customVarchar50\": null,\n            \"customDate9\": null,\n            \"customDate10\": null,\n            \"customDate11\": null,\n            \"customDate12\": null,\n            \"customDate13\": null,\n            \"customDate14\": null,\n            \"customDate15\": null,\n            \"customDate16\": null,\n            \"customDate17\": null,\n            \"customPhone11\": null,\n            \"callFlagCustomPhone11\": null,\n            \"metadataCustomPhone11\": null,\n            \"dialerFormattedCustomPhone11\": null,\n            \"timezoneCustomPhone11\": null,\n            \"customPhone12\": null,\n            \"callFlagCustomPhone12\": null,\n            \"metadataCustomPhone12\": null,\n            \"dialerFormattedCustomPhone12\": null,\n            \"timezoneCustomPhone12\": null,\n            \"customPhone13\": null,\n            \"callFlagCustomPhone13\": null,\n            \"metadataCustomPhone13\": null,\n            \"dialerFormattedCustomPhone13\": null,\n            \"timezoneCustomPhone13\": null,\n            \"customPhone14\": null,\n            \"callFlagCustomPhone14\": null,\n            \"metadataCustomPhone14\": null,\n            \"dialerFormattedCustomPhone14\": null,\n            \"timezoneCustomPhone14\": null,\n            \"customPhone15\": null,\n            \"callFlagCustomPhone15\": null,\n            \"metadataCustomPhone15\": null,\n            \"dialerFormattedCustomPhone15\": null,\n            \"timezoneCustomPhone15\": null,\n            \"customPhone16\": null,\n            \"callFlagCustomPhone16\": null,\n            \"metadataCustomPhone16\": null,\n            \"dialerFormattedCustomPhone16\": null,\n            \"timezoneCustomPhone16\": null,\n            \"customPhone17\": null,\n            \"callFlagCustomPhone17\": null,\n            \"metadataCustomPhone17\": null,\n            \"dialerFormattedCustomPhone17\": null,\n            \"timezoneCustomPhone17\": null,\n            \"customPhone18\": null,\n            \"callFlagCustomPhone18\": null,\n            \"metadataCustomPhone18\": null,\n            \"dialerFormattedCustomPhone18\": null,\n            \"timezoneCustomPhone18\": null,\n            \"customPhone19\": null,\n            \"callFlagCustomPhone19\": null,\n            \"metadataCustomPhone19\": null,\n            \"dialerFormattedCustomPhone19\": null,\n            \"timezoneCustomPhone19\": null,\n            \"modifiedDatetime\": null,\n            \"customDate18\": null,\n            \"customDate19\": null,\n            \"customDate20\": null,\n            \"customPhone20\": null,\n            \"callFlagCustomPhone20\": null,\n            \"metadataCustomPhone20\": null,\n            \"dialerFormattedCustomPhone20\": null,\n            \"timezoneCustomPhone20\": null,\n            \"extensionCustomPhone20\": null,\n            \"taskType\": null,\n            \"isParkingLotRecord\": false\n        }\n    ]\n}"}],"_postman_id":"5b822f2b-df90-44d3-bb9c-d89a6ea9794a"},{"name":"Update","id":"ad3c0c35-c9b5-4dcc-aff2-51afeb2a7702","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/:{id}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession",":{id}"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"e4463888-b0d5-4c7a-b835-91a3062b1ce7","type":"any","value":"callListRecord Id","key":"{id}"}]}},"response":[{"id":"8b4cf369-968a-4ffb-86e5-b394df772281","name":"Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"phone\": \"603) 386-0304 EXT 345\",\r\n    \"firstName\": \"JUnit - 5BhHC\",\r\n    \"city\": \"New york\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/mysession/1706127"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1706127,\n            \"orgId\": 2355,\n            \"userId\": 7424,\n            \"crmId\": \"crmgenkey_6a5a6ba2-1fa5-36d2-8220-8d77c71207dd\",\n            \"activityId\": null,\n            \"dataListId\": null,\n            \"recordType\": \"Activity\",\n            \"accountName\": \"Chef Manager\",\n            \"contactName\": \"JUnit - 5BhHC Baldwin\",\n            \"timezone\": \"EST\",\n            \"phone\": \"(603) 386-0304\",\n            \"callflagPhone\": \"Y\",\n            \"metadataPhone\": null,\n            \"dialerFormattedPhone\": null,\n            \"title\": null,\n            \"city\": \"New york\",\n            \"state\": \"VA\",\n            \"emailId\": \"Adela_Baldwin5222@nickia.com\",\n            \"extension\": \"345\",\n            \"qnotes\": null,\n            \"sfReportName\": \"Cadence\",\n            \"priorityValue\": 1,\n            \"tempPriorityValue\": 1,\n            \"reportPriority\": 1,\n            \"daCallDisposition\": null,\n            \"talkerCallDisposition\": null,\n            \"daCallComments\": null,\n            \"talkerCallComments\": null,\n            \"subject\": \"Test\",\n            \"isReferralOrInboundLeadRecord\": false,\n            \"liveConversationRateScore\": null,\n            \"technologyDataBasedScore\": null,\n            \"intentDataBasedScore\": null,\n            \"companyScore\": null,\n            \"leadScore\": 0,\n            \"rowProcessedFlag\": \"N\",\n            \"dialedFlag\": \"N\",\n            \"directPhoneAvailabilityScore\": null,\n            \"recentlyVerifiedScore\": null,\n            \"contactabiltyScore\": null,\n            \"firstName\": \"JUnit - 5BhHC\",\n            \"lastName\": \"Baldwin\",\n            \"isLeadScoreProcessed\": \"N\",\n            \"activityDatetime\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": \"(800) 817-0075\",\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"callflagCustomPhone1\": \"Y\",\n            \"callflagCustomPhone2\": \"Y\",\n            \"callflagCustomPhone3\": \"Y\",\n            \"callflagCustomPhone4\": \"Y\",\n            \"callflagCustomPhone5\": \"Y\",\n            \"metadataCustomPhone1\": null,\n            \"metadataCustomPhone2\": null,\n            \"metadataCustomPhone3\": null,\n            \"metadataCustomPhone4\": null,\n            \"metadataCustomPhone5\": null,\n            \"dialerFormattedCustomPhone1\": null,\n            \"dialerFormattedCustomPhone2\": null,\n            \"dialerFormattedCustomPhone3\": null,\n            \"dialerFormattedCustomPhone4\": null,\n            \"dialerFormattedCustomPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"callerIdPhone\": null,\n            \"cadenceId\": 266155,\n            \"touchStepNo\": null,\n            \"memberCurrentTouchId\": 0,\n            \"duedate\": \"2022-12-29\",\n            \"multiTouchId\": 10535,\n            \"customBoolean1\": false,\n            \"customBoolean2\": false,\n            \"customBoolean3\": false,\n            \"customBoolean4\": false,\n            \"customBoolean5\": false,\n            \"inboundRecordsPk\": null,\n            \"relationshipName\": null,\n            \"crmType\": null,\n            \"accountId\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"trucadenceMemberTaskId\": 7991,\n            \"callCounter\": 0,\n            \"campaignName\": \"Performance Personalize Email\",\n            \"currentTouchId\": 0,\n            \"currentTouchType\": \"EMAIL\",\n            \"emailCounter\": 5,\n            \"firstDialedDate\": null,\n            \"firstEmailedDate\": null,\n            \"lastDaCallOutcome\": null,\n            \"lastDialedDate\": null,\n            \"lastEmailOutcome\": \"Sent\",\n            \"lastEmailedDate\": null,\n            \"lastTalkerCallOutcome\": null,\n            \"lastTouchDateTime\": null,\n            \"linkedinUrl\": null,\n            \"optoutFlag\": false,\n            \"tag\": \"21Jul\",\n            \"activityComments\": \"Task34\",\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"totalEngagementScore\": 15035,\n            \"customVarchar21\": null,\n            \"customVarchar22\": null,\n            \"customVarchar23\": null,\n            \"customVarchar24\": null,\n            \"customVarchar25\": null,\n            \"customVarchar26\": null,\n            \"customVarchar27\": null,\n            \"customVarchar28\": null,\n            \"customVarchar29\": null,\n            \"customVarchar30\": null,\n            \"customVarchar31\": null,\n            \"customVarchar32\": null,\n            \"customVarchar33\": null,\n            \"customVarchar34\": null,\n            \"customVarchar35\": null,\n            \"customDate6\": null,\n            \"customDate7\": null,\n            \"customDate8\": null,\n            \"customPhone6\": null,\n            \"callFlagCustomPhone6\": null,\n            \"metadataCustomPhone6\": null,\n            \"dialerFormattedCustomPhone6\": null,\n            \"timezoneCustomPhone6\": null,\n            \"extensionCustomPhone6\": null,\n            \"customPhone7\": null,\n            \"callFlagCustomPhone7\": null,\n            \"metadataCustomPhone7\": null,\n            \"dialerFormattedCustomPhone7\": null,\n            \"timezoneCustomPhone7\": null,\n            \"extensionCustomPhone7\": null,\n            \"customVarchar36\": null,\n            \"customPhone8\": null,\n            \"callFlagCustomPhone8\": null,\n            \"metadataCustomPhone8\": null,\n            \"dialerFormattedCustomPhone8\": null,\n            \"timezoneCustomPhone8\": null,\n            \"customPhone9\": null,\n            \"callFlagCustomPhone9\": null,\n            \"metadataCustomPhone9\": null,\n            \"dialerFormattedCustomPhone9\": null,\n            \"timezoneCustomPhone9\": null,\n            \"customPhone10\": null,\n            \"callFlagCustomPhone10\": null,\n            \"metadataCustomPhone10\": null,\n            \"dialerFormattedCustomPhone10\": null,\n            \"timezoneCustomPhone10\": null,\n            \"customVarchar37\": null,\n            \"customVarchar38\": null,\n            \"customVarchar39\": null,\n            \"customVarchar40\": null,\n            \"customVarchar41\": null,\n            \"customVarchar42\": null,\n            \"customVarchar43\": null,\n            \"customVarchar44\": null,\n            \"customVarchar45\": null,\n            \"customVarchar46\": null,\n            \"customVarchar47\": null,\n            \"customVarchar48\": null,\n            \"customVarchar49\": null,\n            \"customVarchar50\": null,\n            \"customDate9\": null,\n            \"customDate10\": null,\n            \"customDate11\": null,\n            \"customDate12\": null,\n            \"customDate13\": null,\n            \"customDate14\": null,\n            \"customDate15\": null,\n            \"customDate16\": null,\n            \"customDate17\": null,\n            \"customPhone11\": null,\n            \"callFlagCustomPhone11\": null,\n            \"metadataCustomPhone11\": null,\n            \"dialerFormattedCustomPhone11\": null,\n            \"timezoneCustomPhone11\": null,\n            \"customPhone12\": null,\n            \"callFlagCustomPhone12\": null,\n            \"metadataCustomPhone12\": null,\n            \"dialerFormattedCustomPhone12\": null,\n            \"timezoneCustomPhone12\": null,\n            \"customPhone13\": null,\n            \"callFlagCustomPhone13\": null,\n            \"metadataCustomPhone13\": null,\n            \"dialerFormattedCustomPhone13\": null,\n            \"timezoneCustomPhone13\": null,\n            \"customPhone14\": null,\n            \"callFlagCustomPhone14\": null,\n            \"metadataCustomPhone14\": null,\n            \"dialerFormattedCustomPhone14\": null,\n            \"timezoneCustomPhone14\": null,\n            \"customPhone15\": null,\n            \"callFlagCustomPhone15\": null,\n            \"metadataCustomPhone15\": null,\n            \"dialerFormattedCustomPhone15\": null,\n            \"timezoneCustomPhone15\": null,\n            \"customPhone16\": null,\n            \"callFlagCustomPhone16\": null,\n            \"metadataCustomPhone16\": null,\n            \"dialerFormattedCustomPhone16\": null,\n            \"timezoneCustomPhone16\": null,\n            \"customPhone17\": null,\n            \"callFlagCustomPhone17\": null,\n            \"metadataCustomPhone17\": null,\n            \"dialerFormattedCustomPhone17\": null,\n            \"timezoneCustomPhone17\": null,\n            \"customPhone18\": null,\n            \"callFlagCustomPhone18\": null,\n            \"metadataCustomPhone18\": null,\n            \"dialerFormattedCustomPhone18\": null,\n            \"timezoneCustomPhone18\": null,\n            \"customPhone19\": null,\n            \"callFlagCustomPhone19\": null,\n            \"metadataCustomPhone19\": null,\n            \"dialerFormattedCustomPhone19\": null,\n            \"timezoneCustomPhone19\": null,\n            \"modifiedDatetime\": \"2023-01-20T14:20:42Z\",\n            \"customDate18\": null,\n            \"customDate19\": null,\n            \"customDate20\": null,\n            \"customPhone20\": null,\n            \"callFlagCustomPhone20\": null,\n            \"metadataCustomPhone20\": null,\n            \"dialerFormattedCustomPhone20\": null,\n            \"timezoneCustomPhone20\": null,\n            \"extensionCustomPhone20\": null,\n            \"taskType\": null,\n            \"isParkingLotRecord\": false\n        }\n    ]\n}"}],"_postman_id":"ad3c0c35-c9b5-4dcc-aff2-51afeb2a7702"},{"name":"Delete","id":"c046c15b-a804-4dff-9799-23597f5a3eee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/mysession","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"ce3d362d-2091-4686-88fd-7c35a815e375","name":"Delete","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/mysession"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\":\"success\"\r\n}"}],"_postman_id":"c046c15b-a804-4dff-9799-23597f5a3eee"},{"name":"Priority","id":"d437dad3-816e-4052-9dc8-19466709b4cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/:{id}/priority/:{priorrity}","description":"<p>To increment/decrement the priority of the records.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession",":{id}","priority",":{priorrity}"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"72a7f12e-90e4-42eb-bd32-871d2f4da373","type":"any","value":"callListRecord Id","key":"{id}"},{"id":"8e88f8ab-6d65-4593-aa67-3fba479af85f","type":"any","value":"increment/decrement","key":"{priorrity}"}]}},"response":[{"id":"56da6b48-907b-41c3-8b87-91926edd94ac","name":"Priority","originalRequest":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/1752026/priority/increment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1752026,\n            \"orgId\": 2355,\n            \"userId\": 7424,\n            \"crmId\": \"crmgenkey_ccaeb4eb-4238-39e1-bbeb-275b327dd76e\",\n            \"activityId\": null,\n            \"associations\": {\n                \"dataList\": {\n                    \"id\": 11000\n                }\n            },\n            \"recordType\": null,\n            \"accountName\": \"Beck Horizon Builders\",\n            \"contactName\": \"Arlene\",\n            \"timezone\": \"EST\",\n            \"phone\": \"(603) 386-0304\",\n            \"callflagPhone\": \"Y\",\n            \"metadataPhone\": null,\n            \"dialerFormattedPhone\": null,\n            \"title\": null,\n            \"city\": \"New Orleans\",\n            \"state\": \"LA\",\n            \"emailId\": \"arlene_klusman@gmail.com\",\n            \"extension\": null,\n            \"qnotes\": null,\n            \"sfReportName\": \"150 Prospects.csv\",\n            \"priorityValue\": 3,\n            \"tempPriorityValue\": 1,\n            \"reportPriority\": 1,\n            \"daCallDisposition\": null,\n            \"talkerCallDisposition\": null,\n            \"daCallComments\": null,\n            \"talkerCallComments\": null,\n            \"subject\": null,\n            \"isReferralOrInboundLeadRecord\": false,\n            \"liveConversationRateScore\": null,\n            \"technologyDataBasedScore\": null,\n            \"intentDataBasedScore\": null,\n            \"companyScore\": null,\n            \"leadScore\": 0,\n            \"rowProcessedFlag\": \"N\",\n            \"dialedFlag\": \"N\",\n            \"directPhoneAvailabilityScore\": null,\n            \"recentlyVerifiedScore\": null,\n            \"contactabiltyScore\": null,\n            \"firstName\": null,\n            \"lastName\": \"Arlene\",\n            \"isLeadScoreProcessed\": \"N\",\n            \"activityDatetime\": null,\n            \"customVarchar1\": null,\n            \"customVarchar2\": null,\n            \"customVarchar3\": null,\n            \"customVarchar4\": null,\n            \"customVarchar5\": null,\n            \"customVarchar6\": null,\n            \"customVarchar7\": null,\n            \"customVarchar8\": null,\n            \"customVarchar9\": null,\n            \"customVarchar10\": null,\n            \"customVarchar11\": null,\n            \"customVarchar12\": null,\n            \"customVarchar13\": null,\n            \"customVarchar14\": null,\n            \"customVarchar15\": null,\n            \"customVarchar16\": null,\n            \"customVarchar17\": null,\n            \"customVarchar18\": null,\n            \"customVarchar19\": null,\n            \"customVarchar20\": null,\n            \"customPhone1\": null,\n            \"customPhone2\": null,\n            \"customPhone3\": null,\n            \"customPhone4\": null,\n            \"customPhone5\": null,\n            \"callflagCustomPhone1\": \"Y\",\n            \"callflagCustomPhone2\": \"Y\",\n            \"callflagCustomPhone3\": \"Y\",\n            \"callflagCustomPhone4\": \"Y\",\n            \"callflagCustomPhone5\": \"Y\",\n            \"metadataCustomPhone1\": null,\n            \"metadataCustomPhone2\": null,\n            \"metadataCustomPhone3\": null,\n            \"metadataCustomPhone4\": null,\n            \"metadataCustomPhone5\": null,\n            \"dialerFormattedCustomPhone1\": null,\n            \"dialerFormattedCustomPhone2\": null,\n            \"dialerFormattedCustomPhone3\": null,\n            \"dialerFormattedCustomPhone4\": null,\n            \"dialerFormattedCustomPhone5\": null,\n            \"customNumeric1\": null,\n            \"customNumeric2\": null,\n            \"customNumeric3\": null,\n            \"customNumeric4\": null,\n            \"customNumeric5\": null,\n            \"customInteger1\": null,\n            \"customInteger2\": null,\n            \"customInteger3\": null,\n            \"customInteger4\": null,\n            \"customInteger5\": null,\n            \"customDate1\": null,\n            \"customDate2\": null,\n            \"customDate3\": null,\n            \"customDate4\": null,\n            \"customDate5\": null,\n            \"customTimestamp1\": null,\n            \"customTimestamp2\": null,\n            \"customTimestamp3\": null,\n            \"customTimestamp4\": null,\n            \"customTimestamp5\": null,\n            \"callerIdPhone\": null,\n            \"cadenceId\": null,\n            \"touchStepNo\": null,\n            \"memberCurrentTouchId\": null,\n            \"duedate\": null,\n            \"multiTouchId\": null,\n            \"customBoolean1\": null,\n            \"customBoolean2\": null,\n            \"customBoolean3\": null,\n            \"customBoolean4\": null,\n            \"customBoolean5\": null,\n            \"inboundRecordsPk\": null,\n            \"relationshipName\": null,\n            \"crmType\": null,\n            \"accountId\": null,\n            \"timezoneCustomPhone1\": null,\n            \"timezoneCustomPhone2\": null,\n            \"timezoneCustomPhone3\": null,\n            \"timezoneCustomPhone4\": null,\n            \"timezoneCustomPhone5\": null,\n            \"trucadenceMemberTaskId\": null,\n            \"callCounter\": null,\n            \"campaignName\": null,\n            \"currentTouchId\": null,\n            \"currentTouchType\": null,\n            \"emailCounter\": null,\n            \"firstDialedDate\": null,\n            \"firstEmailedDate\": null,\n            \"lastDaCallOutcome\": null,\n            \"lastDialedDate\": null,\n            \"lastEmailOutcome\": null,\n            \"lastEmailedDate\": null,\n            \"lastTalkerCallOutcome\": null,\n            \"lastTouchDateTime\": null,\n            \"linkedinUrl\": null,\n            \"optoutFlag\": false,\n            \"tag\": null,\n            \"activityComments\": null,\n            \"extensionCustomPhone1\": null,\n            \"extensionCustomPhone2\": null,\n            \"extensionCustomPhone3\": null,\n            \"extensionCustomPhone4\": null,\n            \"extensionCustomPhone5\": null,\n            \"totalEngagementScore\": 0,\n            \"customVarchar21\": null,\n            \"customVarchar22\": null,\n            \"customVarchar23\": null,\n            \"customVarchar24\": null,\n            \"customVarchar25\": null,\n            \"customVarchar26\": null,\n            \"customVarchar27\": null,\n            \"customVarchar28\": null,\n            \"customVarchar29\": null,\n            \"customVarchar30\": null,\n            \"customVarchar31\": null,\n            \"customVarchar32\": null,\n            \"customVarchar33\": null,\n            \"customVarchar34\": null,\n            \"customVarchar35\": null,\n            \"customDate6\": null,\n            \"customDate7\": null,\n            \"customDate8\": null,\n            \"customPhone6\": null,\n            \"callFlagCustomPhone6\": null,\n            \"metadataCustomPhone6\": null,\n            \"dialerFormattedCustomPhone6\": null,\n            \"timezoneCustomPhone6\": null,\n            \"extensionCustomPhone6\": null,\n            \"customPhone7\": null,\n            \"callFlagCustomPhone7\": null,\n            \"metadataCustomPhone7\": null,\n            \"dialerFormattedCustomPhone7\": null,\n            \"timezoneCustomPhone7\": null,\n            \"extensionCustomPhone7\": null,\n            \"customVarchar36\": null,\n            \"customPhone8\": null,\n            \"callFlagCustomPhone8\": null,\n            \"metadataCustomPhone8\": null,\n            \"dialerFormattedCustomPhone8\": null,\n            \"timezoneCustomPhone8\": null,\n            \"customPhone9\": null,\n            \"callFlagCustomPhone9\": null,\n            \"metadataCustomPhone9\": null,\n            \"dialerFormattedCustomPhone9\": null,\n            \"timezoneCustomPhone9\": null,\n            \"customPhone10\": null,\n            \"callFlagCustomPhone10\": null,\n            \"metadataCustomPhone10\": null,\n            \"dialerFormattedCustomPhone10\": null,\n            \"timezoneCustomPhone10\": null,\n            \"customVarchar37\": null,\n            \"customVarchar38\": null,\n            \"customVarchar39\": null,\n            \"customVarchar40\": null,\n            \"customVarchar41\": null,\n            \"customVarchar42\": null,\n            \"customVarchar43\": null,\n            \"customVarchar44\": null,\n            \"customVarchar45\": null,\n            \"customVarchar46\": null,\n            \"customVarchar47\": null,\n            \"customVarchar48\": null,\n            \"customVarchar49\": null,\n            \"customVarchar50\": null,\n            \"customDate9\": null,\n            \"customDate10\": null,\n            \"customDate11\": null,\n            \"customDate12\": null,\n            \"customDate13\": null,\n            \"customDate14\": null,\n            \"customDate15\": null,\n            \"customDate16\": null,\n            \"customDate17\": null,\n            \"customPhone11\": null,\n            \"callFlagCustomPhone11\": null,\n            \"metadataCustomPhone11\": null,\n            \"dialerFormattedCustomPhone11\": null,\n            \"timezoneCustomPhone11\": null,\n            \"customPhone12\": null,\n            \"callFlagCustomPhone12\": null,\n            \"metadataCustomPhone12\": null,\n            \"dialerFormattedCustomPhone12\": null,\n            \"timezoneCustomPhone12\": null,\n            \"customPhone13\": null,\n            \"callFlagCustomPhone13\": null,\n            \"metadataCustomPhone13\": null,\n            \"dialerFormattedCustomPhone13\": null,\n            \"timezoneCustomPhone13\": null,\n            \"customPhone14\": null,\n            \"callFlagCustomPhone14\": null,\n            \"metadataCustomPhone14\": null,\n            \"dialerFormattedCustomPhone14\": null,\n            \"timezoneCustomPhone14\": null,\n            \"customPhone15\": null,\n            \"callFlagCustomPhone15\": null,\n            \"metadataCustomPhone15\": null,\n            \"dialerFormattedCustomPhone15\": null,\n            \"timezoneCustomPhone15\": null,\n            \"customPhone16\": null,\n            \"callFlagCustomPhone16\": null,\n            \"metadataCustomPhone16\": null,\n            \"dialerFormattedCustomPhone16\": null,\n            \"timezoneCustomPhone16\": null,\n            \"customPhone17\": null,\n            \"callFlagCustomPhone17\": null,\n            \"metadataCustomPhone17\": null,\n            \"dialerFormattedCustomPhone17\": null,\n            \"timezoneCustomPhone17\": null,\n            \"customPhone18\": null,\n            \"callFlagCustomPhone18\": null,\n            \"metadataCustomPhone18\": null,\n            \"dialerFormattedCustomPhone18\": null,\n            \"timezoneCustomPhone18\": null,\n            \"customPhone19\": null,\n            \"callFlagCustomPhone19\": null,\n            \"metadataCustomPhone19\": null,\n            \"dialerFormattedCustomPhone19\": null,\n            \"timezoneCustomPhone19\": null,\n            \"modifiedDatetime\": null,\n            \"customDate18\": null,\n            \"customDate19\": null,\n            \"customDate20\": null,\n            \"customPhone20\": null,\n            \"callFlagCustomPhone20\": null,\n            \"metadataCustomPhone20\": null,\n            \"dialerFormattedCustomPhone20\": null,\n            \"timezoneCustomPhone20\": null,\n            \"extensionCustomPhone20\": null,\n            \"taskType\": null,\n            \"isParkingLotRecord\": false\n        }\n    ]\n}"}],"_postman_id":"d437dad3-816e-4052-9dc8-19466709b4cf"},{"name":"Switch Dialer","id":"0594155e-54d1-4e5e-bd7c-16001676f657","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/switchDialer/:product","description":"<p>To change the Dialing Mode to different products like PD, TD, AIDSL, AIDML.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","switchDialer",":product"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"74858dd9-9a21-4885-b67b-53c4e4ec5a8a","description":{"content":"<p>Product Dialer</p>\n","type":"text/plain"},"type":"any","value":"","key":"product"}]}},"response":[{"id":"5fcf0f7f-06e2-4786-a588-880e380fe288","name":"Switch Dialer","originalRequest":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/mysession/switchDialer/AIDSL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"0594155e-54d1-4e5e-bd7c-16001676f657"},{"name":"QNotes","id":"9c07f1fb-21e8-4d83-a2dc-f8441325cd5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}mysession/activity/:id","description":"<p>To get activities for the prospects from CRM</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["activity",":id"],"host":["{{koncert_dialers_api}}mysession"],"query":[],"variable":[{"id":"50fb5f02-cad6-4bba-9830-bda0096a3413","type":"any","value":"callListRecordId","key":"id"}]}},"response":[{"id":"722ea7d7-0560-46f3-86ba-0e0a1a93e881","name":"QNotes - Salesforce","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}mysession/activity/1784084"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"Subject\": \"Call\",\n            \"LastModifiedDate\": \"2023-05-30T11:05:23Z\",\n            \"CreatedDate\": \"2023-05-30T11:05:23Z\",\n            \"type\": \"Event\"\n        },\n        {\n            \"Subject\": \"Call\",\n            \"LastModifiedDate\": \"2023-05-30T11:05:15Z\",\n            \"CreatedDate\": \"2023-05-30T11:05:15Z\",\n            \"type\": \"Event\"\n        }\n    ]\n}"},{"id":"fcd8f112-fdb5-48ed-b287-7d54f406133a","name":"QNotes - Hubspot","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}mysession/activity/1809307"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"CreatedDate\": \"05/31/2023 12:53 PM\",\n            \"type\": \"CALL\",\n            \"description\": null,\n            \"Subject\": \"Left live message\"\n        },\n        {\n            \"CreatedDate\": \"06/05/2023 04:58 PM\",\n            \"type\": \"CALL\",\n            \"description\": null,\n            \"Subject\": \"Left live message\"\n        }\n    ]\n}"},{"id":"69c191ed-da4f-4bb0-87bf-c21b653f6569","name":"QNotes - Zoho","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}mysession/activity/1799135"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"Dialed\",\n            \"CreatedDate\": \"05/04/2023 01:37 PM\"\n        },\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"Dialed\",\n            \"CreatedDate\": \"05/04/2023 11:20 AM\"\n        },\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"Dialed\",\n            \"CreatedDate\": \"05/04/2023 11:18 AM\"\n        },\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"Call Attempted\",\n            \"CreatedDate\": \"04/27/2023 03:29 PM\"\n        },\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"Call Attempted\",\n            \"CreatedDate\": \"04/27/2023 03:22 PM\"\n        },\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"No Answer\",\n            \"CreatedDate\": \"04/25/2023 01:57 PM\"\n        },\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"Dialed\",\n            \"CreatedDate\": \"04/24/2023 03:57 PM\"\n        },\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"No Answer\",\n            \"CreatedDate\": \"04/24/2023 03:57 PM\"\n        },\n        {\n            \"type\": \"Task\",\n            \"Subject\": \"Competitor Comparison Document\",\n            \"CreatedDate\": \"12/20/2022 11:34 AM\"\n        }\n    ]\n}"}],"_postman_id":"9c07f1fb-21e8-4d83-a2dc-f8441325cd5a"},{"name":"Parking Lot","id":"4b65bd99-bb7d-4e65-8abf-f9f22f4628ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLots/callListRecord/:id?includeAssociations[]=rule&includeAssociations[]=user","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLots","callListRecord",":id"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"includeAssociations[]","value":"rule"},{"key":"includeAssociations[]","value":"user"}],"variable":[{"id":"fe59eda9-af5a-432e-9063-a9d97447ba91","type":"any","value":"callListRecordId","key":"id"}]}},"response":[{"id":"c0e71535-3047-4d37-b194-828679f3d7c2","name":"Parking Lot","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/parkingLots/callListRecord/1820000?includeAssociations[]=rule&includeAssociations[]=user","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["parkingLots","callListRecord","1820000"],"query":[{"key":"includeAssociations[]","value":"rule"},{"key":"includeAssociations[]","value":"user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6932,\n            \"crmId\": \"crmgenkey_0f4730cc-ab7a-38aa-ae0b-926483f0b599\",\n            \"contactName\": \"Aisling Fitzpatrick\",\n            \"accountName\": \"Golden Hotel\",\n            \"title\": null,\n            \"phoneType\": \"phone\",\n            \"phone\": \"+13032790100\",\n            \"entryDatetime\": \"2023-06-20T07:23:03Z\",\n            \"callListRecordsData\": {\n                \"call_list_records_pk\": 1816512,\n                \"org_id\": 6799,\n                \"user_id\": 14158,\n                \"sf_pk\": \"crmgenkey_0f4730cc-ab7a-38aa-ae0b-926483f0b599\",\n                \"activity_id\": null,\n                \"data_list_id\": 18040,\n                \"record_type\": null,\n                \"account_name\": \"Golden Hotel\",\n                \"contact_name\": \"Aisling Fitzpatrick\",\n                \"timezone\": \"MST\",\n                \"phone\": \"+1(303) 279-0100\",\n                \"callflag_phone\": \"N\",\n                \"metadata_phone\": null,\n                \"dialer_formatted_phone\": null,\n                \"title\": null,\n                \"city\": null,\n                \"state\": null,\n                \"email_id\": null,\n                \"extension\": null,\n                \"qnotes\": \"** 06\\\\/16\\\\/2023 09:52 AM szdg\\\\t - Call Attempted -\",\n                \"sf_report_name\": \"Edwin Demo Reports Limit 22.csv\",\n                \"priority_value\": 1,\n                \"temp_priority_value\": 1,\n                \"report_priority\": 1,\n                \"da_call_disposition\": null,\n                \"talker_call_disposition\": null,\n                \"da_call_comments\": null,\n                \"talker_call_comments\": null,\n                \"subject\": null,\n                \"is_referral_or_inbound_lead_record\": false,\n                \"live_conversation_rate_score\": null,\n                \"technology_data_based_score\": null,\n                \"intent_data_based_score\": null,\n                \"company_score\": null,\n                \"lead_score\": 0,\n                \"row_processed_flag\": \"Y\",\n                \"dialed_flag\": \"Y\",\n                \"direct_phone_availability_score\": null,\n                \"recently_verified_score\": null,\n                \"contactabilty_score\": null,\n                \"first_name\": \"Aisling\",\n                \"last_name\": \"Fitzpatrick\",\n                \"is_lead_score_processed\": \"N\",\n                \"activity_datetime\": \"2023-06-20T03:22:49\",\n                \"custom_varchar_1\": null,\n                \"custom_varchar_2\": null,\n                \"custom_varchar_3\": null,\n                \"custom_varchar_4\": null,\n                \"custom_varchar_5\": null,\n                \"custom_varchar_6\": null,\n                \"custom_varchar_7\": null,\n                \"custom_varchar_8\": null,\n                \"custom_varchar_9\": null,\n                \"custom_varchar_10\": null,\n                \"custom_varchar_11\": null,\n                \"custom_varchar_12\": null,\n                \"custom_varchar_13\": null,\n                \"custom_varchar_14\": null,\n                \"custom_varchar_15\": null,\n                \"custom_varchar_16\": null,\n                \"custom_varchar_17\": null,\n                \"custom_varchar_18\": null,\n                \"custom_varchar_19\": null,\n                \"custom_varchar_20\": null,\n                \"custom_phone_1\": \"+1(804) 549-5578\",\n                \"custom_phone_2\": \"+1(804) 643-7355\",\n                \"custom_phone_3\": null,\n                \"custom_phone_4\": null,\n                \"custom_phone_5\": null,\n                \"callflag_custom_phone_1\": \"Y\",\n                \"callflag_custom_phone_2\": \"Y\",\n                \"callflag_custom_phone_3\": \"Y\",\n                \"callflag_custom_phone_4\": \"Y\",\n                \"callflag_custom_phone_5\": \"Y\",\n                \"metadata_custom_phone_1\": null,\n                \"metadata_custom_phone_2\": null,\n                \"metadata_custom_phone_3\": null,\n                \"metadata_custom_phone_4\": null,\n                \"metadata_custom_phone_5\": null,\n                \"dialer_formatted_custom_phone_1\": null,\n                \"dialer_formatted_custom_phone_2\": null,\n                \"dialer_formatted_custom_phone_3\": null,\n                \"dialer_formatted_custom_phone_4\": null,\n                \"dialer_formatted_custom_phone_5\": null,\n                \"custom_numeric_1\": null,\n                \"custom_numeric_2\": null,\n                \"custom_numeric_3\": null,\n                \"custom_numeric_4\": null,\n                \"custom_numeric_5\": null,\n                \"custom_integer_1\": null,\n                \"custom_integer_2\": null,\n                \"custom_integer_3\": null,\n                \"custom_integer_4\": null,\n                \"custom_integer_5\": null,\n                \"custom_date_1\": null,\n                \"custom_date_2\": null,\n                \"custom_date_3\": null,\n                \"custom_date_4\": null,\n                \"custom_date_5\": null,\n                \"custom_timestamp_1\": null,\n                \"custom_timestamp_2\": null,\n                \"custom_timestamp_3\": null,\n                \"custom_timestamp_4\": null,\n                \"custom_timestamp_5\": null,\n                \"caller_id_phone\": null,\n                \"multitouch_member_id\": null,\n                \"touch_step_no\": null,\n                \"member_current_touch_id\": null,\n                \"duedate\": null,\n                \"multi_touch_id\": null,\n                \"custom_boolean_1\": null,\n                \"custom_boolean_2\": null,\n                \"custom_boolean_3\": null,\n                \"custom_boolean_4\": null,\n                \"custom_boolean_5\": null,\n                \"inbound_records_pk\": null,\n                \"relationship_name\": null,\n                \"crm_type\": null,\n                \"account_id\": null,\n                \"timezone_custom_phone_1\": \"EST\",\n                \"timezone_custom_phone_2\": \"EST\",\n                \"timezone_custom_phone_3\": null,\n                \"timezone_custom_phone_4\": null,\n                \"timezone_custom_phone_5\": null,\n                \"trucadence_member_task_id\": null,\n                \"call_counter\": null,\n                \"campaign_name\": null,\n                \"current_touch_id\": null,\n                \"current_touch_type\": null,\n                \"email_counter\": null,\n                \"first_dialed_date\": null,\n                \"first_emailed_date\": null,\n                \"last_da_call_outcome\": null,\n                \"last_dialed_date\": null,\n                \"last_email_outcome\": null,\n                \"last_emailed_date\": null,\n                \"last_talker_call_outcome\": null,\n                \"last_touch_date_time\": null,\n                \"linkedin_url\": null,\n                \"optout_flag\": false,\n                \"tag\": null,\n                \"activity_comments\": null,\n                \"extension_custom_phone_1\": null,\n                \"extension_custom_phone_2\": null,\n                \"extension_custom_phone_3\": null,\n                \"extension_custom_phone_4\": null,\n                \"extension_custom_phone_5\": null,\n                \"total_engagement_score\": 0,\n                \"custom_varchar_21\": null,\n                \"custom_varchar_22\": null,\n                \"custom_varchar_23\": null,\n                \"custom_varchar_24\": null,\n                \"custom_varchar_25\": null,\n                \"custom_varchar_26\": null,\n                \"custom_varchar_27\": null,\n                \"custom_varchar_28\": null,\n                \"custom_varchar_29\": null,\n                \"custom_varchar_30\": null,\n                \"custom_varchar_31\": null,\n                \"custom_varchar_32\": null,\n                \"custom_varchar_33\": null,\n                \"custom_varchar_34\": null,\n                \"custom_varchar_35\": null,\n                \"custom_date_6\": null,\n                \"custom_date_7\": null,\n                \"custom_date_8\": null,\n                \"custom_phone_6\": null,\n                \"call_flag_custom_phone_6\": null,\n                \"metadata_custom_phone_6\": null,\n                \"dialer_formatted_custom_phone_6\": null,\n                \"timezone_custom_phone_6\": null,\n                \"extension_custom_phone_6\": null,\n                \"custom_phone_7\": null,\n                \"call_flag_custom_phone_7\": null,\n                \"metadata_custom_phone_7\": null,\n                \"dialer_formatted_custom_phone_7\": null,\n                \"timezone_custom_phone_7\": null,\n                \"extension_custom_phone_7\": null,\n                \"custom_varchar_36\": null,\n                \"custom_phone_8\": null,\n                \"call_flag_custom_phone_8\": null,\n                \"metadata_custom_phone_8\": null,\n                \"dialer_formatted_custom_phone_8\": null,\n                \"timezone_custom_phone_8\": null,\n                \"custom_phone_9\": null,\n                \"call_flag_custom_phone_9\": null,\n                \"metadata_custom_phone_9\": null,\n                \"dialer_formatted_custom_phone_9\": null,\n                \"timezone_custom_phone_9\": null,\n                \"custom_phone_10\": null,\n                \"call_flag_custom_phone_10\": null,\n                \"metadata_custom_phone_10\": null,\n                \"dialer_formatted_custom_phone_10\": null,\n                \"timezone_custom_phone_10\": null,\n                \"custom_varchar_37\": null,\n                \"custom_varchar_38\": null,\n                \"custom_varchar_39\": null,\n                \"custom_varchar_40\": null,\n                \"custom_varchar_41\": null,\n                \"custom_varchar_42\": null,\n                \"custom_varchar_43\": null,\n                \"custom_varchar_44\": null,\n                \"custom_varchar_45\": null,\n                \"custom_varchar_46\": null,\n                \"custom_varchar_47\": null,\n                \"custom_varchar_48\": null,\n                \"custom_varchar_49\": null,\n                \"custom_varchar_50\": null,\n                \"custom_date_9\": null,\n                \"custom_date_10\": null,\n                \"custom_date_11\": null,\n                \"custom_date_12\": null,\n                \"custom_date_13\": null,\n                \"custom_date_14\": null,\n                \"custom_date_15\": null,\n                \"custom_date_16\": null,\n                \"custom_date_17\": null,\n                \"custom_phone_11\": null,\n                \"call_flag_custom_phone_11\": null,\n                \"metadata_custom_phone_11\": null,\n                \"dialer_formatted_custom_phone_11\": null,\n                \"timezone_custom_phone_11\": null,\n                \"custom_phone_12\": null,\n                \"call_flag_custom_phone_12\": null,\n                \"metadata_custom_phone_12\": null,\n                \"dialer_formatted_custom_phone_12\": null,\n                \"timezone_custom_phone_12\": null,\n                \"custom_phone_13\": null,\n                \"call_flag_custom_phone_13\": null,\n                \"metadata_custom_phone_13\": null,\n                \"dialer_formatted_custom_phone_13\": null,\n                \"timezone_custom_phone_13\": null,\n                \"custom_phone_14\": null,\n                \"call_flag_custom_phone_14\": null,\n                \"metadata_custom_phone_14\": null,\n                \"dialer_formatted_custom_phone_14\": null,\n                \"timezone_custom_phone_14\": null,\n                \"custom_phone_15\": null,\n                \"call_flag_custom_phone_15\": null,\n                \"metadata_custom_phone_15\": null,\n                \"dialer_formatted_custom_phone_15\": null,\n                \"timezone_custom_phone_15\": null,\n                \"custom_phone_16\": null,\n                \"call_flag_custom_phone_16\": null,\n                \"metadata_custom_phone_16\": null,\n                \"dialer_formatted_custom_phone_16\": null,\n                \"timezone_custom_phone_16\": null,\n                \"custom_phone_17\": null,\n                \"call_flag_custom_phone_17\": null,\n                \"metadata_custom_phone_17\": null,\n                \"dialer_formatted_custom_phone_17\": null,\n                \"timezone_custom_phone_17\": null,\n                \"custom_phone_18\": null,\n                \"call_flag_custom_phone_18\": null,\n                \"metadata_custom_phone_18\": null,\n                \"dialer_formatted_custom_phone_18\": null,\n                \"timezone_custom_phone_18\": null,\n                \"custom_phone_19\": null,\n                \"call_flag_custom_phone_19\": null,\n                \"metadata_custom_phone_19\": null,\n                \"dialer_formatted_custom_phone_19\": null,\n                \"timezone_custom_phone_19\": null,\n                \"modified_datetime\": null,\n                \"custom_date_18\": null,\n                \"custom_date_19\": null,\n                \"custom_date_20\": null,\n                \"custom_phone_20\": null,\n                \"call_flag_custom_phone_20\": null,\n                \"metadata_custom_phone_20\": null,\n                \"dialer_formatted_custom_phone_20\": null,\n                \"timezone_custom_phone_20\": null,\n                \"extension_custom_phone_20\": null,\n                \"task_type\": null\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 14158\n                    }\n                ],\n                \"rule\": [\n                    {\n                        \"id\": 6853\n                    }\n                ]\n            }\n        }\n    ],\n    \"includedAssociations\": {\n        \"rule\": [\n            {\n                \"id\": 6853,\n                \"name\": \"Talker Any\",\n                \"type\": \"TALKER\",\n                \"operator\": \"ANY\",\n                \"ruleInput\": null,\n                \"recurrenceCount\": 1,\n                \"createdDate\": \"2023-06-14T14:42:34Z\",\n                \"modifiedDate\": \"2023-06-14T14:42:34Z\",\n                \"ruleCreator\": \"ADMIN\",\n                \"considerConsecutiveCount\": false,\n                \"executeForEachRule\": false,\n                \"associations\": {\n                    \"user\": [\n                        {\n                            \"id\": 14158\n                        }\n                    ],\n                    \"modifiedUser\": [\n                        {\n                            \"id\": 14158\n                        }\n                    ]\n                }\n            }\n        ],\n        \"user\": [\n            {\n                \"id\": 14158,\n                \"sfUserId\": \"STD-40151\",\n                \"name\": \"szdg\",\n                \"userType\": null,\n                \"loginName\": \"takif94580@peogi.com\",\n                \"email\": \"takif94580@peogi.com\",\n                \"userLicense\": \"PD,CD,TC,AIDSL,AIDML,TD\",\n                \"startUpPageShowFlag\": \"Y\",\n                \"reportFolder\": \" \",\n                \"talkerMaxAgentThreshold\": 4,\n                \"talkerMinAgentThreshold\": 4,\n                \"talkerSessionMode\": \"macro\",\n                \"timeZone\": \"America/New_York\",\n                \"talkerAgentType\": \"Level 1\",\n                \"talkerPhoneType\": \"SIP\",\n                \"transferPacingPerHour\": 7,\n                \"prioritizationDelayMinutes\": 15,\n                \"transferUrl\": null,\n                \"lastProductType\": \"AIDSL\",\n                \"lastProductUrl\": null,\n                \"rcUrl\": null,\n                \"bullhornUserType\": \"Sales\",\n                \"isSimulatorUser\": \"N\",\n                \"allowCallMeJoinConference\": \"Y\",\n                \"phoneNumber\": \"919600827949\",\n                \"isInternalUser\": \"N\",\n                \"callRecordingEnabledByManager\": \"Y\",\n                \"callRecordingUserPermission\": \"NYN\",\n                \"callRecordingEnabledByUser\": \"Y\",\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n                \"enableScheduleCheck\": \"N\",\n                \"allowAdaptilytics\": \"N\",\n                \"allowModifyAdaptilyticsSettings\": \"N\",\n                \"allowDataEnrichment\": \"N\",\n                \"allowModifyDataEnrichmentSettings\": \"N\",\n                \"token\": null,\n                \"cdPhoneMinutesUsed\": null,\n                \"showAccountsBy\": \"MY_ACCOUNT\",\n                \"purchaseCustomCallerIds\": null,\n                \"isTrucadenceLeftmenuExpanded\": null,\n                \"accessTokenCreatedAt\": null,\n                \"accessTokenExpiresIn\": null,\n                \"outreachUserId\": 1,\n                \"gongUserId\": null,\n                \"lastExecutedDataListIds\": null,\n                \"hasCreateEmailTemplate\": true,\n                \"hasCreateCadence\": true,\n                \"salesloftUserId\": null,\n                \"salesloftGuid\": null,\n                \"showLeadScorePopup\": \"N\",\n                \"remoteCoachCallListenUsers\": [],\n                \"remoteCoachCallListen\": false,\n                \"createdBy\": \"Base-App\",\n                \"modifiedBy\": null,\n                \"createdDate\": \"2023-06-08T21:44:03Z\",\n                \"modifiedDate\": \"2023-06-08T21:44:03Z\",\n                \"zipwhipSessionKey\": null,\n                \"firstName\": null,\n                \"lastName\": null,\n                \"isCreateAddProspect\": true,\n                \"defaultActivityFilter\": null,\n                \"displayName\": \"szdg\",\n                \"isEmailPreviewEnabled\": true,\n                \"emailFontFace\": \"Arial\",\n                \"emailFontSize\": 11,\n                \"defaultCadenceWidgets\": [\n                    \"calls\",\n                    \"emails\",\n                    \"social\",\n                    \"linkedin\",\n                    \"task\",\n                    \"unassigned\"\n                ],\n                \"openExternalLinksInNewWindow\": false,\n                \"hubspotUserId\": null,\n                \"apiEnabled\": false,\n                \"exportProspects\": false,\n                \"isFirstTimeUser\": false,\n                \"associations\": {\n                    \"org\": [\n                        {\n                            \"id\": 6799\n                        }\n                    ]\n                },\n                \"signupUser\": null,\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\n                \"location\": null,\n                \"allowMultiEmailAccounts\": null,\n                \"salesloftVerifiedFlag\": null,\n                \"outreachVerifiedFlag\": true,\n                \"crmtemplateLoadingPage\": \"mysession\",\n                \"defaultManager\": null,\n                \"enableCrmEmailIcon\": false,\n                \"workEndHour\": null,\n                \"fallthroughPendingCalls\": null,\n                \"fallthroughToDo\": true,\n                \"sendEmailOnSessionStart\": false,\n                \"allowUserToeditListUploadedByManager\": \"Y\",\n                \"workStartHour\": null,\n                \"fallthroughTodo\": true,\n                \"region\": \"US_EAST_1\",\n                \"admin\": \"Y\",\n                \"active\": \"Y\",\n                \"manager\": \"Y\"\n            }\n        ]\n    }\n}"}],"_postman_id":"4b65bd99-bb7d-4e65-8abf-f9f22f4628ca"},{"name":"Last Executed MyList","id":"8d130666-5e1d-420f-b01b-d6cb7f4e8205","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/lastExecutedDataList","description":"<p>To get the last executed dataList.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["mysession","lastExecutedDataList"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"6304eb54-f701-4268-b9bf-ee8a0ae03e1e","name":"Last Executed MyList","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/mysession/lastExecutedDataList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 38123,\n            \"listName\": \"Saravanan User Hotel List_State_List - Copy.csv\",\n            \"listType\": \"Static\",\n            \"listCrmName\": \"File\",\n            \"listCrmReportName\": \"Saravanan User Hotel List_State_List - Copy.csv\",\n            \"listCrmReportUrl\": \"none\",\n            \"activeFlag\": \"Y\",\n            \"recordType\": null,\n            \"lastAttemptedDate\": \"2024-05-29T12:19:59Z\",\n            \"lastConnectedDate\": \"2024-05-29T12:20:17Z\",\n            \"totalDials\": 22,\n            \"totalConnects\": 3,\n            \"totalFollowUps\": 0,\n            \"totalRecords\": 200,\n            \"callScript\": null,\n            \"outreachStepIds\": null,\n            \"badData\": 0,\n            \"thirdPartyCadenseId\": null,\n            \"thirdPartyCrmReportType\": null,\n            \"thirdpartyIncludeTodayTasks\": false,\n            \"isLeadPoolList\": false,\n            \"assignedTeams\": null,\n            \"tdsServerUrl\": null,\n            \"phoneServer\": null,\n            \"dialingMetaData\": {\n                \"timezone\": \"EST,CST,MST,PST\",\n                \"isMandatory\": false,\n                \"assignedUsers\": [],\n                \"assignedTeams\": [],\n                \"callerIds\": \"\",\n                \"callerIdMode\": \"AB-CID\",\n                \"isRecommended\": false,\n                \"allowDaPlayVm\": false,\n                \"voiceMessage\": \"\",\n                \"phoneColumnsToDial\": [\n                    \"phone\",\n                    \"custom_phone_1\",\n                    \"custom_phone_2\"\n                ],\n                \"callInstruction\": \"\",\n                \"sortByColumnName\": \"contact_name\",\n                \"sortBy\": \"ASC\",\n                \"secondarySortByDirection\": \"\",\n                \"tertiarySortByDirection\": \"\",\n                \"quartnarySortByDirection\": \"\",\n                \"secondarySortByColumn\": \"\",\n                \"tertiarySortByColumn\": \"\",\n                \"quartnarySortByColumn\": \"\",\n                \"countryCodePrefixed\": false,\n                \"primarySortByRecordType\": \"\",\n                \"secondarySortByRecordType\": null,\n                \"quartnarySortByRecordType\": null,\n                \"tertiarySortByRecordType\": null\n            },\n            \"joinedTalkerCount\": 0,\n            \"dsLpsSessionKey\": null,\n            \"prsLpsSessionKey\": null,\n            \"isLpListImported\": false,\n            \"lpsLastRowDialed\": null,\n            \"isMandatory\": false,\n            \"recommended\": false,\n            \"category\": null,\n            \"noOfAttemptsPerDay\": null,\n            \"noOfAttemptsPerRecord\": null,\n            \"timeGapBetweenAttempt\": null,\n            \"callerIdMode\": \"AB-CID\",\n            \"name\": \"Onbording Testing\",\n            \"company\": \"Outreach Test ORG DND\",\n            \"callInstruction\": null,\n            \"voiceMessage\": null,\n            \"initialGreeting\": null,\n            \"sortBy\": \"ASC\",\n            \"phoneColumnsToDial\": \"[\\\"phone\\\", \\\"custom_phone_1\\\", \\\"custom_phone_2\\\"]\",\n            \"sortByColumnName\": \"contact_name\",\n            \"callerIds\": null,\n            \"groupName\": null,\n            \"timezone\": \"EST,CST,MST,PST\",\n            \"assignedUsers\": null,\n            \"createdDate\": \"2024-05-23T11:43:35Z\",\n            \"updatedDate\": \"2024-05-23T11:43:35Z\",\n            \"lastModDivisionValue\": null,\n            \"totalAverageAttempts\": 0,\n            \"totalAverageListAttempts\": 0,\n            \"salesloftImportOnlyUserProspects\": false,\n            \"thirdPartyCrmTaskSortByField\": null,\n            \"thirdPartyCrmTaskSortByOrder\": null,\n            \"totalUniqueDials\": 9,\n            \"usersMadeThisAsFavorite\": null,\n            \"coverage\": null,\n            \"connectRate\": null,\n            \"favorite\": false,\n            \"dialsCount\": null,\n            \"averageDialAttempts\": null,\n            \"cadenceStepNo\": null,\n            \"apolloCadenceId\": null,\n            \"apolloCadenceStepNo\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24119\n                }\n            },\n            \"badDataRate\": null,\n            \"mappingData\": \"{\\\"email_id\\\":\\\"Email\\\",\\\"custom_phone_2\\\":\\\"Direct Phone\\\",\\\"custom_phone_1\\\":\\\"Mobile\\\",\\\"custom_varchar_7\\\":\\\"Linkedin URL\\\",\\\"phone\\\":\\\"Phone\\\",\\\"city\\\":\\\"Mailing City\\\",\\\"account_name\\\":\\\"Account Name\\\",\\\"last_name\\\":\\\"Last Name\\\",\\\"state\\\":\\\"Mailing State\\\",\\\"first_name\\\":\\\"First Name\\\"}\",\n            \"timeGapBetweenEachAttempt\": 15,\n            \"timeGapBetweenEachPhoneColumn\": 15,\n            \"lastUploadedDateTime\": \"2024-05-28T08:51:03.000Z\",\n            \"archivedDate\": null,\n            \"reset\": false,\n            \"listMergeIds\": null\n        }\n    ]\n}"}],"_postman_id":"8d130666-5e1d-420f-b01b-d6cb7f4e8205"},{"name":"Cancelled Calls","id":"50d5859e-017a-414e-8964-41861187e0cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/prospectPhone/cancelled","description":"<p>To delete the cancelled calls for the current user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["prospectPhone","cancelled"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"be4ff6e5-b079-4173-87c4-973eb4c74bf2","name":"Cancelled Calls","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/prospectPhone/cancelled"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"50d5859e-017a-414e-8964-41861187e0cc"},{"name":"Activity History","id":"17c79339-7746-4413-bc43-0db1f9e2ffba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"b68ed048-a8f3-4ba4-bda6-f7a0eb40b37a","name":"Activity History","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/mysession/activity/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["mysession","activity",":id"],"variable":[{"key":"id","value":"3002014"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"subject\": \"null\",\n            \"lastModifiedDate\": \"2025-06-11T12:06:57Z\",\n            \"createdDate\": \"2025-06-11T12:06:57Z\",\n            \"type\": \"Event\",\n            \"callComments\": \"No Answer\",\n            \"ownedBy\": \"Veera SF\"\n        }\n    ]\n}"}],"_postman_id":"17c79339-7746-4413-bc43-0db1f9e2ffba"}],"id":"2232b88a-d555-464b-848c-9d699e1dd45f","description":"<p>MySession will have list of records which will be used for dialing and connecting to people.</p>\n","_postman_id":"2232b88a-d555-464b-848c-9d699e1dd45f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Org","item":[{"name":"Self Org","id":"dfbf5842-5bca-45c6-88d5-ba6242503d06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/org","description":"<p>Get org details associated with current access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["org"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"f7a8bf9c-7ca9-415a-b24d-02f23cd2f270","name":"Self Org","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/org"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:23:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2355,\n            \"clientId\": 370,\n            \"crmOrgId\": \"STD0002354\",\n            \"clctiOrgId\": null,\n            \"orgType\": \"PRO\",\n            \"crmAdminContactName\": \"API Client\",\n            \"crmAdminContactEmail\": \"API Client\",\n            \"crmAdminAccountName\": null,\n            \"clAuthenticationToken\": null,\n            \"clOrgId\": null,\n            \"clientName\": \"API Client\",\n            \"crmType\": \"standalone\",\n            \"availableCredits\": 0,\n            \"purchasedCredits\": 0,\n            \"allowAllUsersAdaptilytics\": \"N\",\n            \"allowUsersModifyAdaptilytics\": \"N\",\n            \"allowAllUsersDataEnrichment\": \"N\",\n            \"allowUsersModifyDataEnrichment\": \"N\",\n            \"partnerId\": 10001,\n            \"tdPdUrl\": \"https://qa.clclient.com/partnerlogin.action\",\n            \"tdPdAuthToken\": \"Lgnnvs.lfMsE_erhuxigEpw4RFCEj8V44SSl9iG4LBAvYLbjs!yLdbxG3RB6774t\",\n            \"cdUrl\": \"http://10.5.3.77:80/clickdialer/view/plugin/clickdialer_plugin.js\",\n            \"cdAuthToken\": \"auMgufJSYkYguir58PUJ4XwrYPRPGK-mh.yC3gSVB5Ust2xMrvX95V75LwKK@GNo\",\n            \"reportDataUrl\": \"https://qa.clclient.com/clreport/\",\n            \"reportAuthToken\": \"k3JW0ZzxNytwMlfFhR!4d_U!B!Wzd!bowNyN6GripGprxJLUx0CKTY9CTugxw5R2\",\n            \"phoneMinutesNextResetDateTime\": \"2022-12-29T16:38:48.000+00:00\",\n            \"internationalDialingCreditsUsed\": 6.525,\n            \"cdPhoneMinutesUsed\": 88.5,\n            \"pdPhoneMinutesUsed\": 1466.5,\n            \"toprungDataAuthToken\": \"4dpBpE8RmMkE!N2g4U0WMLDRD-yZt5f_jGLMJNqluytlWpn2DS-3Cl4sbirL4dV0\",\n            \"toprungDataUrl\": \"https://qa.clclient.com/gfdata\",\n            \"cdApiAuthToken\": \"n8Spr8-BGq@4lDP1Th.woMq9cnCJ83r0ErfX2_xdNx70tsv6p7k4CmMYDZUNsN8A\",\n            \"cdApiUrl\": \"https://dev.koncert.com/clcti\",\n            \"callRecordingsUrl\": \"https://dev.koncert.com/callrecordings/v2/crservice\",\n            \"callRecordingsAuthToken\": \"4cZpkztuEdxl4wqj8YsPduxVDEkTEfLgFpTiSGA@AVnmBaeRsd1pDGG1e7UA6cZv\",\n            \"tags\": null,\n            \"crmInstanceName\": null,\n            \"notes\": null,\n            \"active\": true,\n            \"testSite\": false,\n            \"assignDialerServerBasedOnRegion\": false,\n            \"regionId\": \"US_EAST_1\",\n            \"zipwhip\": true\n        }\n    ]\n}"}],"_postman_id":"dfbf5842-5bca-45c6-88d5-ba6242503d06"},{"name":"Settings","id":"fe2e102e-999d-47f5-8b65-2e38a02a0d6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/org/settings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["org","settings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"8ff3eb80-8314-40a6-8740-0dd428945c8b","name":"Settings","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/org/settings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 117057,\n            \"lookupName\": \"allow_copy_call_list_records_to_report_tables\",\n            \"lookupValue\": \"true\"\n        },\n        {\n            \"id\": 462215,\n            \"lookupName\": \"allow_user_to_modify_call_pacing_settings\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 253419,\n            \"lookupName\": \"call_disposition_for_dial\",\n            \"lookupValue\": \"Got Referral\"\n        },\n        {\n            \"id\": 116918,\n            \"lookupName\": \"call_disposition_for_voice_message\",\n            \"lookupValue\": \"Left VM\"\n        },\n        {\n            \"id\": 440182,\n            \"lookupName\": \"call_pacing_no_of_attempts_per_day\",\n            \"lookupValue\": \"5\"\n        },\n        {\n            \"id\": 440884,\n            \"lookupName\": \"call_pacing_time_gap_between_each_attempt\",\n            \"lookupValue\": \"15\"\n        },\n        {\n            \"id\": 437046,\n            \"lookupName\": \"call_pacing_time_gap_between_each_phone_column\",\n            \"lookupValue\": \"15\"\n        },\n        {\n            \"id\": 116946,\n            \"lookupName\": \"check_calllist_records_duplicates\",\n            \"lookupValue\": \"true\"\n        },\n        {\n            \"id\": 291144,\n            \"lookupName\": \"check_duplicates_based_on\",\n            \"lookupValue\": \"USER_LEVEL\"\n        },\n        {\n            \"id\": 117115,\n            \"lookupName\": \"crm_save_all_in_one_transaction\",\n            \"lookupValue\": \"true\"\n        },\n        {\n            \"id\": 116965,\n            \"lookupName\": \"default_customer_portal_tab\",\n            \"lookupValue\": \"mysession\"\n        },\n        {\n            \"id\": 116894,\n            \"lookupName\": \"defaultcustomertab\",\n            \"lookupValue\": \"customerinfo\"\n        },\n        {\n            \"id\": 116916,\n            \"lookupName\": \"displayclfolderonly\",\n            \"lookupValue\": \"false\"\n        },\n        {\n            \"id\": 436351,\n            \"lookupName\": \"enable_call_pacing_for_AID\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 117083,\n            \"lookupName\": \"enable_call_pacing_for_CD\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 117082,\n            \"lookupName\": \"enable_call_pacing_for_PD\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 117081,\n            \"lookupName\": \"enable_call_pacing_for_TD\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 457406,\n            \"lookupName\": \"enable_call_state_column\",\n            \"lookupValue\": \"false\"\n        },\n        {\n            \"id\": 117076,\n            \"lookupName\": \"enable_followup_tab\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 117024,\n            \"lookupName\": \"enable_referral_tab\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 117117,\n            \"lookupName\": \"followup_cd_value_dashboard\",\n            \"lookupValue\": \"Follow Up\"\n        },\n        {\n            \"id\": 254980,\n            \"lookupName\": \"follow_up_due_date\",\n            \"lookupValue\": \"1\"\n        },\n        {\n            \"id\": 254979,\n            \"lookupName\": \"follow_up_subject\",\n            \"lookupValue\": \"Call Back\"\n        },\n        {\n            \"id\": 117105,\n            \"lookupName\": \"meeting_booked_cd_value_dashboard\",\n            \"lookupValue\": \"Not a Decision Maker\"\n        },\n        {\n            \"id\": 117112,\n            \"lookupName\": \"no_of_call_attempts_per_day\",\n            \"lookupValue\": \"0\"\n        },\n        {\n            \"id\": 247693,\n            \"lookupName\": \"opted_for_mapped_caller_ids\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 117118,\n            \"lookupName\": \"referral_cd_value_dashboard\",\n            \"lookupValue\": \"Got Referral\"\n        },\n        {\n            \"id\": 116897,\n            \"lookupName\": \"second_monitor_enabled\",\n            \"lookupValue\": \"true\"\n        },\n        {\n            \"id\": 486200,\n            \"lookupName\": \"sf_use_rest_api\",\n            \"lookupValue\": \"N\"\n        },\n        {\n            \"id\": 500742,\n            \"lookupName\": \"time_gap_between_each_dial_attempt\",\n            \"lookupValue\": \"true\"\n        },\n        {\n            \"id\": 116948,\n            \"lookupName\": \"update_do_not_call_upon_connect\",\n            \"lookupValue\": \"Y\"\n        },\n        {\n            \"id\": 500743,\n            \"lookupName\": \"update_do_not_call_upon_connect\",\n            \"lookupValue\": \"false\"\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 32,\n        \"limit\": 500,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"fe2e102e-999d-47f5-8b65-2e38a02a0d6b"},{"name":"Update Settings","id":"ab2fc221-48c2-4457-8b0e-30fc50a31412","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"data\": [\r\n        {\r\n            \"id\": 116948,\r\n            \"lookupName\": \"allow_copy_call_list_records_to_report_tables\",\r\n            \"lookupValue\": true\r\n        },\r\n        {\r\n            \"lookupName\": \"update_do_not_call_upon_connect\",\r\n            \"lookupValue\": \"Y\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/org/settings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["org","settings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"058b3139-7fac-40e2-8e37-d7aee7c3a1fa","name":"Update Settings","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"data\": [\r\n        {\r\n            \"id\": 116948,\r\n            \"lookupName\": \"allow_copy_call_list_records_to_report_tables\",\r\n            \"lookupValue\": true\r\n        },\r\n        {\r\n            \"lookupName\": \"update_do_not_call_upon_connect\",\r\n            \"lookupValue\": \"Y\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/org/settings"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 116948,\n            \"lookupName\": \"update_do_not_call_upon_connect\",\n            \"lookupValue\": \"true\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 0,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        },\n        {\n            \"id\": 500744,\n            \"lookupName\": \"update_do_not_call_upon_connect\",\n            \"lookupValue\": \"Y\",\n            \"activeFlag\": \"Y\",\n            \"lookupOrder\": 0,\n            \"defaultFlag\": \"N\",\n            \"crmType\": null\n        }\n    ]\n}"}],"_postman_id":"ab2fc221-48c2-4457-8b0e-30fc50a31412"}],"id":"22c7bc1d-b663-4034-8505-d352f95d3e0e","description":"<p>Org Information</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>org Id</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>clientId  <br /><code>Long</code></td>\n<td>clientId of the org</td>\n<td></td>\n</tr>\n<tr>\n<td>crmOrgId  <br /><code>String</code></td>\n<td>crmId of the org</td>\n<td></td>\n</tr>\n<tr>\n<td>clctiOrgId  <br /><code>String</code></td>\n<td>clctiOrgId</td>\n<td></td>\n</tr>\n<tr>\n<td>orgType  <br /><code>String</code></td>\n<td>org type</td>\n<td></td>\n</tr>\n<tr>\n<td>crmAdminContactName  <br /><code>String</code></td>\n<td>crm admin contact name</td>\n<td></td>\n</tr>\n<tr>\n<td>crmType  <br /><code>String</code></td>\n<td>crm type</td>\n<td></td>\n</tr>\n<tr>\n<td>clientName  <br /><code>String</code></td>\n<td>client name</td>\n<td></td>\n</tr>\n<tr>\n<td>clOrgId  <br /><code>Long</code></td>\n<td>clOrgId</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"22c7bc1d-b663-4034-8505-d352f95d3e0e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Parking Lot","item":[{"name":"Parking Lots","id":"650fd840-b9f8-4934-b346-f27bb9461dc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLots","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLots"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"ac5a83a9-19a7-4870-9a45-f586dd499ee5","name":"Parking Lots","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLots"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6252,\n            \"crmId\": \"crmgenkey_0daa6a92-0c7b-39b6-b5f0-0119bbd291c5\",\n            \"contactName\": \"asdfasdfasdf ABC13\",\n            \"accountName\": \"CL\",\n            \"title\": null,\n            \"phoneType\": \"phone\",\n            \"phone\": \"+16033860304\",\n            \"entryDatetime\": \"2022-06-01T13:14:54Z\",\n            \"callListRecordsData\": {\n                \"call_list_records_pk\": 1595237,\n                \"org_id\": 2355,\n                \"user_id\": 7424,\n                \"sf_pk\": \"crmgenkey_0daa6a92-0c7b-39b6-b5f0-0119bbd291c5\",\n                \"activity_id\": null,\n                \"data_list_id\": 8123,\n                \"record_type\": \"Contact\",\n                \"account_name\": \"CL\",\n                \"contact_name\": \"asdfasdfasdf ABC13\",\n                \"timezone\": \"EST\",\n                \"phone\": \"(603) 386-0304\",\n                \"callflag_phone\": \"Y\",\n                \"metadata_phone\": null,\n                \"dialer_formatted_phone\": null,\n                \"title\": null,\n                \"city\": null,\n                \"state\": null,\n                \"email_id\": \"cadence1test23@gmail.com\",\n                \"extension\": null,\n                \"qnotes\": \"** 06/01/2022 12:44 PM\\rCall Diverted\\r-\",\n                \"sf_report_name\": \"Cadence - Pending calls - 2801\",\n                \"priority_value\": 1,\n                \"temp_priority_value\": 1,\n                \"report_priority\": 1,\n                \"da_call_disposition\": null,\n                \"talker_call_disposition\": \"Call Diverted\",\n                \"da_call_comments\": null,\n                \"talker_call_comments\": \"-\",\n                \"subject\": \"Test\",\n                \"is_referral_or_inbound_lead_record\": false,\n                \"live_conversation_rate_score\": null,\n                \"technology_data_based_score\": null,\n                \"intent_data_based_score\": null,\n                \"company_score\": null,\n                \"lead_score\": 0,\n                \"row_processed_flag\": \"Y\",\n                \"dialed_flag\": \"Y\",\n                \"direct_phone_availability_score\": null,\n                \"recently_verified_score\": null,\n                \"contactabilty_score\": null,\n                \"first_name\": null,\n                \"last_name\": null,\n                \"is_lead_score_processed\": \"N\",\n                \"activity_datetime\": \"2022-06-01T12:44:54\",\n                \"custom_varchar_1\": null,\n                \"custom_varchar_2\": null,\n                \"custom_varchar_3\": null,\n                \"custom_varchar_4\": null,\n                \"custom_varchar_5\": null,\n                \"custom_varchar_6\": null,\n                \"custom_varchar_7\": null,\n                \"custom_varchar_8\": null,\n                \"custom_varchar_9\": null,\n                \"custom_varchar_10\": null,\n                \"custom_varchar_11\": null,\n                \"custom_varchar_12\": null,\n                \"custom_varchar_13\": null,\n                \"custom_varchar_14\": null,\n                \"custom_varchar_15\": null,\n                \"custom_varchar_16\": null,\n                \"custom_varchar_17\": null,\n                \"custom_varchar_18\": null,\n                \"custom_varchar_19\": null,\n                \"custom_varchar_20\": null,\n                \"custom_phone_1\": null,\n                \"custom_phone_2\": null,\n                \"custom_phone_3\": null,\n                \"custom_phone_4\": null,\n                \"custom_phone_5\": null,\n                \"callflag_custom_phone_1\": \"Y\",\n                \"callflag_custom_phone_2\": \"Y\",\n                \"callflag_custom_phone_3\": \"Y\",\n                \"callflag_custom_phone_4\": \"Y\",\n                \"callflag_custom_phone_5\": \"Y\",\n                \"metadata_custom_phone_1\": null,\n                \"metadata_custom_phone_2\": null,\n                \"metadata_custom_phone_3\": null,\n                \"metadata_custom_phone_4\": null,\n                \"metadata_custom_phone_5\": null,\n                \"dialer_formatted_custom_phone_1\": null,\n                \"dialer_formatted_custom_phone_2\": null,\n                \"dialer_formatted_custom_phone_3\": null,\n                \"dialer_formatted_custom_phone_4\": null,\n                \"dialer_formatted_custom_phone_5\": null,\n                \"custom_numeric_1\": null,\n                \"custom_numeric_2\": null,\n                \"custom_numeric_3\": null,\n                \"custom_numeric_4\": null,\n                \"custom_numeric_5\": null,\n                \"custom_integer_1\": null,\n                \"custom_integer_2\": null,\n                \"custom_integer_3\": null,\n                \"custom_integer_4\": null,\n                \"custom_integer_5\": null,\n                \"custom_date_1\": null,\n                \"custom_date_2\": null,\n                \"custom_date_3\": null,\n                \"custom_date_4\": null,\n                \"custom_date_5\": null,\n                \"custom_timestamp_1\": null,\n                \"custom_timestamp_2\": null,\n                \"custom_timestamp_3\": null,\n                \"custom_timestamp_4\": null,\n                \"custom_timestamp_5\": null,\n                \"caller_id_phone\": null,\n                \"multitouch_member_id\": 256413,\n                \"touch_step_no\": null,\n                \"member_current_touch_id\": 0,\n                \"duedate\": \"2022-04-22\",\n                \"multi_touch_id\": 9732,\n                \"custom_boolean_1\": false,\n                \"custom_boolean_2\": false,\n                \"custom_boolean_3\": false,\n                \"custom_boolean_4\": null,\n                \"custom_boolean_5\": null,\n                \"inbound_records_pk\": null,\n                \"relationship_name\": null,\n                \"crm_type\": null,\n                \"account_id\": null,\n                \"timezone_custom_phone_1\": null,\n                \"timezone_custom_phone_2\": null,\n                \"timezone_custom_phone_3\": null,\n                \"timezone_custom_phone_4\": null,\n                \"timezone_custom_phone_5\": null,\n                \"trucadence_member_task_id\": 4236,\n                \"call_counter\": null,\n                \"campaign_name\": \"1000 prospect check 27 may cadence\",\n                \"current_touch_id\": null,\n                \"current_touch_type\": \"CALL\",\n                \"email_counter\": null,\n                \"first_dialed_date\": null,\n                \"first_emailed_date\": null,\n                \"last_da_call_outcome\": null,\n                \"last_dialed_date\": null,\n                \"last_email_outcome\": null,\n                \"last_emailed_date\": null,\n                \"last_talker_call_outcome\": null,\n                \"last_touch_date_time\": null,\n                \"linkedin_url\": null,\n                \"optout_flag\": false,\n                \"tag\": null,\n                \"activity_comments\": \"Test123\",\n                \"extension_custom_phone_1\": null,\n                \"extension_custom_phone_2\": null,\n                \"extension_custom_phone_3\": null,\n                \"extension_custom_phone_4\": null,\n                \"extension_custom_phone_5\": null,\n                \"total_engagement_score\": 0,\n                \"modified_datetime\": null,\n                \"extension_custom_phone_6\": null,\n                \"extension_custom_phone_7\": null\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"rule\": [\n                    {\n                        \"id\": 663\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"650fd840-b9f8-4934-b346-f27bb9461dc7"},{"name":"Parking Lot","id":"a738d8b5-8bd5-4325-9743-194ed52b5430","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLots/:ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLots",":ID"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"60bfd9d5-1e7e-4538-8ec2-f652af8c5b86","type":"any","value":null,"key":"ID"}]}},"response":[{"id":"38d06f84-9e49-4500-94df-aa1b9b9a8426","name":"Parking Lot","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLots/6252"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6252,\n            \"crmId\": \"crmgenkey_0daa6a92-0c7b-39b6-b5f0-0119bbd291c5\",\n            \"contactName\": \"asdfasdfasdf ABC13\",\n            \"accountName\": \"CL\",\n            \"title\": null,\n            \"phoneType\": \"phone\",\n            \"phoneNumber\": \"+16033860304\",\n            \"parkingLotEntryDatetime\": \"2022-06-01T13:14:54Z\",\n            \"callListRecordsData\": {\n                \"call_list_records_pk\": 1595237,\n                \"org_id\": 2355,\n                \"user_id\": 7424,\n                \"sf_pk\": \"crmgenkey_0daa6a92-0c7b-39b6-b5f0-0119bbd291c5\",\n                \"activity_id\": null,\n                \"data_list_id\": 8123,\n                \"record_type\": \"Contact\",\n                \"account_name\": \"CL\",\n                \"contact_name\": \"asdfasdfasdf ABC13\",\n                \"timezone\": \"EST\",\n                \"phone\": \"(603) 386-0304\",\n                \"callflag_phone\": \"Y\",\n                \"metadata_phone\": null,\n                \"dialer_formatted_phone\": null,\n                \"title\": null,\n                \"city\": null,\n                \"state\": null,\n                \"email_id\": \"cadence1test23@gmail.com\",\n                \"extension\": null,\n                \"qnotes\": \"** 06/01/2022 12:44 PM\\rCall Diverted\\r-\",\n                \"sf_report_name\": \"Cadence - Pending calls - 2801\",\n                \"priority_value\": 1,\n                \"temp_priority_value\": 1,\n                \"report_priority\": 1,\n                \"da_call_disposition\": null,\n                \"talker_call_disposition\": \"Call Diverted\",\n                \"da_call_comments\": null,\n                \"talker_call_comments\": \"-\",\n                \"subject\": \"Test\",\n                \"is_referral_or_inbound_lead_record\": false,\n                \"live_conversation_rate_score\": null,\n                \"technology_data_based_score\": null,\n                \"intent_data_based_score\": null,\n                \"company_score\": null,\n                \"lead_score\": 0,\n                \"row_processed_flag\": \"Y\",\n                \"dialed_flag\": \"Y\",\n                \"direct_phone_availability_score\": null,\n                \"recently_verified_score\": null,\n                \"contactabilty_score\": null,\n                \"first_name\": null,\n                \"last_name\": null,\n                \"is_lead_score_processed\": \"N\",\n                \"activity_datetime\": \"2022-06-01T12:44:54\",\n                \"custom_varchar_1\": null,\n                \"custom_varchar_2\": null,\n                \"custom_varchar_3\": null,\n                \"custom_varchar_4\": null,\n                \"custom_varchar_5\": null,\n                \"custom_varchar_6\": null,\n                \"custom_varchar_7\": null,\n                \"custom_varchar_8\": null,\n                \"custom_varchar_9\": null,\n                \"custom_varchar_10\": null,\n                \"custom_varchar_11\": null,\n                \"custom_varchar_12\": null,\n                \"custom_varchar_13\": null,\n                \"custom_varchar_14\": null,\n                \"custom_varchar_15\": null,\n                \"custom_varchar_16\": null,\n                \"custom_varchar_17\": null,\n                \"custom_varchar_18\": null,\n                \"custom_varchar_19\": null,\n                \"custom_varchar_20\": null,\n                \"custom_phone_1\": null,\n                \"custom_phone_2\": null,\n                \"custom_phone_3\": null,\n                \"custom_phone_4\": null,\n                \"custom_phone_5\": null,\n                \"callflag_custom_phone_1\": \"Y\",\n                \"callflag_custom_phone_2\": \"Y\",\n                \"callflag_custom_phone_3\": \"Y\",\n                \"callflag_custom_phone_4\": \"Y\",\n                \"callflag_custom_phone_5\": \"Y\",\n                \"metadata_custom_phone_1\": null,\n                \"metadata_custom_phone_2\": null,\n                \"metadata_custom_phone_3\": null,\n                \"metadata_custom_phone_4\": null,\n                \"metadata_custom_phone_5\": null,\n                \"dialer_formatted_custom_phone_1\": null,\n                \"dialer_formatted_custom_phone_2\": null,\n                \"dialer_formatted_custom_phone_3\": null,\n                \"dialer_formatted_custom_phone_4\": null,\n                \"dialer_formatted_custom_phone_5\": null,\n                \"custom_numeric_1\": null,\n                \"custom_numeric_2\": null,\n                \"custom_numeric_3\": null,\n                \"custom_numeric_4\": null,\n                \"custom_numeric_5\": null,\n                \"custom_integer_1\": null,\n                \"custom_integer_2\": null,\n                \"custom_integer_3\": null,\n                \"custom_integer_4\": null,\n                \"custom_integer_5\": null,\n                \"custom_date_1\": null,\n                \"custom_date_2\": null,\n                \"custom_date_3\": null,\n                \"custom_date_4\": null,\n                \"custom_date_5\": null,\n                \"custom_timestamp_1\": null,\n                \"custom_timestamp_2\": null,\n                \"custom_timestamp_3\": null,\n                \"custom_timestamp_4\": null,\n                \"custom_timestamp_5\": null,\n                \"caller_id_phone\": null,\n                \"multitouch_member_id\": 256413,\n                \"touch_step_no\": null,\n                \"member_current_touch_id\": 0,\n                \"duedate\": \"2022-04-22\",\n                \"multi_touch_id\": 9732,\n                \"custom_boolean_1\": false,\n                \"custom_boolean_2\": false,\n                \"custom_boolean_3\": false,\n                \"custom_boolean_4\": null,\n                \"custom_boolean_5\": null,\n                \"inbound_records_pk\": null,\n                \"relationship_name\": null,\n                \"crm_type\": null,\n                \"account_id\": null,\n                \"timezone_custom_phone_1\": null,\n                \"timezone_custom_phone_2\": null,\n                \"timezone_custom_phone_3\": null,\n                \"timezone_custom_phone_4\": null,\n                \"timezone_custom_phone_5\": null,\n                \"trucadence_member_task_id\": 4236,\n                \"call_counter\": null,\n                \"campaign_name\": \"1000 prospect check 27 may cadence\",\n                \"current_touch_id\": null,\n                \"current_touch_type\": \"CALL\",\n                \"email_counter\": null,\n                \"first_dialed_date\": null,\n                \"first_emailed_date\": null,\n                \"last_da_call_outcome\": null,\n                \"last_dialed_date\": null,\n                \"last_email_outcome\": null,\n                \"last_emailed_date\": null,\n                \"last_talker_call_outcome\": null,\n                \"last_touch_date_time\": null,\n                \"linkedin_url\": null,\n                \"optout_flag\": false,\n                \"tag\": null,\n                \"activity_comments\": \"Test123\",\n                \"extension_custom_phone_1\": null,\n                \"extension_custom_phone_2\": null,\n                \"extension_custom_phone_3\": null,\n                \"extension_custom_phone_4\": null,\n                \"extension_custom_phone_5\": null,\n                \"total_engagement_score\": 0,\n                \"modified_datetime\": null,\n                \"extension_custom_phone_6\": null,\n                \"extension_custom_phone_7\": null\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"a738d8b5-8bd5-4325-9743-194ed52b5430"},{"name":"Parking Lot","id":"ce127fdb-7e2d-4f5c-ae4f-67749621c42f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/parkingLots/:ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLots",":ID"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"3560c5de-0645-4b00-b37a-03cf1315d111","type":"any","value":null,"key":"ID"}]}},"response":[{"id":"bf2114c5-fe6a-46b5-89c4-502460729f87","name":"Parking Lot","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/parkingLots/6252"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"ce127fdb-7e2d-4f5c-ae4f-67749621c42f"},{"name":"Export","id":"28f09fe7-806c-4577-b5c9-fd6fd17df409","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"exportModule\": \"parking_lot\",\r\n        \"user\": {\r\n            \"id\": 14258\r\n        }\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/parkingLot/export","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["sign","parkingLot","export"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"0d4f32d2-b613-4e66-a927-ea3b29edb8a7","name":"Export","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"exportModule\": \"parking_lot\",\r\n        \"user\": {\r\n            \"id\": 14258\r\n        }\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/parkingLot/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"key\": \"CEDCEDF99BB9BE8D423B251F2F2F057C59B02CD98A3302877AEAE27714B12A51DD3BDD795241670A1D3928B0F919A6C817F53826AF2435DE\",\n            \"na\": \"4408FD89F4A9D7B7FA771E56E6AE2BBF955EEB1889E7081D2E25F768AD445D5F\"\n        }\n    ]\n}"},{"id":"705b7647-0a3f-46d9-b5f9-62a568f0d166","name":"Download","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"exportModule\": \"parking_lot\",\r\n        \"user\": {\r\n            \"id\": 14258\r\n        }\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/public/parkingLot/export/CEDCEDF99BB9BE8D423B251F2F2F057C59B02CD98A3302877AEAE27714B12A51DD3BDD795241670A1D3928B0F919A6C817F53826AF2435DE?na=4408FD89F4A9D7B7FA771E56E6AE2BBF955EEB1889E7081D2E25F768AD445D5F","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["public","parkingLot","export","CEDCEDF99BB9BE8D423B251F2F2F057C59B02CD98A3302877AEAE27714B12A51DD3BDD795241670A1D3928B0F919A6C817F53826AF2435DE"],"query":[{"key":"na","value":"4408FD89F4A9D7B7FA771E56E6AE2BBF955EEB1889E7081D2E25F768AD445D5F"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"28f09fe7-806c-4577-b5c9-fd6fd17df409"},{"name":"Parking lot by call list record Id","id":"9b7f5dc3-f1fd-4c89-ba79-3dfb1269a674","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/sign/parkingLots/callListRecord/:ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["sign","parkingLots","callListRecord",":ID"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"45f444a9-8f60-43a3-920e-0ea6553da85c","type":"any","value":"Call list record ID","key":"ID"}]}},"response":[{"id":"e23122c0-1f28-483b-8651-7dddfc7145d2","name":"Parking lot by call list record Id","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/sign/parkingLots/callListRecord/503560"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 13114,\n            \"crmId\": \"crmgenkey_9fefecc3-ff53-3fb2-ab5f-cec9a1439fbf\",\n            \"contactName\": \"Anna150 Abigail150\",\n            \"accountName\": \"Anna Limited\",\n            \"title\": null,\n            \"phoneType\": \"custom_phone_1\",\n            \"phone\": \"+17042276540\",\n            \"entryDatetime\": \"2024-05-28T06:33:24Z\",\n            \"callListRecordsData\": {\n                \"call_list_records_pk\": 503560,\n                \"org_id\": 6826,\n                \"user_id\": 14258,\n                \"sf_pk\": \"crmgenkey_9fefecc3-ff53-3fb2-ab5f-cec9a1439fbf\",\n                \"activity_id\": null,\n                \"data_list_id\": 18943,\n                \"record_type\": null,\n                \"account_name\": \"Anna Limited\",\n                \"contact_name\": \"Anna150 Abigail150\",\n                \"timezone\": \"\",\n                \"phone\": \"(800) 796-3574\",\n                \"callflag_phone\": \"Y\",\n                \"metadata_phone\": null,\n                \"dialer_formatted_phone\": null,\n                \"title\": null,\n                \"city\": null,\n                \"state\": null,\n                \"email_id\": \"AnnaAbigail150@koncert.com\",\n                \"extension\": \"\",\n                \"qnotes\": \"** 05/28/2024 02:33 AM \\\\t - Call Attempted -\",\n                \"sf_report_name\": \"Anish US Hotel List (1).csv\",\n                \"priority_value\": 1,\n                \"temp_priority_value\": 1,\n                \"report_priority\": 1,\n                \"da_call_disposition\": \"Call Attempted\",\n                \"talker_call_disposition\": null,\n                \"da_call_comments\": \"\",\n                \"talker_call_comments\": null,\n                \"subject\": null,\n                \"is_referral_or_inbound_lead_record\": false,\n                \"live_conversation_rate_score\": null,\n                \"technology_data_based_score\": null,\n                \"intent_data_based_score\": null,\n                \"company_score\": null,\n                \"lead_score\": 0,\n                \"row_processed_flag\": \"Y\",\n                \"dialed_flag\": \"Y\",\n                \"direct_phone_availability_score\": null,\n                \"recently_verified_score\": null,\n                \"contactabilty_score\": null,\n                \"first_name\": \"Anna150\",\n                \"last_name\": \"Abigail150\",\n                \"is_lead_score_processed\": \"N\",\n                \"activity_datetime\": \"2024-05-28T02:33:24\",\n                \"custom_varchar_1\": null,\n                \"custom_varchar_2\": null,\n                \"custom_varchar_3\": null,\n                \"custom_varchar_4\": null,\n                \"custom_varchar_5\": null,\n                \"custom_varchar_6\": null,\n                \"custom_varchar_7\": null,\n                \"custom_varchar_8\": null,\n                \"custom_varchar_9\": null,\n                \"custom_varchar_10\": null,\n                \"custom_varchar_11\": null,\n                \"custom_varchar_12\": null,\n                \"custom_varchar_13\": null,\n                \"custom_varchar_14\": null,\n                \"custom_varchar_15\": null,\n                \"custom_varchar_16\": null,\n                \"custom_varchar_17\": null,\n                \"custom_varchar_18\": null,\n                \"custom_varchar_19\": null,\n                \"custom_varchar_20\": null,\n                \"custom_phone_1\": \"(704) 227-6540\",\n                \"custom_phone_2\": \"(770) 255-4720\",\n                \"custom_phone_3\": null,\n                \"custom_phone_4\": null,\n                \"custom_phone_5\": null,\n                \"callflag_custom_phone_1\": \"Y\",\n                \"callflag_custom_phone_2\": \"Y\",\n                \"callflag_custom_phone_3\": \"Y\",\n                \"callflag_custom_phone_4\": \"Y\",\n                \"callflag_custom_phone_5\": \"Y\",\n                \"metadata_custom_phone_1\": null,\n                \"metadata_custom_phone_2\": null,\n                \"metadata_custom_phone_3\": null,\n                \"metadata_custom_phone_4\": null,\n                \"metadata_custom_phone_5\": null,\n                \"dialer_formatted_custom_phone_1\": null,\n                \"dialer_formatted_custom_phone_2\": null,\n                \"dialer_formatted_custom_phone_3\": null,\n                \"dialer_formatted_custom_phone_4\": null,\n                \"dialer_formatted_custom_phone_5\": null,\n                \"custom_numeric_1\": null,\n                \"custom_numeric_2\": null,\n                \"custom_numeric_3\": null,\n                \"custom_numeric_4\": null,\n                \"custom_numeric_5\": null,\n                \"custom_integer_1\": null,\n                \"custom_integer_2\": null,\n                \"custom_integer_3\": null,\n                \"custom_integer_4\": null,\n                \"custom_integer_5\": null,\n                \"custom_date_1\": null,\n                \"custom_date_2\": null,\n                \"custom_date_3\": null,\n                \"custom_date_4\": null,\n                \"custom_date_5\": null,\n                \"custom_timestamp_1\": null,\n                \"custom_timestamp_2\": null,\n                \"custom_timestamp_3\": null,\n                \"custom_timestamp_4\": null,\n                \"custom_timestamp_5\": null,\n                \"caller_id_phone\": null,\n                \"multitouch_member_id\": null,\n                \"touch_step_no\": null,\n                \"member_current_touch_id\": null,\n                \"duedate\": null,\n                \"multi_touch_id\": null,\n                \"custom_boolean_1\": null,\n                \"custom_boolean_2\": null,\n                \"custom_boolean_3\": null,\n                \"custom_boolean_4\": null,\n                \"custom_boolean_5\": null,\n                \"inbound_records_pk\": null,\n                \"relationship_name\": null,\n                \"crm_type\": null,\n                \"account_id\": null,\n                \"timezone_custom_phone_1\": \"\",\n                \"timezone_custom_phone_2\": \"\",\n                \"timezone_custom_phone_3\": null,\n                \"timezone_custom_phone_4\": null,\n                \"timezone_custom_phone_5\": null,\n                \"trucadence_member_task_id\": null,\n                \"call_counter\": null,\n                \"campaign_name\": null,\n                \"current_touch_id\": null,\n                \"current_touch_type\": null,\n                \"email_counter\": null,\n                \"first_dialed_date\": null,\n                \"first_emailed_date\": null,\n                \"last_da_call_outcome\": null,\n                \"last_dialed_date\": null,\n                \"last_email_outcome\": null,\n                \"last_emailed_date\": null,\n                \"last_talker_call_outcome\": null,\n                \"last_touch_date_time\": null,\n                \"linkedin_url\": \"https://in.linkedin.com/in/suderson-balakrishnan-529006223\",\n                \"optout_flag\": null,\n                \"tag\": null,\n                \"activity_comments\": null,\n                \"extension_custom_phone_1\": \"\",\n                \"extension_custom_phone_2\": \"\",\n                \"extension_custom_phone_3\": null,\n                \"extension_custom_phone_4\": null,\n                \"extension_custom_phone_5\": null,\n                \"total_engagement_score\": 0,\n                \"custom_varchar_21\": null,\n                \"custom_varchar_22\": null,\n                \"custom_varchar_23\": null,\n                \"custom_varchar_24\": null,\n                \"custom_varchar_25\": null,\n                \"custom_varchar_26\": null,\n                \"custom_varchar_27\": null,\n                \"custom_varchar_28\": null,\n                \"custom_varchar_29\": null,\n                \"custom_varchar_30\": null,\n                \"custom_varchar_31\": null,\n                \"custom_varchar_32\": null,\n                \"custom_varchar_33\": null,\n                \"custom_varchar_34\": null,\n                \"custom_varchar_35\": null,\n                \"custom_date_6\": null,\n                \"custom_date_7\": null,\n                \"custom_date_8\": null,\n                \"custom_phone_6\": null,\n                \"call_flag_custom_phone_6\": null,\n                \"metadata_custom_phone_6\": null,\n                \"dialer_formatted_custom_phone_6\": null,\n                \"timezone_custom_phone_6\": null,\n                \"extension_custom_phone_6\": null,\n                \"custom_phone_7\": null,\n                \"call_flag_custom_phone_7\": null,\n                \"metadata_custom_phone_7\": null,\n                \"dialer_formatted_custom_phone_7\": null,\n                \"timezone_custom_phone_7\": null,\n                \"extension_custom_phone_7\": null,\n                \"custom_varchar_36\": null,\n                \"custom_phone_8\": null,\n                \"call_flag_custom_phone_8\": null,\n                \"metadata_custom_phone_8\": null,\n                \"dialer_formatted_custom_phone_8\": null,\n                \"timezone_custom_phone_8\": null,\n                \"custom_phone_9\": null,\n                \"call_flag_custom_phone_9\": null,\n                \"metadata_custom_phone_9\": null,\n                \"dialer_formatted_custom_phone_9\": null,\n                \"timezone_custom_phone_9\": null,\n                \"custom_phone_10\": null,\n                \"call_flag_custom_phone_10\": null,\n                \"metadata_custom_phone_10\": null,\n                \"dialer_formatted_custom_phone_10\": null,\n                \"timezone_custom_phone_10\": null,\n                \"custom_varchar_37\": null,\n                \"custom_varchar_38\": null,\n                \"custom_varchar_39\": null,\n                \"custom_varchar_40\": null,\n                \"custom_varchar_41\": null,\n                \"custom_varchar_42\": null,\n                \"custom_varchar_43\": null,\n                \"custom_varchar_44\": null,\n                \"custom_varchar_45\": null,\n                \"custom_varchar_46\": null,\n                \"custom_varchar_47\": null,\n                \"custom_varchar_48\": null,\n                \"custom_varchar_49\": null,\n                \"custom_varchar_50\": null,\n                \"custom_date_9\": null,\n                \"custom_date_10\": null,\n                \"custom_date_11\": null,\n                \"custom_date_12\": null,\n                \"custom_date_13\": null,\n                \"custom_date_14\": null,\n                \"custom_date_15\": null,\n                \"custom_date_16\": null,\n                \"custom_date_17\": null,\n                \"custom_phone_11\": null,\n                \"call_flag_custom_phone_11\": null,\n                \"metadata_custom_phone_11\": null,\n                \"dialer_formatted_custom_phone_11\": null,\n                \"timezone_custom_phone_11\": null,\n                \"custom_phone_12\": null,\n                \"call_flag_custom_phone_12\": null,\n                \"metadata_custom_phone_12\": null,\n                \"dialer_formatted_custom_phone_12\": null,\n                \"timezone_custom_phone_12\": null,\n                \"custom_phone_13\": null,\n                \"call_flag_custom_phone_13\": null,\n                \"metadata_custom_phone_13\": null,\n                \"dialer_formatted_custom_phone_13\": null,\n                \"timezone_custom_phone_13\": null,\n                \"custom_phone_14\": null,\n                \"call_flag_custom_phone_14\": null,\n                \"metadata_custom_phone_14\": null,\n                \"dialer_formatted_custom_phone_14\": null,\n                \"timezone_custom_phone_14\": null,\n                \"custom_phone_15\": null,\n                \"call_flag_custom_phone_15\": null,\n                \"metadata_custom_phone_15\": null,\n                \"dialer_formatted_custom_phone_15\": null,\n                \"timezone_custom_phone_15\": null,\n                \"custom_phone_16\": null,\n                \"call_flag_custom_phone_16\": null,\n                \"metadata_custom_phone_16\": null,\n                \"dialer_formatted_custom_phone_16\": null,\n                \"timezone_custom_phone_16\": null,\n                \"custom_phone_17\": null,\n                \"call_flag_custom_phone_17\": null,\n                \"metadata_custom_phone_17\": null,\n                \"dialer_formatted_custom_phone_17\": null,\n                \"timezone_custom_phone_17\": null,\n                \"custom_phone_18\": null,\n                \"call_flag_custom_phone_18\": null,\n                \"metadata_custom_phone_18\": null,\n                \"dialer_formatted_custom_phone_18\": null,\n                \"timezone_custom_phone_18\": null,\n                \"custom_phone_19\": null,\n                \"call_flag_custom_phone_19\": null,\n                \"metadata_custom_phone_19\": null,\n                \"dialer_formatted_custom_phone_19\": null,\n                \"timezone_custom_phone_19\": null,\n                \"modified_datetime\": \"2024-05-28T06:33:24\",\n                \"custom_date_18\": null,\n                \"custom_date_19\": null,\n                \"custom_date_20\": null,\n                \"custom_phone_20\": null,\n                \"call_flag_custom_phone_20\": null,\n                \"metadata_custom_phone_20\": null,\n                \"dialer_formatted_custom_phone_20\": null,\n                \"timezone_custom_phone_20\": null,\n                \"extension_custom_phone_20\": null,\n                \"task_type\": null,\n                \"website_url\": null,\n                \"created_date\": null,\n                \"task_priority\": null\n            },\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 14258\n                    }\n                ],\n                \"rule\": [\n                    {\n                        \"id\": 8664\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"9b7f5dc3-f1fd-4c89-ba79-3dfb1269a674"}],"id":"fa44cc68-2143-4e5d-b39b-cb385eb849c7","description":"<p>Parking Lots.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /> <code>Long</code></td>\n<td>Parking Lot ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>crmId <br /> <code>String</code></td>\n<td>Id of the CRM</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>contactName <br /> <code>String</code></td>\n<td>Contact name</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>accountName  <br /> <code>String</code></td>\n<td>Account name</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>title <br /> <code>String</code></td>\n<td>Title</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>phoneType <br /> <code>String</code></td>\n<td>Phone Type</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>phone <br /> <code>String</code></td>\n<td>Phone Number</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>entryDatetime <br /> <code>Date-Time</code></td>\n<td>Parking Lot Entry Date time</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>callListRecordsData  <br /><code>JSON OBJECT</code></td>\n<td>callListRecordsData</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user  <br /><code>Array of Objects</code></td>\n<td>ID of the user who created the parking lot</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>rule  <br /> <code>Object</code></td>\n<td>ID of the Parking Lot Rule who created the parking lot</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fa44cc68-2143-4e5d-b39b-cb385eb849c7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Parking Lot Rule","item":[{"name":"Parking Lot Rules","id":"43209005-3ed8-40e3-9c24-4fae86b3874e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLotRules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLotRules"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"8c702220-3cc9-4d26-8d67-a650fc5e88d1","name":"Parking Lots","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLotRules"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 5234,\n            \"name\": \"VB RULES 9\",\n            \"type\": \"DA\",\n            \"operator\": \"EQUALS\",\n            \"ruleInput\": [\n                \"Went to IVR\"\n            ],\n            \"recurrenceCount\": 12,\n            \"createdDate\": \"2023-02-23T12:27:28Z\",\n            \"modifiedDate\": \"2023-02-24T07:58:38Z\",\n            \"ruleCreator\": \"ADMIN\",\n            \"considerConsecutiveCount\": true,\n            \"executeForEachRule\": true,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"modifiedUser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"43209005-3ed8-40e3-9c24-4fae86b3874e"},{"name":"Parking Lot Rule","id":"c8574156-37d1-45f8-b7fb-32e06520de3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLotRules/:ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLotRules",":ID"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"67db614d-66e7-40da-9a7d-153042757129","type":"any","value":null,"key":"ID"}]}},"response":[{"id":"32136575-d4c6-4037-8a2f-db74ecd97a3a","name":"Parking Lot","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/parkingLotRules/5234"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 5234,\n            \"name\": \"VB RULES 9\",\n            \"type\": \"DA\",\n            \"operator\": \"EQUALS\",\n            \"ruleInput\": [\n                \"Went to IVR\"\n            ],\n            \"recurrenceCount\": 12,\n            \"createdDate\": \"2023-02-23T12:27:28Z\",\n            \"modifiedDate\": \"2023-02-24T07:58:38Z\",\n            \"ruleCreator\": \"ADMIN\",\n            \"considerConsecutiveCount\": true,\n            \"executeForEachRule\": true,\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"id\": 7424\n                    }\n                ],\n                \"modifiedUser\": [\n                    {\n                        \"id\": 7424\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"c8574156-37d1-45f8-b7fb-32e06520de3d"},{"name":"Parking Lot Rule","id":"833593c5-6b6b-4f31-a8e4-aca11145ad47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/parkingLotRules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLotRules"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"00583804-1d65-473e-84da-49bbf610acba","name":"Parking Lot Rule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"AI\",\r\n    \"name\": \"VB RULES 1\",\r\n    \"ruleInput\": [\r\n        \"Went to Voice mail\",\r\n        \"Call Attempted\"\r\n    ],\r\n    \"operator\": \"EQUALS\",\r\n    \"recurrenceCount\": 12,\r\n    \"considerConsecutiveCount\": true,\r\n    \"executeForEachRule\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/parkingLotRules"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 5252,\r\n            \"name\": \"VB RULES 1\",\r\n            \"type\": \"AI\",\r\n            \"operator\": \"EQUALS\",\r\n            \"ruleInput\": [\r\n                \"Went to Voice mail\",\r\n                \"Call Attempted\"\r\n            ],\r\n            \"recurrenceCount\": 12,\r\n            \"createdDate\": \"2023-02-27T09:46:37Z\",\r\n            \"modifiedDate\": \"2023-02-27T09:46:37Z\",\r\n            \"ruleCreator\": \"ADMIN\",\r\n            \"considerConsecutiveCount\": true,\r\n            \"executeForEachRule\": true,\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ],\r\n                \"modifiedUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"833593c5-6b6b-4f31-a8e4-aca11145ad47"},{"name":"Parking Lot Rule","id":"230c8f51-dc52-4a5d-bc4a-275c3285c5d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/parkingLotRules/:ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLotRules",":ID"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"6fda3f7d-b1eb-417d-ada8-763f1bc65913","type":"any","value":null,"key":"ID"}]}},"response":[{"id":"3aa5be0f-fed0-4a04-a454-1d12799809fc","name":"Parking Lot Rule","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"AI\",\r\n    \"name\": \"VB RULES 2\",\r\n    \"ruleInput\": [\r\n        \"Went to Voice mail\"\r\n    ],\r\n    \"operator\": \"EQUALS\",\r\n    \"recurrenceCount\": 12,\r\n    \"considerConsecutiveCount\": true,\r\n    \"executeForEachRule\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/parkingLotRules/5252"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 5252,\r\n            \"name\": \"VB RULES 2\",\r\n            \"type\": \"AI\",\r\n            \"operator\": \"EQUALS\",\r\n            \"ruleInput\": [\r\n                \"Went to Voice mail\"\r\n            ],\r\n            \"recurrenceCount\": 12,\r\n            \"createdDate\": \"2023-02-27T09:46:37Z\",\r\n            \"modifiedDate\": \"2023-02-27T09:56:19Z\",\r\n            \"ruleCreator\": \"ADMIN\",\r\n            \"considerConsecutiveCount\": true,\r\n            \"executeForEachRule\": true,\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ],\r\n                \"modifiedUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"230c8f51-dc52-4a5d-bc4a-275c3285c5d7"},{"name":"Parking Lot Rule","id":"ca6ae39b-f90b-4755-b794-ea5808572ffc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/parkingLotRules/:ID","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["parkingLotRules",":ID"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"fb0c2f9c-20bf-438c-bc69-539d631003f2","type":"any","value":null,"key":"ID"}]}},"response":[{"id":"ad1a2877-4c81-45b5-98b2-ce3bd628a9bc","name":"Parking Lot Rule","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"text/plain"}],"url":"https://{{koncert_dialers_api}}/parkingLotRules/5252"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"ca6ae39b-f90b-4755-b794-ea5808572ffc"}],"id":"cadb586c-6102-4da5-882f-68f2ac3c121b","description":"<p>Parking Lot Rules.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Parking Lot Rule ID</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>Parking Lot Rule name</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>type  <br /><code>String</code></td>\n<td>Parking Lot Rule type. Accepted values are AI, DA, &amp; TALKER.</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>operator  <br /><code>String</code></td>\n<td>Parking Lot Rule operator. Accepted values are EQUALS &amp; ANY.</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>ruleInput  <br /><code>Array of String</code></td>\n<td>Parking Lot Rule input. Array of Call Outcomes.</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>recurrenceCount  <br /><code>Integer</code></td>\n<td>Parking Lot Rule recurrence count</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the parking lot rule was created</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedDate  <br /><code>Date-Time</code></td>\n<td>Date and time when the parking lot rule was modified</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>recurrenceCount  <br /><code>Integer</code></td>\n<td>Parking Lot Rule recurrence count</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>ruleCreator  <br /><code>String</code></td>\n<td>Parking Lot Rule creator name.</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>considerConsecutiveCount  <br /><code>Boolean</code></td>\n<td>Whether considering the consecutive count or not and the default flag is false</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>executeForEachRule  <br /><code>Boolean</code></td>\n<td>Whether to execute for each rule or not and the default flag is false</td>\n<td><code>Readonly</code></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user  <br /><code>Array of Objects</code></td>\n<td>ID of the user who created the parking lot rule</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedUser  <br /><code>Array of Objects</code></td>\n<td>ID of the user who modified the parking lot rule</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"cadb586c-6102-4da5-882f-68f2ac3c121b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Persona","item":[{"name":"Get All Personas","id":"bdddadef-7476-48c0-bd51-1197e32678aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/persona?page[limit]=10&page[offset]=0&sort[persona]=asc","description":"<p>Retrieves all personas with pagination and sorting support.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li>page[limit]: Number of records per page</li>\n<li>page[offset]: Offset for pagination</li>\n<li>sort[persona]: Sort by persona field (asc/desc)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["persona"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"page[limit]","value":"10"},{"description":{"content":"<p>Offset for pagination</p>\n","type":"text/plain"},"key":"page[offset]","value":"0"},{"description":{"content":"<p>Sort by persona (asc/desc)</p>\n","type":"text/plain"},"key":"sort[persona]","value":"asc"}],"variable":[]}},"response":[{"id":"65b1f58d-795b-45c6-819b-171a8dbb2e81","name":"Success Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/persona?page[limit]=10&page[offset]=0&sort[persona]=asc","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["persona"],"query":[{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"},{"key":"sort[persona]","value":"asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 764,\n            \"persona\": \"vice president\",\n            \"includeTitle\": [\n                \"Vice President\"\n            ],\n            \"excludeTitle\": [\n                \"Information Technology Services Manager\"\n            ],\n            \"createdDate\": \"2025-11-19T10:12:01Z\",\n            \"modifiedDate\": \"2025-11-19T10:12:40Z\",\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 24047\n                },\n                \"modifiedBy\": {\n                    \"id\": 24047\n                }\n            }\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 1,\n        \"limit\": 10,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"bdddadef-7476-48c0-bd51-1197e32678aa"},{"name":"Get Job Titles","id":"4b8036ac-759c-443a-826c-4c6e504f7bb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/persona/jobTitles?page[limit]=10&page[offset]=0","description":"<p>Retrieves a list of available job titles with pagination.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li>page[limit]: Number of records per page</li>\n<li>page[offset]: Offset for pagination</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["persona","jobTitles"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Number of records per page</p>\n","type":"text/plain"},"key":"page[limit]","value":"10"},{"description":{"content":"<p>Offset for pagination</p>\n","type":"text/plain"},"key":"page[offset]","value":"0"}],"variable":[]}},"response":[{"id":"a406825a-444d-4116-a693-5a412d6d46ee","name":"Success Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/persona/jobTitles?page[limit]=10&page[offset]=0","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["persona","jobTitles"],"query":[{"key":"page[limit]","value":"10"},{"key":"page[offset]","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"jobTitle\": \"Vice President\"\n        },\n        {\n            \"id\": 2,\n            \"jobTitle\": \"Operations Vice President\"\n        },\n        {\n            \"id\": 3,\n            \"jobTitle\": \"Sales Manager\"\n        },\n        {\n            \"id\": 4,\n            \"jobTitle\": \"Senior Director of Sales\"\n        },\n        {\n            \"id\": 5,\n            \"jobTitle\": \"Customer Success Principal & Manager\"\n        },\n        {\n            \"id\": 6,\n            \"jobTitle\": \"Chief Executive Officer and Member\"\n        },\n        {\n            \"id\": 7,\n            \"jobTitle\": \"Senior Marketing Representative\"\n        },\n        {\n            \"id\": 8,\n            \"jobTitle\": \"Business Development Manager\"\n        },\n        {\n            \"id\": 9,\n            \"jobTitle\": \"Project Manager\"\n        },\n        {\n            \"id\": 10,\n            \"jobTitle\": \"Senior Director\"\n        }\n    ]\n}"}],"_postman_id":"4b8036ac-759c-443a-826c-4c6e504f7bb1"},{"name":"Create Persona","id":"3e242ff4-4ab6-4a46-a0c0-a61185ac14af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"persona\": \"manager\",\n    \"includeTitle\": [\n        \"Vice President\"\n    ],\n    \"excludeTitle\": [\n        \"Information Technology Services Manager\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/persona","description":"<p>Creates a new persona with included and excluded job titles.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li>persona: Persona name (required)</li>\n<li>includeTitle: Array of job titles to include</li>\n<li>excludeTitle: Array of job titles to exclude</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["persona"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"662a1d67-0846-4597-a915-9fa4f7b0f4f3","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"persona\": \"manager\",\n    \"includeTitle\": [\n        \"Vice President\"\n    ],\n    \"excludeTitle\": [\n        \"Information Technology Services Manager\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/persona"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 764,\n            \"persona\": \"manager\",\n            \"includeTitle\": [\n                \"Vice President\"\n            ],\n            \"excludeTitle\": [\n                \"Information Technology Services Manager\"\n            ],\n            \"createdDate\": \"2025-11-19T10:12:01Z\",\n            \"modifiedDate\": null,\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 24047\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"3e242ff4-4ab6-4a46-a0c0-a61185ac14af"},{"name":"Update Persona","id":"68625209-2b54-464e-baf9-bd04e544c9ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"persona\": \"vice president\",\n    \"includeTitle\": [\n        \"Vice President\"\n    ],\n    \"excludeTitle\": [\n        \"Information Technology Services Manager\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/persona/:id","description":"<p>Updates an existing persona with new information.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id: Persona ID (must be positive)</li>\n</ul>\n<p><strong>Request Body:</strong></p>\n<ul>\n<li>persona: Updated persona name</li>\n<li>includeTitle: Updated array of job titles to include</li>\n<li>excludeTitle: Updated array of job titles to exclude</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["persona",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"75b49937-e14d-42be-95dd-1ae6f837ecd5","description":{"content":"<p>Persona ID (must be positive)</p>\n","type":"text/plain"},"type":"any","value":"764","key":"id"}]}},"response":[{"id":"f2ad10c6-8897-4a00-a914-910dc9a8ce41","name":"Success Response","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"persona\": \"vice president\",\n    \"includeTitle\": [\n        \"Vice President\"\n    ],\n    \"excludeTitle\": [\n        \"Information Technology Services Manager\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/persona/764"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 764,\n            \"persona\": \"vice president\",\n            \"includeTitle\": [\n                \"Vice President\"\n            ],\n            \"excludeTitle\": [\n                \"Information Technology Services Manager\"\n            ],\n            \"createdDate\": \"2025-11-19T10:12:01Z\",\n            \"modifiedDate\": \"2025-11-19T10:12:40Z\",\n            \"associations\": {\n                \"createdBy\": {\n                    \"id\": 24047\n                },\n                \"modifiedBy\": {\n                    \"id\": 24047\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"68625209-2b54-464e-baf9-bd04e544c9ac"},{"name":"Delete Personas","id":"127931dd-0271-4f2f-9737-160908763ccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"https://{{koncert_dialers_api}}/persona/:id[]","description":"<p>Deletes one or multiple personas by their IDs.</p>\n<p><strong>Access:</strong> All authenticated users</p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li>id[]: Comma-separated list of Persona IDs</li>\n</ul>\n<p><strong>Note:</strong> This is a bulk delete operation supporting multiple IDs</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["persona",":id[]"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"1dd424c9-9fe1-4fe4-8c10-8157f4a4c7c1","description":{"content":"<p>Comma-separated list of Persona IDs</p>\n","type":"text/plain"},"type":"any","value":"764","key":"id[]"}]}},"response":[{"id":"2881e88e-88e4-45ee-9334-9debca8a1d8d","name":"Success Response - Single Delete","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/persona/764"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"},{"id":"5d948b47-688f-4524-8f11-e8627e2608aa","name":"Success Response - Bulk Delete","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/persona/764,765,766"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"127931dd-0271-4f2f-9737-160908763ccd"}],"id":"e28a84cc-49a8-4d88-8623-63a9605d3f1b","description":"<p>APIs for managing customer personas including job titles, creation, updates, and deletion.</p>\n","_postman_id":"e28a84cc-49a8-4d88-8623-63a9605d3f1b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Public","item":[{"name":"Timezone","id":"424556ae-dc32-4943-9d42-9281a7b56393","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/timezones","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["public","timezones"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"da1b6e04-b5b2-4acc-8398-4353d3bf0b09","name":"Timezone","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/timezones"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"Pacific/Samoa\": \"(GMT-11:00) Samoa Standard Time(Pacific/Samoa)\",\n            \"Pacific/Pago_Pago\": \"(GMT-11:00) Samoa Standard Time(Pacific/Pago_Pago)\",\n            \"Pacific/Midway\": \"(GMT-11:00) Samoa Standard Time(Pacific/Midway)\",\n            \"Pacific/Niue\": \"(GMT-11:00) Niue Time(Pacific/Niue)\",\n            \"Pacific/Tahiti\": \"(GMT-10:00) Tahiti Time(Pacific/Tahiti)\",\n            \"Pacific/Johnston\": \"(GMT-10:00) Hawaii-Aleutian Standard Time(Pacific/Johnston)\",\n            \"Pacific/Honolulu\": \"(GMT-10:00) Hawaii-Aleutian Standard Time(Pacific/Honolulu)\",\n            \"Pacific/Rarotonga\": \"(GMT-10:00) Cook Islands Standard Time(Pacific/Rarotonga)\",\n            \"Pacific/Marquesas\": \"(GMT-09:30) Marquesas Time(Pacific/Marquesas)\",\n            \"America/Atka\": \"(GMT-09:00) Hawaii-Aleutian Daylight Time(America/Atka)\",\n            \"America/Adak\": \"(GMT-09:00) Hawaii-Aleutian Daylight Time(America/Adak)\",\n            \"Pacific/Gambier\": \"(GMT-09:00) Gambier Time(Pacific/Gambier)\",\n            \"Pacific/Pitcairn\": \"(GMT-08:00) Pitcairn Time(Pacific/Pitcairn)\",\n            \"America/Yakutat\": \"(GMT-08:00) Alaska Daylight Time(America/Yakutat)\",\n            \"America/Sitka\": \"(GMT-08:00) Alaska Daylight Time(America/Sitka)\",\n            \"America/Nome\": \"(GMT-08:00) Alaska Daylight Time(America/Nome)\",\n            \"America/Metlakatla\": \"(GMT-08:00) Alaska Daylight Time(America/Metlakatla)\",\n            \"America/Juneau\": \"(GMT-08:00) Alaska Daylight Time(America/Juneau)\",\n            \"America/Anchorage\": \"(GMT-08:00) Alaska Daylight Time(America/Anchorage)\",\n            \"America/Whitehorse\": \"(GMT-07:00) Pacific Standard Time(America/Whitehorse)\",\n            \"America/Dawson\": \"(GMT-07:00) Pacific Standard Time(America/Dawson)\",\n            \"America/Vancouver\": \"(GMT-07:00) Pacific Daylight Time(America/Vancouver)\",\n            \"America/Tijuana\": \"(GMT-07:00) Pacific Daylight Time(America/Tijuana)\",\n            \"America/Los_Angeles\": \"(GMT-07:00) Pacific Daylight Time(America/Los_Angeles)\",\n            \"America/Ensenada\": \"(GMT-07:00) Pacific Daylight Time(America/Ensenada)\",\n            \"America/Santa_Isabel\": \"(GMT-07:00) Northwest Mexico Daylight Time(America/Santa_Isabel)\",\n            \"America/Phoenix\": \"(GMT-07:00) Mountain Standard Time(America/Phoenix)\",\n            \"America/Fort_Nelson\": \"(GMT-07:00) Mountain Standard Time(America/Fort_Nelson)\",\n            \"America/Dawson_Creek\": \"(GMT-07:00) Mountain Standard Time(America/Dawson_Creek)\",\n            \"America/Creston\": \"(GMT-07:00) Mountain Standard Time(America/Creston)\",\n            \"America/Hermosillo\": \"(GMT-07:00) Mexican Pacific Standard Time(America/Hermosillo)\",\n            \"America/Yellowknife\": \"(GMT-06:00) Mountain Daylight Time(America/Yellowknife)\",\n            \"America/Shiprock\": \"(GMT-06:00) Mountain Daylight Time(America/Shiprock)\",\n            \"America/Ojinaga\": \"(GMT-06:00) Mountain Daylight Time(America/Ojinaga)\",\n            \"America/Inuvik\": \"(GMT-06:00) Mountain Daylight Time(America/Inuvik)\",\n            \"America/Edmonton\": \"(GMT-06:00) Mountain Daylight Time(America/Edmonton)\",\n            \"America/Denver\": \"(GMT-06:00) Mountain Daylight Time(America/Denver)\",\n            \"America/Cambridge_Bay\": \"(GMT-06:00) Mountain Daylight Time(America/Cambridge_Bay)\",\n            \"America/Boise\": \"(GMT-06:00) Mountain Daylight Time(America/Boise)\",\n            \"America/Mazatlan\": \"(GMT-06:00) Mexican Pacific Daylight Time(America/Mazatlan)\",\n            \"America/Chihuahua\": \"(GMT-06:00) Mexican Pacific Daylight Time(America/Chihuahua)\",\n            \"Pacific/Galapagos\": \"(GMT-06:00) Galapagos Time(Pacific/Galapagos)\",\n            \"America/Tegucigalpa\": \"(GMT-06:00) Central Standard Time(America/Tegucigalpa)\",\n            \"America/Swift_Current\": \"(GMT-06:00) Central Standard Time(America/Swift_Current)\",\n            \"America/Regina\": \"(GMT-06:00) Central Standard Time(America/Regina)\",\n            \"America/Managua\": \"(GMT-06:00) Central Standard Time(America/Managua)\",\n            \"America/Guatemala\": \"(GMT-06:00) Central Standard Time(America/Guatemala)\",\n            \"America/El_Salvador\": \"(GMT-06:00) Central Standard Time(America/El_Salvador)\",\n            \"America/Costa_Rica\": \"(GMT-06:00) Central Standard Time(America/Costa_Rica)\",\n            \"America/Belize\": \"(GMT-06:00) Central Standard Time(America/Belize)\",\n            \"America/Lima\": \"(GMT-05:00) Peru Standard Time(America/Lima)\",\n            \"America/Guayaquil\": \"(GMT-05:00) Ecuador Time(America/Guayaquil)\",\n            \"America/Panama\": \"(GMT-05:00) Eastern Standard Time(America/Panama)\",\n            \"America/Jamaica\": \"(GMT-05:00) Eastern Standard Time(America/Jamaica)\",\n            \"America/Coral_Harbour\": \"(GMT-05:00) Eastern Standard Time(America/Coral_Harbour)\",\n            \"America/Cayman\": \"(GMT-05:00) Eastern Standard Time(America/Cayman)\",\n            \"America/Cancun\": \"(GMT-05:00) Eastern Standard Time(America/Cancun)\",\n            \"America/Atikokan\": \"(GMT-05:00) Eastern Standard Time(America/Atikokan)\",\n            \"Pacific/Easter\": \"(GMT-05:00) Easter Island Daylight Time(Pacific/Easter)\",\n            \"America/Bogota\": \"(GMT-05:00) Colombia Standard Time(America/Bogota)\",\n            \"America/Winnipeg\": \"(GMT-05:00) Central Daylight Time(America/Winnipeg)\",\n            \"America/Resolute\": \"(GMT-05:00) Central Daylight Time(America/Resolute)\",\n            \"America/Rankin_Inlet\": \"(GMT-05:00) Central Daylight Time(America/Rankin_Inlet)\",\n            \"America/Rainy_River\": \"(GMT-05:00) Central Daylight Time(America/Rainy_River)\",\n            \"America/North_Dakota/New_Salem\": \"(GMT-05:00) Central Daylight Time(America/North_Dakota/New_Salem)\",\n            \"America/North_Dakota/Center\": \"(GMT-05:00) Central Daylight Time(America/North_Dakota/Center)\",\n            \"America/North_Dakota/Beulah\": \"(GMT-05:00) Central Daylight Time(America/North_Dakota/Beulah)\",\n            \"America/Monterrey\": \"(GMT-05:00) Central Daylight Time(America/Monterrey)\",\n            \"America/Mexico_City\": \"(GMT-05:00) Central Daylight Time(America/Mexico_City)\",\n            \"America/Merida\": \"(GMT-05:00) Central Daylight Time(America/Merida)\",\n            \"America/Menominee\": \"(GMT-05:00) Central Daylight Time(America/Menominee)\",\n            \"America/Matamoros\": \"(GMT-05:00) Central Daylight Time(America/Matamoros)\",\n            \"America/Knox_IN\": \"(GMT-05:00) Central Daylight Time(America/Knox_IN)\",\n            \"America/Indiana/Tell_City\": \"(GMT-05:00) Central Daylight Time(America/Indiana/Tell_City)\",\n            \"America/Indiana/Knox\": \"(GMT-05:00) Central Daylight Time(America/Indiana/Knox)\",\n            \"America/Chicago\": \"(GMT-05:00) Central Daylight Time(America/Chicago)\",\n            \"America/Bahia_Banderas\": \"(GMT-05:00) Central Daylight Time(America/Bahia_Banderas)\",\n            \"America/Rio_Branco\": \"(GMT-05:00) Acre Standard Time(America/Rio_Branco)\",\n            \"America/Porto_Acre\": \"(GMT-05:00) Acre Standard Time(America/Porto_Acre)\",\n            \"America/Eirunepe\": \"(GMT-05:00) Acre Standard Time(America/Eirunepe)\",\n            \"America/Caracas\": \"(GMT-04:00) Venezuela Time(America/Caracas)\",\n            \"America/Guyana\": \"(GMT-04:00) Guyana Time(America/Guyana)\",\n            \"America/Toronto\": \"(GMT-04:00) Eastern Daylight Time(America/Toronto)\",\n            \"America/Thunder_Bay\": \"(GMT-04:00) Eastern Daylight Time(America/Thunder_Bay)\",\n            \"America/Port-au-Prince\": \"(GMT-04:00) Eastern Daylight Time(America/Port-au-Prince)\",\n            \"America/Pangnirtung\": \"(GMT-04:00) Eastern Daylight Time(America/Pangnirtung)\",\n            \"America/Nipigon\": \"(GMT-04:00) Eastern Daylight Time(America/Nipigon)\",\n            \"America/New_York\": \"(GMT-04:00) Eastern Daylight Time(America/New_York)\",\n            \"America/Nassau\": \"(GMT-04:00) Eastern Daylight Time(America/Nassau)\",\n            \"America/Montreal\": \"(GMT-04:00) Eastern Daylight Time(America/Montreal)\",\n            \"America/Louisville\": \"(GMT-04:00) Eastern Daylight Time(America/Louisville)\",\n            \"America/Kentucky/Monticello\": \"(GMT-04:00) Eastern Daylight Time(America/Kentucky/Monticello)\",\n            \"America/Kentucky/Louisville\": \"(GMT-04:00) Eastern Daylight Time(America/Kentucky/Louisville)\",\n            \"America/Iqaluit\": \"(GMT-04:00) Eastern Daylight Time(America/Iqaluit)\",\n            \"America/Indianapolis\": \"(GMT-04:00) Eastern Daylight Time(America/Indianapolis)\",\n            \"America/Indiana/Winamac\": \"(GMT-04:00) Eastern Daylight Time(America/Indiana/Winamac)\",\n            \"America/Indiana/Vincennes\": \"(GMT-04:00) Eastern Daylight Time(America/Indiana/Vincennes)\",\n            \"America/Indiana/Vevay\": \"(GMT-04:00) Eastern Daylight Time(America/Indiana/Vevay)\",\n            \"America/Indiana/Petersburg\": \"(GMT-04:00) Eastern Daylight Time(America/Indiana/Petersburg)\",\n            \"America/Indiana/Marengo\": \"(GMT-04:00) Eastern Daylight Time(America/Indiana/Marengo)\",\n            \"America/Indiana/Indianapolis\": \"(GMT-04:00) Eastern Daylight Time(America/Indiana/Indianapolis)\",\n            \"America/Grand_Turk\": \"(GMT-04:00) Eastern Daylight Time(America/Grand_Turk)\",\n            \"America/Fort_Wayne\": \"(GMT-04:00) Eastern Daylight Time(America/Fort_Wayne)\",\n            \"America/Detroit\": \"(GMT-04:00) Eastern Daylight Time(America/Detroit)\",\n            \"America/Havana\": \"(GMT-04:00) Cuba Daylight Time(America/Havana)\",\n            \"America/La_Paz\": \"(GMT-04:00) Bolivia Time(America/La_Paz)\",\n            \"America/Virgin\": \"(GMT-04:00) Atlantic Standard Time(America/Virgin)\",\n            \"America/Tortola\": \"(GMT-04:00) Atlantic Standard Time(America/Tortola)\",\n            \"America/St_Vincent\": \"(GMT-04:00) Atlantic Standard Time(America/St_Vincent)\",\n            \"America/St_Thomas\": \"(GMT-04:00) Atlantic Standard Time(America/St_Thomas)\",\n            \"America/St_Lucia\": \"(GMT-04:00) Atlantic Standard Time(America/St_Lucia)\",\n            \"America/St_Kitts\": \"(GMT-04:00) Atlantic Standard Time(America/St_Kitts)\",\n            \"America/St_Barthelemy\": \"(GMT-04:00) Atlantic Standard Time(America/St_Barthelemy)\",\n            \"America/Santo_Domingo\": \"(GMT-04:00) Atlantic Standard Time(America/Santo_Domingo)\",\n            \"America/Puerto_Rico\": \"(GMT-04:00) Atlantic Standard Time(America/Puerto_Rico)\",\n            \"America/Port_of_Spain\": \"(GMT-04:00) Atlantic Standard Time(America/Port_of_Spain)\",\n            \"America/Montserrat\": \"(GMT-04:00) Atlantic Standard Time(America/Montserrat)\",\n            \"America/Martinique\": \"(GMT-04:00) Atlantic Standard Time(America/Martinique)\",\n            \"America/Marigot\": \"(GMT-04:00) Atlantic Standard Time(America/Marigot)\",\n            \"America/Lower_Princes\": \"(GMT-04:00) Atlantic Standard Time(America/Lower_Princes)\",\n            \"America/Kralendijk\": \"(GMT-04:00) Atlantic Standard Time(America/Kralendijk)\",\n            \"America/Guadeloupe\": \"(GMT-04:00) Atlantic Standard Time(America/Guadeloupe)\",\n            \"America/Grenada\": \"(GMT-04:00) Atlantic Standard Time(America/Grenada)\",\n            \"America/Dominica\": \"(GMT-04:00) Atlantic Standard Time(America/Dominica)\",\n            \"America/Curacao\": \"(GMT-04:00) Atlantic Standard Time(America/Curacao)\",\n            \"America/Blanc-Sablon\": \"(GMT-04:00) Atlantic Standard Time(America/Blanc-Sablon)\",\n            \"America/Barbados\": \"(GMT-04:00) Atlantic Standard Time(America/Barbados)\",\n            \"America/Aruba\": \"(GMT-04:00) Atlantic Standard Time(America/Aruba)\",\n            \"America/Antigua\": \"(GMT-04:00) Atlantic Standard Time(America/Antigua)\",\n            \"America/Anguilla\": \"(GMT-04:00) Atlantic Standard Time(America/Anguilla)\",\n            \"America/Porto_Velho\": \"(GMT-04:00) Amazon Standard Time(America/Porto_Velho)\",\n            \"America/Manaus\": \"(GMT-04:00) Amazon Standard Time(America/Manaus)\",\n            \"America/Cuiaba\": \"(GMT-04:00) Amazon Standard Time(America/Cuiaba)\",\n            \"America/Campo_Grande\": \"(GMT-04:00) Amazon Standard Time(America/Campo_Grande)\",\n            \"America/Boa_Vista\": \"(GMT-04:00) Amazon Standard Time(America/Boa_Vista)\",\n            \"America/Argentina/San_Luis\": \"(GMT-03:00) Western Argentina Standard Time(America/Argentina/San_Luis)\",\n            \"America/Montevideo\": \"(GMT-03:00) Uruguay Standard Time(America/Montevideo)\",\n            \"America/Paramaribo\": \"(GMT-03:00) Suriname Time(America/Paramaribo)\",\n            \"America/Punta_Arenas\": \"(GMT-03:00) Punta Arenas Standard Time(America/Punta_Arenas)\",\n            \"America/Asuncion\": \"(GMT-03:00) Paraguay Daylight Time(America/Asuncion)\",\n            \"America/Cayenne\": \"(GMT-03:00) French Guiana Time(America/Cayenne)\",\n            \"Atlantic/Stanley\": \"(GMT-03:00) Falkland Islands Standard Time(Atlantic/Stanley)\",\n            \"America/Santiago\": \"(GMT-03:00) Chile Daylight Time(America/Santiago)\",\n            \"America/Sao_Paulo\": \"(GMT-03:00) Brasilia Standard Time(America/Sao_Paulo)\",\n            \"America/Santarem\": \"(GMT-03:00) Brasilia Standard Time(America/Santarem)\",\n            \"America/Recife\": \"(GMT-03:00) Brasilia Standard Time(America/Recife)\",\n            \"America/Maceio\": \"(GMT-03:00) Brasilia Standard Time(America/Maceio)\",\n            \"America/Fortaleza\": \"(GMT-03:00) Brasilia Standard Time(America/Fortaleza)\",\n            \"America/Belem\": \"(GMT-03:00) Brasilia Standard Time(America/Belem)\",\n            \"America/Bahia\": \"(GMT-03:00) Brasilia Standard Time(America/Bahia)\",\n            \"America/Araguaina\": \"(GMT-03:00) Brasilia Standard Time(America/Araguaina)\",\n            \"Atlantic/Bermuda\": \"(GMT-03:00) Atlantic Daylight Time(Atlantic/Bermuda)\",\n            \"America/Thule\": \"(GMT-03:00) Atlantic Daylight Time(America/Thule)\",\n            \"America/Moncton\": \"(GMT-03:00) Atlantic Daylight Time(America/Moncton)\",\n            \"America/Halifax\": \"(GMT-03:00) Atlantic Daylight Time(America/Halifax)\",\n            \"America/Goose_Bay\": \"(GMT-03:00) Atlantic Daylight Time(America/Goose_Bay)\",\n            \"America/Glace_Bay\": \"(GMT-03:00) Atlantic Daylight Time(America/Glace_Bay)\",\n            \"America/Rosario\": \"(GMT-03:00) Argentina Standard Time(America/Rosario)\",\n            \"America/Mendoza\": \"(GMT-03:00) Argentina Standard Time(America/Mendoza)\",\n            \"America/Jujuy\": \"(GMT-03:00) Argentina Standard Time(America/Jujuy)\",\n            \"America/Cordoba\": \"(GMT-03:00) Argentina Standard Time(America/Cordoba)\",\n            \"America/Catamarca\": \"(GMT-03:00) Argentina Standard Time(America/Catamarca)\",\n            \"America/Buenos_Aires\": \"(GMT-03:00) Argentina Standard Time(America/Buenos_Aires)\",\n            \"America/Argentina/Ushuaia\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Ushuaia)\",\n            \"America/Argentina/Tucuman\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Tucuman)\",\n            \"America/Argentina/San_Juan\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/San_Juan)\",\n            \"America/Argentina/Salta\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Salta)\",\n            \"America/Argentina/Rio_Gallegos\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Rio_Gallegos)\",\n            \"America/Argentina/Mendoza\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Mendoza)\",\n            \"America/Argentina/La_Rioja\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/La_Rioja)\",\n            \"America/Argentina/Jujuy\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Jujuy)\",\n            \"America/Argentina/Cordoba\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Cordoba)\",\n            \"America/Argentina/ComodRivadavia\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/ComodRivadavia)\",\n            \"America/Argentina/Catamarca\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Catamarca)\",\n            \"America/Argentina/Buenos_Aires\": \"(GMT-03:00) Argentina Standard Time(America/Argentina/Buenos_Aires)\",\n            \"America/St_Johns\": \"(GMT-02:30) Newfoundland Daylight Time(America/St_Johns)\",\n            \"America/Nuuk\": \"(GMT-02:00) Western Greenland Time(America/Nuuk)\",\n            \"America/Godthab\": \"(GMT-02:00) West Greenland Daylight Time(America/Godthab)\",\n            \"America/Miquelon\": \"(GMT-02:00) St. Pierre & Miquelon Daylight Time(America/Miquelon)\",\n            \"Atlantic/South_Georgia\": \"(GMT-02:00) South Georgia Time(Atlantic/South_Georgia)\",\n            \"America/Noronha\": \"(GMT-02:00) Fernando de Noronha Standard Time(America/Noronha)\",\n            \"Atlantic/Cape_Verde\": \"(GMT-01:00) Cape Verde Standard Time(Atlantic/Cape_Verde)\",\n            \"Atlantic/Azores\": \"(GMT+00:00) Azores Daylight Time(Atlantic/Azores)\",\n            \"America/Scoresbysund\": \"(GMT+00:00) East Greenland Daylight Time(America/Scoresbysund)\",\n            \"Africa/Abidjan\": \"(GMT+00:00) Greenwich Mean Time(Africa/Abidjan)\",\n            \"Africa/Accra\": \"(GMT+00:00) Greenwich Mean Time(Africa/Accra)\",\n            \"Africa/Bamako\": \"(GMT+00:00) Greenwich Mean Time(Africa/Bamako)\",\n            \"Africa/Banjul\": \"(GMT+00:00) Greenwich Mean Time(Africa/Banjul)\",\n            \"Africa/Bissau\": \"(GMT+00:00) Greenwich Mean Time(Africa/Bissau)\",\n            \"Africa/Conakry\": \"(GMT+00:00) Greenwich Mean Time(Africa/Conakry)\",\n            \"Africa/Dakar\": \"(GMT+00:00) Greenwich Mean Time(Africa/Dakar)\",\n            \"Africa/Freetown\": \"(GMT+00:00) Greenwich Mean Time(Africa/Freetown)\",\n            \"Africa/Lome\": \"(GMT+00:00) Greenwich Mean Time(Africa/Lome)\",\n            \"Africa/Monrovia\": \"(GMT+00:00) Greenwich Mean Time(Africa/Monrovia)\",\n            \"Africa/Nouakchott\": \"(GMT+00:00) Greenwich Mean Time(Africa/Nouakchott)\",\n            \"Africa/Ouagadougou\": \"(GMT+00:00) Greenwich Mean Time(Africa/Ouagadougou)\",\n            \"Africa/Timbuktu\": \"(GMT+00:00) Greenwich Mean Time(Africa/Timbuktu)\",\n            \"America/Danmarkshavn\": \"(GMT+00:00) Greenwich Mean Time(America/Danmarkshavn)\",\n            \"Atlantic/Reykjavik\": \"(GMT+00:00) Greenwich Mean Time(Atlantic/Reykjavik)\",\n            \"Atlantic/St_Helena\": \"(GMT+00:00) Greenwich Mean Time(Atlantic/St_Helena)\",\n            \"Africa/Sao_Tome\": \"(GMT+00:00) West Africa Standard Time(Africa/Sao_Tome)\",\n            \"Africa/Casablanca\": \"(GMT+00:00) Western European Standard Time(Africa/Casablanca)\",\n            \"Africa/El_Aaiun\": \"(GMT+00:00) Western European Standard Time(Africa/El_Aaiun)\",\n            \"Africa/Windhoek\": \"(GMT+01:00) Central Africa Time(Africa/Windhoek)\",\n            \"Africa/Algiers\": \"(GMT+01:00) Central European Standard Time(Africa/Algiers)\",\n            \"Africa/Tunis\": \"(GMT+01:00) Central European Standard Time(Africa/Tunis)\",\n            \"Europe/Belfast\": \"(GMT+01:00) Greenwich Mean Time(Europe/Belfast)\",\n            \"Europe/Dublin\": \"(GMT+01:00) Greenwich Mean Time(Europe/Dublin)\",\n            \"Europe/Guernsey\": \"(GMT+01:00) Greenwich Mean Time(Europe/Guernsey)\",\n            \"Europe/Isle_of_Man\": \"(GMT+01:00) Greenwich Mean Time(Europe/Isle_of_Man)\",\n            \"Europe/Jersey\": \"(GMT+01:00) Greenwich Mean Time(Europe/Jersey)\",\n            \"Europe/London\": \"(GMT+01:00) Greenwich Mean Time(Europe/London)\",\n            \"Africa/Bangui\": \"(GMT+01:00) West Africa Standard Time(Africa/Bangui)\",\n            \"Africa/Brazzaville\": \"(GMT+01:00) West Africa Standard Time(Africa/Brazzaville)\",\n            \"Africa/Douala\": \"(GMT+01:00) West Africa Standard Time(Africa/Douala)\",\n            \"Africa/Kinshasa\": \"(GMT+01:00) West Africa Standard Time(Africa/Kinshasa)\",\n            \"Africa/Lagos\": \"(GMT+01:00) West Africa Standard Time(Africa/Lagos)\",\n            \"Africa/Libreville\": \"(GMT+01:00) West Africa Standard Time(Africa/Libreville)\",\n            \"Africa/Luanda\": \"(GMT+01:00) West Africa Standard Time(Africa/Luanda)\",\n            \"Africa/Malabo\": \"(GMT+01:00) West Africa Standard Time(Africa/Malabo)\",\n            \"Africa/Ndjamena\": \"(GMT+01:00) West Africa Standard Time(Africa/Ndjamena)\",\n            \"Africa/Niamey\": \"(GMT+01:00) West Africa Standard Time(Africa/Niamey)\",\n            \"Africa/Porto-Novo\": \"(GMT+01:00) West Africa Standard Time(Africa/Porto-Novo)\",\n            \"Atlantic/Canary\": \"(GMT+01:00) Western European Daylight Time(Atlantic/Canary)\",\n            \"Atlantic/Faeroe\": \"(GMT+01:00) Western European Daylight Time(Atlantic/Faeroe)\",\n            \"Atlantic/Faroe\": \"(GMT+01:00) Western European Daylight Time(Atlantic/Faroe)\",\n            \"Atlantic/Madeira\": \"(GMT+01:00) Western European Daylight Time(Atlantic/Madeira)\",\n            \"Europe/Lisbon\": \"(GMT+01:00) Western European Daylight Time(Europe/Lisbon)\",\n            \"Africa/Blantyre\": \"(GMT+02:00) Central Africa Time(Africa/Blantyre)\",\n            \"Africa/Bujumbura\": \"(GMT+02:00) Central Africa Time(Africa/Bujumbura)\",\n            \"Africa/Gaborone\": \"(GMT+02:00) Central Africa Time(Africa/Gaborone)\",\n            \"Africa/Harare\": \"(GMT+02:00) Central Africa Time(Africa/Harare)\",\n            \"Africa/Khartoum\": \"(GMT+02:00) Central Africa Time(Africa/Khartoum)\",\n            \"Africa/Kigali\": \"(GMT+02:00) Central Africa Time(Africa/Kigali)\",\n            \"Africa/Lubumbashi\": \"(GMT+02:00) Central Africa Time(Africa/Lubumbashi)\",\n            \"Africa/Lusaka\": \"(GMT+02:00) Central Africa Time(Africa/Lusaka)\",\n            \"Africa/Maputo\": \"(GMT+02:00) Central Africa Time(Africa/Maputo)\",\n            \"Africa/Ceuta\": \"(GMT+02:00) Central European Daylight Time(Africa/Ceuta)\",\n            \"Atlantic/Jan_Mayen\": \"(GMT+02:00) Central European Daylight Time(Atlantic/Jan_Mayen)\",\n            \"Europe/Amsterdam\": \"(GMT+02:00) Central European Daylight Time(Europe/Amsterdam)\",\n            \"Europe/Andorra\": \"(GMT+02:00) Central European Daylight Time(Europe/Andorra)\",\n            \"Europe/Belgrade\": \"(GMT+02:00) Central European Daylight Time(Europe/Belgrade)\",\n            \"Europe/Berlin\": \"(GMT+02:00) Central European Daylight Time(Europe/Berlin)\",\n            \"Europe/Bratislava\": \"(GMT+02:00) Central European Daylight Time(Europe/Bratislava)\",\n            \"Europe/Brussels\": \"(GMT+02:00) Central European Daylight Time(Europe/Brussels)\",\n            \"Europe/Budapest\": \"(GMT+02:00) Central European Daylight Time(Europe/Budapest)\",\n            \"Europe/Busingen\": \"(GMT+02:00) Central European Daylight Time(Europe/Busingen)\",\n            \"Europe/Copenhagen\": \"(GMT+02:00) Central European Daylight Time(Europe/Copenhagen)\",\n            \"Europe/Gibraltar\": \"(GMT+02:00) Central European Daylight Time(Europe/Gibraltar)\",\n            \"Europe/Ljubljana\": \"(GMT+02:00) Central European Daylight Time(Europe/Ljubljana)\",\n            \"Europe/Luxembourg\": \"(GMT+02:00) Central European Daylight Time(Europe/Luxembourg)\",\n            \"Europe/Madrid\": \"(GMT+02:00) Central European Daylight Time(Europe/Madrid)\",\n            \"Europe/Malta\": \"(GMT+02:00) Central European Daylight Time(Europe/Malta)\",\n            \"Europe/Monaco\": \"(GMT+02:00) Central European Daylight Time(Europe/Monaco)\",\n            \"Europe/Oslo\": \"(GMT+02:00) Central European Daylight Time(Europe/Oslo)\",\n            \"Europe/Paris\": \"(GMT+02:00) Central European Daylight Time(Europe/Paris)\",\n            \"Europe/Podgorica\": \"(GMT+02:00) Central European Daylight Time(Europe/Podgorica)\",\n            \"Europe/Prague\": \"(GMT+02:00) Central European Daylight Time(Europe/Prague)\",\n            \"Europe/Rome\": \"(GMT+02:00) Central European Daylight Time(Europe/Rome)\",\n            \"Europe/San_Marino\": \"(GMT+02:00) Central European Daylight Time(Europe/San_Marino)\",\n            \"Europe/Sarajevo\": \"(GMT+02:00) Central European Daylight Time(Europe/Sarajevo)\",\n            \"Europe/Skopje\": \"(GMT+02:00) Central European Daylight Time(Europe/Skopje)\",\n            \"Europe/Stockholm\": \"(GMT+02:00) Central European Daylight Time(Europe/Stockholm)\",\n            \"Europe/Tirane\": \"(GMT+02:00) Central European Daylight Time(Europe/Tirane)\",\n            \"Europe/Vaduz\": \"(GMT+02:00) Central European Daylight Time(Europe/Vaduz)\",\n            \"Europe/Vatican\": \"(GMT+02:00) Central European Daylight Time(Europe/Vatican)\",\n            \"Europe/Vienna\": \"(GMT+02:00) Central European Daylight Time(Europe/Vienna)\",\n            \"Europe/Warsaw\": \"(GMT+02:00) Central European Daylight Time(Europe/Warsaw)\",\n            \"Europe/Zagreb\": \"(GMT+02:00) Central European Daylight Time(Europe/Zagreb)\",\n            \"Europe/Zurich\": \"(GMT+02:00) Central European Daylight Time(Europe/Zurich)\",\n            \"Africa/Juba\": \"(GMT+02:00) East Africa Time(Africa/Juba)\",\n            \"Africa/Cairo\": \"(GMT+02:00) Eastern European Standard Time(Africa/Cairo)\",\n            \"Africa/Tripoli\": \"(GMT+02:00) Eastern European Standard Time(Africa/Tripoli)\",\n            \"Europe/Kaliningrad\": \"(GMT+02:00) Eastern European Standard Time(Europe/Kaliningrad)\",\n            \"Africa/Johannesburg\": \"(GMT+02:00) South Africa Standard Time(Africa/Johannesburg)\",\n            \"Africa/Maseru\": \"(GMT+02:00) South Africa Standard Time(Africa/Maseru)\",\n            \"Africa/Mbabane\": \"(GMT+02:00) South Africa Standard Time(Africa/Mbabane)\",\n            \"Asia/Aden\": \"(GMT+03:00) Arabian Standard Time(Asia/Aden)\",\n            \"Asia/Baghdad\": \"(GMT+03:00) Arabian Standard Time(Asia/Baghdad)\",\n            \"Asia/Bahrain\": \"(GMT+03:00) Arabian Standard Time(Asia/Bahrain)\",\n            \"Asia/Kuwait\": \"(GMT+03:00) Arabian Standard Time(Asia/Kuwait)\",\n            \"Asia/Qatar\": \"(GMT+03:00) Arabian Standard Time(Asia/Qatar)\",\n            \"Asia/Riyadh\": \"(GMT+03:00) Arabian Standard Time(Asia/Riyadh)\",\n            \"Africa/Addis_Ababa\": \"(GMT+03:00) East Africa Time(Africa/Addis_Ababa)\",\n            \"Africa/Asmara\": \"(GMT+03:00) East Africa Time(Africa/Asmara)\",\n            \"Africa/Asmera\": \"(GMT+03:00) East Africa Time(Africa/Asmera)\",\n            \"Africa/Dar_es_Salaam\": \"(GMT+03:00) East Africa Time(Africa/Dar_es_Salaam)\",\n            \"Africa/Djibouti\": \"(GMT+03:00) East Africa Time(Africa/Djibouti)\",\n            \"Africa/Kampala\": \"(GMT+03:00) East Africa Time(Africa/Kampala)\",\n            \"Africa/Mogadishu\": \"(GMT+03:00) East Africa Time(Africa/Mogadishu)\",\n            \"Africa/Nairobi\": \"(GMT+03:00) East Africa Time(Africa/Nairobi)\",\n            \"Indian/Antananarivo\": \"(GMT+03:00) East Africa Time(Indian/Antananarivo)\",\n            \"Indian/Comoro\": \"(GMT+03:00) East Africa Time(Indian/Comoro)\",\n            \"Indian/Mayotte\": \"(GMT+03:00) East Africa Time(Indian/Mayotte)\",\n            \"Asia/Amman\": \"(GMT+03:00) Eastern European Daylight Time(Asia/Amman)\",\n            \"Asia/Beirut\": \"(GMT+03:00) Eastern European Daylight Time(Asia/Beirut)\",\n            \"Asia/Damascus\": \"(GMT+03:00) Eastern European Daylight Time(Asia/Damascus)\",\n            \"Asia/Gaza\": \"(GMT+03:00) Eastern European Daylight Time(Asia/Gaza)\",\n            \"Asia/Hebron\": \"(GMT+03:00) Eastern European Daylight Time(Asia/Hebron)\",\n            \"Asia/Nicosia\": \"(GMT+03:00) Eastern European Daylight Time(Asia/Nicosia)\",\n            \"Europe/Athens\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Athens)\",\n            \"Europe/Bucharest\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Bucharest)\",\n            \"Europe/Chisinau\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Chisinau)\",\n            \"Europe/Helsinki\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Helsinki)\",\n            \"Europe/Kiev\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Kiev)\",\n            \"Europe/Mariehamn\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Mariehamn)\",\n            \"Europe/Nicosia\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Nicosia)\",\n            \"Europe/Riga\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Riga)\",\n            \"Europe/Sofia\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Sofia)\",\n            \"Europe/Tallinn\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Tallinn)\",\n            \"Europe/Tiraspol\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Tiraspol)\",\n            \"Europe/Uzhgorod\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Uzhgorod)\",\n            \"Europe/Vilnius\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Vilnius)\",\n            \"Europe/Zaporozhye\": \"(GMT+03:00) Eastern European Daylight Time(Europe/Zaporozhye)\",\n            \"Asia/Famagusta\": \"(GMT+03:00) Eastern European Time(Asia/Famagusta)\",\n            \"Asia/Jerusalem\": \"(GMT+03:00) Israel Daylight Time(Asia/Jerusalem)\",\n            \"Asia/Tel_Aviv\": \"(GMT+03:00) Israel Daylight Time(Asia/Tel_Aviv)\",\n            \"Europe/Kirov\": \"(GMT+03:00) Kirov Standard Time(Europe/Kirov)\",\n            \"Europe/Minsk\": \"(GMT+03:00) Moscow Standard Time(Europe/Minsk)\",\n            \"Europe/Moscow\": \"(GMT+03:00) Moscow Standard Time(Europe/Moscow)\",\n            \"Europe/Simferopol\": \"(GMT+03:00) Moscow Standard Time(Europe/Simferopol)\",\n            \"Europe/Volgograd\": \"(GMT+03:00) Moscow Standard Time(Europe/Volgograd)\",\n            \"Asia/Istanbul\": \"(GMT+03:00) Turkey Time(Asia/Istanbul)\",\n            \"Europe/Istanbul\": \"(GMT+03:00) Turkey Time(Europe/Istanbul)\",\n            \"Asia/Yerevan\": \"(GMT+04:00) Armenia Standard Time(Asia/Yerevan)\",\n            \"Europe/Astrakhan\": \"(GMT+04:00) Astrakhan Standard Time(Europe/Astrakhan)\",\n            \"Asia/Baku\": \"(GMT+04:00) Azerbaijan Standard Time(Asia/Baku)\",\n            \"Asia/Tbilisi\": \"(GMT+04:00) Georgia Standard Time(Asia/Tbilisi)\",\n            \"Asia/Dubai\": \"(GMT+04:00) Gulf Standard Time(Asia/Dubai)\",\n            \"Asia/Muscat\": \"(GMT+04:00) Gulf Standard Time(Asia/Muscat)\",\n            \"Indian/Mauritius\": \"(GMT+04:00) Mauritius Standard Time(Indian/Mauritius)\",\n            \"Indian/Reunion\": \"(GMT+04:00) Réunion Time(Indian/Reunion)\",\n            \"Europe/Samara\": \"(GMT+04:00) Samara Standard Time(Europe/Samara)\",\n            \"Europe/Saratov\": \"(GMT+04:00) Saratov Standard Time(Europe/Saratov)\",\n            \"Indian/Mahe\": \"(GMT+04:00) Seychelles Time(Indian/Mahe)\",\n            \"Europe/Ulyanovsk\": \"(GMT+04:00) Ulyanovsk Standard Time(Europe/Ulyanovsk)\",\n            \"Asia/Kabul\": \"(GMT+04:30) Afghanistan Time(Asia/Kabul)\",\n            \"Asia/Tehran\": \"(GMT+04:30) Iran Daylight Time(Asia/Tehran)\",\n            \"Asia/Qyzylorda\": \"(GMT+05:00) East Kazakhstan Time(Asia/Qyzylorda)\",\n            \"Indian/Kerguelen\": \"(GMT+05:00) French Southern & Antarctic Time(Indian/Kerguelen)\",\n            \"Indian/Maldives\": \"(GMT+05:00) Maldives Time(Indian/Maldives)\",\n            \"Asia/Karachi\": \"(GMT+05:00) Pakistan Standard Time(Asia/Karachi)\",\n            \"Asia/Dushanbe\": \"(GMT+05:00) Tajikistan Time(Asia/Dushanbe)\",\n            \"Asia/Ashgabat\": \"(GMT+05:00) Turkmenistan Standard Time(Asia/Ashgabat)\",\n            \"Asia/Ashkhabad\": \"(GMT+05:00) Turkmenistan Standard Time(Asia/Ashkhabad)\",\n            \"Asia/Samarkand\": \"(GMT+05:00) Uzbekistan Standard Time(Asia/Samarkand)\",\n            \"Asia/Tashkent\": \"(GMT+05:00) Uzbekistan Standard Time(Asia/Tashkent)\",\n            \"Asia/Aqtau\": \"(GMT+05:00) West Kazakhstan Time(Asia/Aqtau)\",\n            \"Asia/Aqtobe\": \"(GMT+05:00) West Kazakhstan Time(Asia/Aqtobe)\",\n            \"Asia/Atyrau\": \"(GMT+05:00) West Kazakhstan Time(Asia/Atyrau)\",\n            \"Asia/Oral\": \"(GMT+05:00) West Kazakhstan Time(Asia/Oral)\",\n            \"Asia/Yekaterinburg\": \"(GMT+05:00) Yekaterinburg Standard Time(Asia/Yekaterinburg)\",\n            \"Asia/Calcutta\": \"(GMT+05:30) India Standard Time(Asia/Calcutta)\",\n            \"Asia/Colombo\": \"(GMT+05:30) India Standard Time(Asia/Colombo)\",\n            \"Asia/Kolkata\": \"(GMT+05:30) India Standard Time(Asia/Kolkata)\",\n            \"Asia/Kathmandu\": \"(GMT+05:45) Nepal Time(Asia/Kathmandu)\",\n            \"Asia/Katmandu\": \"(GMT+05:45) Nepal Time(Asia/Katmandu)\",\n            \"Asia/Dacca\": \"(GMT+06:00) Bangladesh Standard Time(Asia/Dacca)\",\n            \"Asia/Dhaka\": \"(GMT+06:00) Bangladesh Standard Time(Asia/Dhaka)\",\n            \"Asia/Thimbu\": \"(GMT+06:00) Bhutan Time(Asia/Thimbu)\",\n            \"Asia/Thimphu\": \"(GMT+06:00) Bhutan Time(Asia/Thimphu)\",\n            \"Asia/Almaty\": \"(GMT+06:00) East Kazakhstan Time(Asia/Almaty)\",\n            \"Indian/Chagos\": \"(GMT+06:00) Indian Ocean Time(Indian/Chagos)\",\n            \"Asia/Qostanay\": \"(GMT+06:00) Kostanay Standard Time(Asia/Qostanay)\",\n            \"Asia/Bishkek\": \"(GMT+06:00) Kyrgyzstan Time(Asia/Bishkek)\",\n            \"Asia/Omsk\": \"(GMT+06:00) Omsk Standard Time(Asia/Omsk)\",\n            \"Asia/Kashgar\": \"(GMT+06:00) Xinjiang Standard Time(Asia/Kashgar)\",\n            \"Asia/Urumqi\": \"(GMT+06:00) Xinjiang Standard Time(Asia/Urumqi)\",\n            \"Indian/Cocos\": \"(GMT+06:30) Cocos Islands Time(Indian/Cocos)\",\n            \"Asia/Rangoon\": \"(GMT+06:30) Myanmar Time(Asia/Rangoon)\",\n            \"Asia/Yangon\": \"(GMT+06:30) Myanmar Time(Asia/Yangon)\",\n            \"Asia/Barnaul\": \"(GMT+07:00) Barnaul Standard Time(Asia/Barnaul)\",\n            \"Indian/Christmas\": \"(GMT+07:00) Christmas Island Time(Indian/Christmas)\",\n            \"Asia/Hovd\": \"(GMT+07:00) Hovd Standard Time(Asia/Hovd)\",\n            \"Asia/Bangkok\": \"(GMT+07:00) Indochina Time(Asia/Bangkok)\",\n            \"Asia/Ho_Chi_Minh\": \"(GMT+07:00) Indochina Time(Asia/Ho_Chi_Minh)\",\n            \"Asia/Phnom_Penh\": \"(GMT+07:00) Indochina Time(Asia/Phnom_Penh)\",\n            \"Asia/Saigon\": \"(GMT+07:00) Indochina Time(Asia/Saigon)\",\n            \"Asia/Vientiane\": \"(GMT+07:00) Indochina Time(Asia/Vientiane)\",\n            \"Asia/Krasnoyarsk\": \"(GMT+07:00) Krasnoyarsk Standard Time(Asia/Krasnoyarsk)\",\n            \"Asia/Novokuznetsk\": \"(GMT+07:00) Krasnoyarsk Standard Time(Asia/Novokuznetsk)\",\n            \"Asia/Novosibirsk\": \"(GMT+07:00) Novosibirsk Standard Time(Asia/Novosibirsk)\",\n            \"Asia/Tomsk\": \"(GMT+07:00) Tomsk Standard Time(Asia/Tomsk)\",\n            \"Asia/Jakarta\": \"(GMT+07:00) Western Indonesia Time(Asia/Jakarta)\",\n            \"Asia/Pontianak\": \"(GMT+07:00) Western Indonesia Time(Asia/Pontianak)\",\n            \"Australia/Perth\": \"(GMT+08:00) Australian Western Standard Time(Australia/Perth)\",\n            \"Australia/West\": \"(GMT+08:00) Australian Western Standard Time(Australia/West)\",\n            \"Asia/Brunei\": \"(GMT+08:00) Brunei Darussalam Time(Asia/Brunei)\",\n            \"Asia/Makassar\": \"(GMT+08:00) Central Indonesia Time(Asia/Makassar)\",\n            \"Asia/Ujung_Pandang\": \"(GMT+08:00) Central Indonesia Time(Asia/Ujung_Pandang)\",\n            \"Asia/Chongqing\": \"(GMT+08:00) China Standard Time(Asia/Chongqing)\",\n            \"Asia/Chungking\": \"(GMT+08:00) China Standard Time(Asia/Chungking)\",\n            \"Asia/Harbin\": \"(GMT+08:00) China Standard Time(Asia/Harbin)\",\n            \"Asia/Macao\": \"(GMT+08:00) China Standard Time(Asia/Macao)\",\n            \"Asia/Macau\": \"(GMT+08:00) China Standard Time(Asia/Macau)\",\n            \"Asia/Shanghai\": \"(GMT+08:00) China Standard Time(Asia/Shanghai)\",\n            \"Asia/Choibalsan\": \"(GMT+08:00) Choibalsan Standard Time(Asia/Choibalsan)\",\n            \"Asia/Hong_Kong\": \"(GMT+08:00) Hong Kong Standard Time(Asia/Hong_Kong)\",\n            \"Asia/Irkutsk\": \"(GMT+08:00) Irkutsk Standard Time(Asia/Irkutsk)\",\n            \"Asia/Kuala_Lumpur\": \"(GMT+08:00) Malaysia Time(Asia/Kuala_Lumpur)\",\n            \"Asia/Kuching\": \"(GMT+08:00) Malaysia Time(Asia/Kuching)\",\n            \"Asia/Manila\": \"(GMT+08:00) Philippine Standard Time(Asia/Manila)\",\n            \"Asia/Singapore\": \"(GMT+08:00) Singapore Standard Time(Asia/Singapore)\",\n            \"Asia/Taipei\": \"(GMT+08:00) Taipei Standard Time(Asia/Taipei)\",\n            \"Asia/Ulaanbaatar\": \"(GMT+08:00) Ulaanbaatar Standard Time(Asia/Ulaanbaatar)\",\n            \"Asia/Ulan_Bator\": \"(GMT+08:00) Ulaanbaatar Standard Time(Asia/Ulan_Bator)\",\n            \"Australia/Eucla\": \"(GMT+08:45) Australian Central Western Standard Time(Australia/Eucla)\",\n            \"Asia/Dili\": \"(GMT+09:00) East Timor Time(Asia/Dili)\",\n            \"Asia/Jayapura\": \"(GMT+09:00) Eastern Indonesia Time(Asia/Jayapura)\",\n            \"Asia/Tokyo\": \"(GMT+09:00) Japan Standard Time(Asia/Tokyo)\",\n            \"Asia/Seoul\": \"(GMT+09:00) Korean Standard Time(Asia/Seoul)\",\n            \"Pacific/Palau\": \"(GMT+09:00) Palau Time(Pacific/Palau)\",\n            \"Asia/Pyongyang\": \"(GMT+09:00) Pyongyang Time(Asia/Pyongyang)\",\n            \"Asia/Chita\": \"(GMT+09:00) Yakutsk Standard Time(Asia/Chita)\",\n            \"Asia/Khandyga\": \"(GMT+09:00) Yakutsk Standard Time(Asia/Khandyga)\",\n            \"Asia/Yakutsk\": \"(GMT+09:00) Yakutsk Standard Time(Asia/Yakutsk)\",\n            \"Australia/Darwin\": \"(GMT+09:30) Australian Central Standard Time(Australia/Darwin)\",\n            \"Australia/North\": \"(GMT+09:30) Australian Central Standard Time(Australia/North)\",\n            \"Australia/Brisbane\": \"(GMT+10:00) Australian Eastern Standard Time(Australia/Brisbane)\",\n            \"Australia/Lindeman\": \"(GMT+10:00) Australian Eastern Standard Time(Australia/Lindeman)\",\n            \"Australia/Queensland\": \"(GMT+10:00) Australian Eastern Standard Time(Australia/Queensland)\",\n            \"Pacific/Guam\": \"(GMT+10:00) Chamorro Standard Time(Pacific/Guam)\",\n            \"Pacific/Saipan\": \"(GMT+10:00) Chamorro Standard Time(Pacific/Saipan)\",\n            \"Pacific/Chuuk\": \"(GMT+10:00) Chuuk Time(Pacific/Chuuk)\",\n            \"Pacific/Truk\": \"(GMT+10:00) Chuuk Time(Pacific/Truk)\",\n            \"Pacific/Yap\": \"(GMT+10:00) Chuuk Time(Pacific/Yap)\",\n            \"Pacific/Port_Moresby\": \"(GMT+10:00) Papua New Guinea Time(Pacific/Port_Moresby)\",\n            \"Asia/Ust-Nera\": \"(GMT+10:00) Vladivostok Standard Time(Asia/Ust-Nera)\",\n            \"Asia/Vladivostok\": \"(GMT+10:00) Vladivostok Standard Time(Asia/Vladivostok)\",\n            \"Australia/Adelaide\": \"(GMT+10:30) Australian Central Daylight Time(Australia/Adelaide)\",\n            \"Australia/Broken_Hill\": \"(GMT+10:30) Australian Central Daylight Time(Australia/Broken_Hill)\",\n            \"Australia/South\": \"(GMT+10:30) Australian Central Daylight Time(Australia/South)\",\n            \"Australia/Yancowinna\": \"(GMT+10:30) Australian Central Daylight Time(Australia/Yancowinna)\",\n            \"Australia/ACT\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/ACT)\",\n            \"Australia/Canberra\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/Canberra)\",\n            \"Australia/Currie\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/Currie)\",\n            \"Australia/Hobart\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/Hobart)\",\n            \"Australia/Melbourne\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/Melbourne)\",\n            \"Australia/NSW\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/NSW)\",\n            \"Australia/Sydney\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/Sydney)\",\n            \"Australia/Tasmania\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/Tasmania)\",\n            \"Australia/Victoria\": \"(GMT+11:00) Australian Eastern Daylight Time(Australia/Victoria)\",\n            \"Pacific/Bougainville\": \"(GMT+11:00) Bougainville Standard Time(Pacific/Bougainville)\",\n            \"Pacific/Kosrae\": \"(GMT+11:00) Kosrae Time(Pacific/Kosrae)\",\n            \"Australia/LHI\": \"(GMT+11:00) Lord Howe Daylight Time(Australia/LHI)\",\n            \"Australia/Lord_Howe\": \"(GMT+11:00) Lord Howe Daylight Time(Australia/Lord_Howe)\",\n            \"Asia/Magadan\": \"(GMT+11:00) Magadan Standard Time(Asia/Magadan)\",\n            \"Pacific/Noumea\": \"(GMT+11:00) New Caledonia Standard Time(Pacific/Noumea)\",\n            \"Pacific/Pohnpei\": \"(GMT+11:00) Ponape Time(Pacific/Pohnpei)\",\n            \"Pacific/Ponape\": \"(GMT+11:00) Ponape Time(Pacific/Ponape)\",\n            \"Asia/Sakhalin\": \"(GMT+11:00) Sakhalin Standard Time(Asia/Sakhalin)\",\n            \"Pacific/Guadalcanal\": \"(GMT+11:00) Solomon Islands Time(Pacific/Guadalcanal)\",\n            \"Asia/Srednekolymsk\": \"(GMT+11:00) Srednekolymsk Time(Asia/Srednekolymsk)\",\n            \"Pacific/Efate\": \"(GMT+11:00) Vanuatu Standard Time(Pacific/Efate)\",\n            \"Asia/Anadyr\": \"(GMT+12:00) Anadyr Standard Time(Asia/Anadyr)\",\n            \"Pacific/Tarawa\": \"(GMT+12:00) Gilbert Islands Time(Pacific/Tarawa)\",\n            \"Pacific/Kwajalein\": \"(GMT+12:00) Marshall Islands Time(Pacific/Kwajalein)\",\n            \"Pacific/Majuro\": \"(GMT+12:00) Marshall Islands Time(Pacific/Majuro)\",\n            \"Pacific/Nauru\": \"(GMT+12:00) Nauru Time(Pacific/Nauru)\",\n            \"Pacific/Norfolk\": \"(GMT+12:00) Norfolk Island Time(Pacific/Norfolk)\",\n            \"Asia/Kamchatka\": \"(GMT+12:00) Petropavlovsk-Kamchatski Standard Time(Asia/Kamchatka)\",\n            \"Pacific/Funafuti\": \"(GMT+12:00) Tuvalu Time(Pacific/Funafuti)\",\n            \"Pacific/Wake\": \"(GMT+12:00) Wake Island Time(Pacific/Wake)\",\n            \"Pacific/Wallis\": \"(GMT+12:00) Wallis & Futuna Time(Pacific/Wallis)\",\n            \"Pacific/Fiji\": \"(GMT+13:00) Fiji Daylight Time(Pacific/Fiji)\",\n            \"Pacific/Auckland\": \"(GMT+13:00) New Zealand Daylight Time(Pacific/Auckland)\",\n            \"Pacific/Enderbury\": \"(GMT+13:00) Phoenix Islands Time(Pacific/Enderbury)\",\n            \"Pacific/Fakaofo\": \"(GMT+13:00) Tokelau Time(Pacific/Fakaofo)\",\n            \"Pacific/Tongatapu\": \"(GMT+13:00) Tonga Standard Time(Pacific/Tongatapu)\",\n            \"Pacific/Chatham\": \"(GMT+13:45) Chatham Daylight Time(Pacific/Chatham)\",\n            \"Pacific/Apia\": \"(GMT+14:00) Apia Daylight Time(Pacific/Apia)\",\n            \"Pacific/Kiritimati\": \"(GMT+14:00) Line Islands Time(Pacific/Kiritimati)\"\n        }\n    ]\n}"}],"_postman_id":"424556ae-dc32-4943-9d42-9281a7b56393"},{"name":"Regions","id":"54294f44-7d36-4845-864f-0df81e5e02da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/regions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["public","regions"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"f752990b-62eb-4296-b9a4-6aad187ba685","name":"Regions","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/regions"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"region\": \"US_EAST_1\",\n            \"regionName\": \"US East (N. Virginia)\",\n            \"countryCode\": \"1\"\n        },\n        {\n            \"region\": \"US_WEST_1\",\n            \"regionName\": \"US West (N. California)\",\n            \"countryCode\": \"1\"\n        },\n        {\n            \"region\": \"EU_WEST_1\",\n            \"regionName\": \"EU (Ireland)\",\n            \"countryCode\": \"44\"\n        },\n        {\n            \"region\": \"AP_SOUTHEAST_1\",\n            \"regionName\": \"Asia Pacific (Singapore)\",\n            \"countryCode\": \"65\"\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 4,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"54294f44-7d36-4845-864f-0df81e5e02da"},{"name":"Country","id":"5111da59-2258-4446-a7e1-c5237f1b2e75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/country","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["public","country"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"523912f6-c112-4051-8010-1607c4644e0a","name":"Country","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/country"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"countryCodeId\": 1,\n            \"countryIsoCode\": \"AF\",\n            \"countryDialCode\": 93,\n            \"countryName\": \"Afghanistan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 2,\n            \"countryIsoCode\": \"AL\",\n            \"countryDialCode\": 355,\n            \"countryName\": \"Albania\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 3,\n            \"countryIsoCode\": \"DZ\",\n            \"countryDialCode\": 213,\n            \"countryName\": \"Algeria\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 4,\n            \"countryIsoCode\": \"AS\",\n            \"countryDialCode\": 1684,\n            \"countryName\": \"American samoa\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 5,\n            \"countryIsoCode\": \"AD\",\n            \"countryDialCode\": 376,\n            \"countryName\": \"Andorra\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 6,\n            \"countryIsoCode\": \"AO\",\n            \"countryDialCode\": 244,\n            \"countryName\": \"Angola\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 7,\n            \"countryIsoCode\": \"AI\",\n            \"countryDialCode\": 1264,\n            \"countryName\": \"Anguilla\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 8,\n            \"countryIsoCode\": \"AQ\",\n            \"countryDialCode\": 672,\n            \"countryName\": \"Antarctica\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 9,\n            \"countryIsoCode\": \"AG\",\n            \"countryDialCode\": 1268,\n            \"countryName\": \"Antigua and barbuda\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 10,\n            \"countryIsoCode\": \"AR\",\n            \"countryDialCode\": 54,\n            \"countryName\": \"Argentina\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 11,\n            \"countryIsoCode\": \"AM\",\n            \"countryDialCode\": 374,\n            \"countryName\": \"Armenia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 12,\n            \"countryIsoCode\": \"AW\",\n            \"countryDialCode\": 297,\n            \"countryName\": \"Aruba\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 13,\n            \"countryIsoCode\": \"AU\",\n            \"countryDialCode\": 61,\n            \"countryName\": \"Australia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 14,\n            \"countryIsoCode\": \"AT\",\n            \"countryDialCode\": 43,\n            \"countryName\": \"Austria\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 15,\n            \"countryIsoCode\": \"AZ\",\n            \"countryDialCode\": 994,\n            \"countryName\": \"Azerbaijan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 16,\n            \"countryIsoCode\": \"BS\",\n            \"countryDialCode\": 1242,\n            \"countryName\": \"Bahamas\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 17,\n            \"countryIsoCode\": \"BH\",\n            \"countryDialCode\": 973,\n            \"countryName\": \"Bahrain\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 18,\n            \"countryIsoCode\": \"BD\",\n            \"countryDialCode\": 880,\n            \"countryName\": \"Bangladesh\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 19,\n            \"countryIsoCode\": \"BB\",\n            \"countryDialCode\": 1246,\n            \"countryName\": \"Barbados\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 20,\n            \"countryIsoCode\": \"BY\",\n            \"countryDialCode\": 375,\n            \"countryName\": \"Belarus\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 21,\n            \"countryIsoCode\": \"BE\",\n            \"countryDialCode\": 32,\n            \"countryName\": \"Belgium\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 22,\n            \"countryIsoCode\": \"BZ\",\n            \"countryDialCode\": 501,\n            \"countryName\": \"Belize\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 23,\n            \"countryIsoCode\": \"BJ\",\n            \"countryDialCode\": 229,\n            \"countryName\": \"Benin\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 24,\n            \"countryIsoCode\": \"BM\",\n            \"countryDialCode\": 1441,\n            \"countryName\": \"Bermuda\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 25,\n            \"countryIsoCode\": \"BT\",\n            \"countryDialCode\": 975,\n            \"countryName\": \"Bhutan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 26,\n            \"countryIsoCode\": \"BO\",\n            \"countryDialCode\": 591,\n            \"countryName\": \"Bolivia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 27,\n            \"countryIsoCode\": \"BA\",\n            \"countryDialCode\": 387,\n            \"countryName\": \"Bosnia and herzegowina\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 28,\n            \"countryIsoCode\": \"BW\",\n            \"countryDialCode\": 267,\n            \"countryName\": \"Botswana\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 29,\n            \"countryIsoCode\": \"BV\",\n            \"countryDialCode\": 61,\n            \"countryName\": \"Bouvet island (Norway)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 30,\n            \"countryIsoCode\": \"BR\",\n            \"countryDialCode\": 55,\n            \"countryName\": \"Brazil\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 31,\n            \"countryIsoCode\": \"IO\",\n            \"countryDialCode\": 246,\n            \"countryName\": \"British indian ocean territory\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 32,\n            \"countryIsoCode\": \"BN\",\n            \"countryDialCode\": 672,\n            \"countryName\": \"Brunei darussalam\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 33,\n            \"countryIsoCode\": \"BG\",\n            \"countryDialCode\": 359,\n            \"countryName\": \"Bulgaria\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 34,\n            \"countryIsoCode\": \"BF\",\n            \"countryDialCode\": 226,\n            \"countryName\": \"Burkina faso\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 35,\n            \"countryIsoCode\": \"BI\",\n            \"countryDialCode\": 257,\n            \"countryName\": \"Burundi\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 36,\n            \"countryIsoCode\": \"KH\",\n            \"countryDialCode\": 855,\n            \"countryName\": \"Cambodia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 37,\n            \"countryIsoCode\": \"CM\",\n            \"countryDialCode\": 237,\n            \"countryName\": \"Cameroon\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 38,\n            \"countryIsoCode\": \"CA\",\n            \"countryDialCode\": 1,\n            \"countryName\": \"Canada\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 39,\n            \"countryIsoCode\": \"CV\",\n            \"countryDialCode\": 238,\n            \"countryName\": \"Cape verde\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 40,\n            \"countryIsoCode\": \"KY\",\n            \"countryDialCode\": 1345,\n            \"countryName\": \"Cayman islands\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 41,\n            \"countryIsoCode\": \"CF\",\n            \"countryDialCode\": 236,\n            \"countryName\": \"Central african republic\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 42,\n            \"countryIsoCode\": \"TD\",\n            \"countryDialCode\": 235,\n            \"countryName\": \"Chad\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 43,\n            \"countryIsoCode\": \"CL\",\n            \"countryDialCode\": 56,\n            \"countryName\": \"Chile\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 44,\n            \"countryIsoCode\": \"CN\",\n            \"countryDialCode\": 86,\n            \"countryName\": \"China\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 45,\n            \"countryIsoCode\": \"CX\",\n            \"countryDialCode\": 61,\n            \"countryName\": \"Christmas island\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 46,\n            \"countryIsoCode\": \"CC\",\n            \"countryDialCode\": 891,\n            \"countryName\": \"Cocos (keeling) islands (austrailia)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 47,\n            \"countryIsoCode\": \"CO\",\n            \"countryDialCode\": 57,\n            \"countryName\": \"Colombia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 48,\n            \"countryIsoCode\": \"KM\",\n            \"countryDialCode\": 269,\n            \"countryName\": \"Comoros\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 49,\n            \"countryIsoCode\": \"CG\",\n            \"countryDialCode\": 242,\n            \"countryName\": \"Congo\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 50,\n            \"countryIsoCode\": \"CD\",\n            \"countryDialCode\": 243,\n            \"countryName\": \"Congo, the drc\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 51,\n            \"countryIsoCode\": \"CK\",\n            \"countryDialCode\": 682,\n            \"countryName\": \"Cook islands\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 52,\n            \"countryIsoCode\": \"CR\",\n            \"countryDialCode\": 506,\n            \"countryName\": \"Costa rica\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 53,\n            \"countryIsoCode\": \"CI\",\n            \"countryDialCode\": 225,\n            \"countryName\": \"Cote d'ivoire\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 54,\n            \"countryIsoCode\": \"HR\",\n            \"countryDialCode\": 385,\n            \"countryName\": \"Croatia (local name: hrvatska)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 55,\n            \"countryIsoCode\": \"CU\",\n            \"countryDialCode\": 53,\n            \"countryName\": \"Cuba\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 56,\n            \"countryIsoCode\": \"CY\",\n            \"countryDialCode\": 357,\n            \"countryName\": \"Cyprus\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 57,\n            \"countryIsoCode\": \"CZ\",\n            \"countryDialCode\": 420,\n            \"countryName\": \"Czech republic\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 58,\n            \"countryIsoCode\": \"DK\",\n            \"countryDialCode\": 45,\n            \"countryName\": \"Denmark\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 59,\n            \"countryIsoCode\": \"DJ\",\n            \"countryDialCode\": 253,\n            \"countryName\": \"Djibouti\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 60,\n            \"countryIsoCode\": \"DM\",\n            \"countryDialCode\": 1767,\n            \"countryName\": \"Dominica\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 61,\n            \"countryIsoCode\": \"DO\",\n            \"countryDialCode\": 1809,\n            \"countryName\": \"Dominican republic\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 62,\n            \"countryIsoCode\": \"TP\",\n            \"countryDialCode\": 670,\n            \"countryName\": \"East timor\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 63,\n            \"countryIsoCode\": \"EC\",\n            \"countryDialCode\": 593,\n            \"countryName\": \"Ecuador\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 64,\n            \"countryIsoCode\": \"EG\",\n            \"countryDialCode\": 20,\n            \"countryName\": \"Egypt\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 65,\n            \"countryIsoCode\": \"SV\",\n            \"countryDialCode\": 503,\n            \"countryName\": \"El salvador\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 66,\n            \"countryIsoCode\": \"GQ\",\n            \"countryDialCode\": 240,\n            \"countryName\": \"Equatorial guinea\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 67,\n            \"countryIsoCode\": \"ER\",\n            \"countryDialCode\": 291,\n            \"countryName\": \"Eritrea\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 68,\n            \"countryIsoCode\": \"EE\",\n            \"countryDialCode\": 372,\n            \"countryName\": \"Estonia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 69,\n            \"countryIsoCode\": \"ET\",\n            \"countryDialCode\": 251,\n            \"countryName\": \"Ethiopia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 70,\n            \"countryIsoCode\": \"FK\",\n            \"countryDialCode\": 500,\n            \"countryName\": \"Falkland islands (malvinas)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 71,\n            \"countryIsoCode\": \"FO\",\n            \"countryDialCode\": 298,\n            \"countryName\": \"Faroe islands\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 72,\n            \"countryIsoCode\": \"FJ\",\n            \"countryDialCode\": 679,\n            \"countryName\": \"Fiji\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 73,\n            \"countryIsoCode\": \"FI\",\n            \"countryDialCode\": 358,\n            \"countryName\": \"Finland\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 74,\n            \"countryIsoCode\": \"FR\",\n            \"countryDialCode\": 33,\n            \"countryName\": \"France\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 75,\n            \"countryIsoCode\": \"FX\",\n            \"countryDialCode\": 33,\n            \"countryName\": \"France, metropolitan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 76,\n            \"countryIsoCode\": \"GF\",\n            \"countryDialCode\": 594,\n            \"countryName\": \"French guiana\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 77,\n            \"countryIsoCode\": \"PF\",\n            \"countryDialCode\": 689,\n            \"countryName\": \"French polynesia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 78,\n            \"countryIsoCode\": \"TF\",\n            \"countryDialCode\": 262,\n            \"countryName\": \"French southern territories\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 79,\n            \"countryIsoCode\": \"GA\",\n            \"countryDialCode\": 241,\n            \"countryName\": \"Gabon\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 80,\n            \"countryIsoCode\": \"GM\",\n            \"countryDialCode\": 220,\n            \"countryName\": \"Gambia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 81,\n            \"countryIsoCode\": \"GE\",\n            \"countryDialCode\": 995,\n            \"countryName\": \"Georgia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 82,\n            \"countryIsoCode\": \"DE\",\n            \"countryDialCode\": 49,\n            \"countryName\": \"Germany\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 83,\n            \"countryIsoCode\": \"GH\",\n            \"countryDialCode\": 233,\n            \"countryName\": \"Ghana\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 84,\n            \"countryIsoCode\": \"GI\",\n            \"countryDialCode\": 350,\n            \"countryName\": \"Gibraltar\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 85,\n            \"countryIsoCode\": \"GR\",\n            \"countryDialCode\": 30,\n            \"countryName\": \"Greece\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 86,\n            \"countryIsoCode\": \"GL\",\n            \"countryDialCode\": 299,\n            \"countryName\": \"Greenland\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 87,\n            \"countryIsoCode\": \"GD\",\n            \"countryDialCode\": 1473,\n            \"countryName\": \"Grenada\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 88,\n            \"countryIsoCode\": \"GP\",\n            \"countryDialCode\": 590,\n            \"countryName\": \"Guadeloupe\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 89,\n            \"countryIsoCode\": \"GU\",\n            \"countryDialCode\": 1671,\n            \"countryName\": \"Guam\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 90,\n            \"countryIsoCode\": \"GT\",\n            \"countryDialCode\": 502,\n            \"countryName\": \"Guatemala\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 91,\n            \"countryIsoCode\": \"GN\",\n            \"countryDialCode\": 224,\n            \"countryName\": \"Guinea\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 92,\n            \"countryIsoCode\": \"GW\",\n            \"countryDialCode\": 245,\n            \"countryName\": \"Guinea-bissau\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 93,\n            \"countryIsoCode\": \"GY\",\n            \"countryDialCode\": 592,\n            \"countryName\": \"Guyana\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 94,\n            \"countryIsoCode\": \"HT\",\n            \"countryDialCode\": 509,\n            \"countryName\": \"Haiti\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 95,\n            \"countryIsoCode\": \"HM\",\n            \"countryDialCode\": 672,\n            \"countryName\": \"Heard and mc donald islands\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 96,\n            \"countryIsoCode\": \"VA\",\n            \"countryDialCode\": 379,\n            \"countryName\": \"Holy see (vatican city state)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 97,\n            \"countryIsoCode\": \"HN\",\n            \"countryDialCode\": 504,\n            \"countryName\": \"Honduras\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 98,\n            \"countryIsoCode\": \"HK\",\n            \"countryDialCode\": 852,\n            \"countryName\": \"Hong kong\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 99,\n            \"countryIsoCode\": \"HU\",\n            \"countryDialCode\": 36,\n            \"countryName\": \"Hungary\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 100,\n            \"countryIsoCode\": \"IS\",\n            \"countryDialCode\": 354,\n            \"countryName\": \"Iceland\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 101,\n            \"countryIsoCode\": \"IN\",\n            \"countryDialCode\": 91,\n            \"countryName\": \"India\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 102,\n            \"countryIsoCode\": \"ID\",\n            \"countryDialCode\": 62,\n            \"countryName\": \"Indonesia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 103,\n            \"countryIsoCode\": \"IR\",\n            \"countryDialCode\": 98,\n            \"countryName\": \"Iran (islamic republic of)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 104,\n            \"countryIsoCode\": \"IQ\",\n            \"countryDialCode\": 964,\n            \"countryName\": \"Iraq\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 105,\n            \"countryIsoCode\": \"IE\",\n            \"countryDialCode\": 353,\n            \"countryName\": \"Ireland\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 106,\n            \"countryIsoCode\": \"IL\",\n            \"countryDialCode\": 972,\n            \"countryName\": \"Israel\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 107,\n            \"countryIsoCode\": \"IT\",\n            \"countryDialCode\": 39,\n            \"countryName\": \"Italy\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 108,\n            \"countryIsoCode\": \"JM\",\n            \"countryDialCode\": 1876,\n            \"countryName\": \"Jamaica\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 109,\n            \"countryIsoCode\": \"JP\",\n            \"countryDialCode\": 81,\n            \"countryName\": \"Japan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 110,\n            \"countryIsoCode\": \"JO\",\n            \"countryDialCode\": 962,\n            \"countryName\": \"Jordan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 111,\n            \"countryIsoCode\": \"KZ\",\n            \"countryDialCode\": 7,\n            \"countryName\": \"Kazakhstan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 112,\n            \"countryIsoCode\": \"KE\",\n            \"countryDialCode\": 254,\n            \"countryName\": \"Kenya\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 113,\n            \"countryIsoCode\": \"KI\",\n            \"countryDialCode\": 686,\n            \"countryName\": \"Kiribati\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 114,\n            \"countryIsoCode\": \"KP\",\n            \"countryDialCode\": 850,\n            \"countryName\": \"Korea, d.p.r.o.\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 115,\n            \"countryIsoCode\": \"KR\",\n            \"countryDialCode\": 82,\n            \"countryName\": \"Korea, republic of\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 116,\n            \"countryIsoCode\": \"KW\",\n            \"countryDialCode\": 965,\n            \"countryName\": \"Kuwait\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 117,\n            \"countryIsoCode\": \"KG\",\n            \"countryDialCode\": 996,\n            \"countryName\": \"Kyrgyzstan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 118,\n            \"countryIsoCode\": \"LA\",\n            \"countryDialCode\": 856,\n            \"countryName\": \"Laos\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 119,\n            \"countryIsoCode\": \"LV\",\n            \"countryDialCode\": 371,\n            \"countryName\": \"Latvia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 120,\n            \"countryIsoCode\": \"LB\",\n            \"countryDialCode\": 961,\n            \"countryName\": \"Lebanon\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 121,\n            \"countryIsoCode\": \"LS\",\n            \"countryDialCode\": 266,\n            \"countryName\": \"Lesotho\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 122,\n            \"countryIsoCode\": \"LR\",\n            \"countryDialCode\": 231,\n            \"countryName\": \"Liberia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 123,\n            \"countryIsoCode\": \"LY\",\n            \"countryDialCode\": 218,\n            \"countryName\": \"Libyan arab jamahiriya\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 124,\n            \"countryIsoCode\": \"LI\",\n            \"countryDialCode\": 423,\n            \"countryName\": \"Liechtenstein\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 125,\n            \"countryIsoCode\": \"LT\",\n            \"countryDialCode\": 370,\n            \"countryName\": \"Lithuania\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 126,\n            \"countryIsoCode\": \"LU\",\n            \"countryDialCode\": 352,\n            \"countryName\": \"Luxembourg\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 127,\n            \"countryIsoCode\": \"MO\",\n            \"countryDialCode\": 853,\n            \"countryName\": \"Macau\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 128,\n            \"countryIsoCode\": \"MK\",\n            \"countryDialCode\": 389,\n            \"countryName\": \"Macedonia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 129,\n            \"countryIsoCode\": \"MG\",\n            \"countryDialCode\": 261,\n            \"countryName\": \"Madagascar\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 130,\n            \"countryIsoCode\": \"MW\",\n            \"countryDialCode\": 265,\n            \"countryName\": \"Malawi\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 131,\n            \"countryIsoCode\": \"MY\",\n            \"countryDialCode\": 60,\n            \"countryName\": \"Malaysia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 132,\n            \"countryIsoCode\": \"MV\",\n            \"countryDialCode\": 960,\n            \"countryName\": \"Maldives\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 133,\n            \"countryIsoCode\": \"ML\",\n            \"countryDialCode\": 223,\n            \"countryName\": \"Mali\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 134,\n            \"countryIsoCode\": \"MT\",\n            \"countryDialCode\": 356,\n            \"countryName\": \"Malta\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 135,\n            \"countryIsoCode\": \"MH\",\n            \"countryDialCode\": 692,\n            \"countryName\": \"Marshall islands\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 136,\n            \"countryIsoCode\": \"MQ\",\n            \"countryDialCode\": 596,\n            \"countryName\": \"Martinique\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 137,\n            \"countryIsoCode\": \"MR\",\n            \"countryDialCode\": 222,\n            \"countryName\": \"Mauritania\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 138,\n            \"countryIsoCode\": \"MU\",\n            \"countryDialCode\": 230,\n            \"countryName\": \"Mauritius\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 139,\n            \"countryIsoCode\": \"YT\",\n            \"countryDialCode\": 262,\n            \"countryName\": \"Mayotte\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 140,\n            \"countryIsoCode\": \"MX\",\n            \"countryDialCode\": 52,\n            \"countryName\": \"Mexico\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 141,\n            \"countryIsoCode\": \"FM\",\n            \"countryDialCode\": 691,\n            \"countryName\": \"Micronesia, federated states of\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 142,\n            \"countryIsoCode\": \"MD\",\n            \"countryDialCode\": 373,\n            \"countryName\": \"Moldova, republic of\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 143,\n            \"countryIsoCode\": \"MC\",\n            \"countryDialCode\": 377,\n            \"countryName\": \"Monaco\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 144,\n            \"countryIsoCode\": \"MN\",\n            \"countryDialCode\": 976,\n            \"countryName\": \"Mongolia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 145,\n            \"countryIsoCode\": \"ME\",\n            \"countryDialCode\": 382,\n            \"countryName\": \"Montenegro\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 146,\n            \"countryIsoCode\": \"MS\",\n            \"countryDialCode\": 1664,\n            \"countryName\": \"Montserrat\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 147,\n            \"countryIsoCode\": \"MA\",\n            \"countryDialCode\": 212,\n            \"countryName\": \"Morocco\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 148,\n            \"countryIsoCode\": \"MZ\",\n            \"countryDialCode\": 258,\n            \"countryName\": \"Mozambique\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 149,\n            \"countryIsoCode\": \"MM\",\n            \"countryDialCode\": 95,\n            \"countryName\": \"Myanmar (burma)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 150,\n            \"countryIsoCode\": \"NA\",\n            \"countryDialCode\": 264,\n            \"countryName\": \"Namibia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 151,\n            \"countryIsoCode\": \"NR\",\n            \"countryDialCode\": 674,\n            \"countryName\": \"Nauru\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 152,\n            \"countryIsoCode\": \"NP\",\n            \"countryDialCode\": 977,\n            \"countryName\": \"Nepal\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 153,\n            \"countryIsoCode\": \"NL\",\n            \"countryDialCode\": 31,\n            \"countryName\": \"Netherlands\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 154,\n            \"countryIsoCode\": \"AN\",\n            \"countryDialCode\": 599,\n            \"countryName\": \"Netherlands antilles\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 155,\n            \"countryIsoCode\": \"NC\",\n            \"countryDialCode\": 687,\n            \"countryName\": \"New caledonia\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 156,\n            \"countryIsoCode\": \"NZ\",\n            \"countryDialCode\": 64,\n            \"countryName\": \"New zealand\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 157,\n            \"countryIsoCode\": \"NI\",\n            \"countryDialCode\": 505,\n            \"countryName\": \"Nicaragua\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 158,\n            \"countryIsoCode\": \"NE\",\n            \"countryDialCode\": 227,\n            \"countryName\": \"Niger\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 159,\n            \"countryIsoCode\": \"NG\",\n            \"countryDialCode\": 234,\n            \"countryName\": \"Nigeria\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 160,\n            \"countryIsoCode\": \"NU\",\n            \"countryDialCode\": 683,\n            \"countryName\": \"Niue\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 161,\n            \"countryIsoCode\": \"NF\",\n            \"countryDialCode\": 672,\n            \"countryName\": \"Norfolk island\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 162,\n            \"countryIsoCode\": \"MP\",\n            \"countryDialCode\": 1670,\n            \"countryName\": \"Northern mariana islands\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 163,\n            \"countryIsoCode\": \"NO\",\n            \"countryDialCode\": 47,\n            \"countryName\": \"Norway\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 164,\n            \"countryIsoCode\": \"OM\",\n            \"countryDialCode\": 968,\n            \"countryName\": \"Oman\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 165,\n            \"countryIsoCode\": \"PK\",\n            \"countryDialCode\": 92,\n            \"countryName\": \"Pakistan\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 166,\n            \"countryIsoCode\": \"PW\",\n            \"countryDialCode\": 680,\n            \"countryName\": \"Palau\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 167,\n            \"countryIsoCode\": \"PA\",\n            \"countryDialCode\": 507,\n            \"countryName\": \"Panama\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 168,\n            \"countryIsoCode\": \"PG\",\n            \"countryDialCode\": 675,\n            \"countryName\": \"Papua new guinea\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 169,\n            \"countryIsoCode\": \"PY\",\n            \"countryDialCode\": 595,\n            \"countryName\": \"Paraguay\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 170,\n            \"countryIsoCode\": \"PE\",\n            \"countryDialCode\": 51,\n            \"countryName\": \"Peru\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 171,\n            \"countryIsoCode\": \"PH\",\n            \"countryDialCode\": 63,\n            \"countryName\": \"Philippines\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 172,\n            \"countryIsoCode\": \"PN\",\n            \"countryDialCode\": 870,\n            \"countryName\": \"Pitcairn\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 173,\n            \"countryIsoCode\": \"PL\",\n            \"countryDialCode\": 48,\n            \"countryName\": \"Poland\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 174,\n            \"countryIsoCode\": \"PT\",\n            \"countryDialCode\": 351,\n            \"countryName\": \"Portugal\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 175,\n            \"countryIsoCode\": \"PR\",\n            \"countryDialCode\": 1,\n            \"countryName\": \"Puerto rico\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 176,\n            \"countryIsoCode\": \"QA\",\n            \"countryDialCode\": 974,\n            \"countryName\": \"Qatar\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 177,\n            \"countryIsoCode\": \"RE\",\n            \"countryDialCode\": 262,\n            \"countryName\": \"Reunion\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 178,\n            \"countryIsoCode\": \"RO\",\n            \"countryDialCode\": 40,\n            \"countryName\": \"Romania\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 179,\n            \"countryIsoCode\": \"RU\",\n            \"countryDialCode\": 7,\n            \"countryName\": \"Russian federation\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 180,\n            \"countryIsoCode\": \"RW\",\n            \"countryDialCode\": 250,\n            \"countryName\": \"Rwanda\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 181,\n            \"countryIsoCode\": \"KN\",\n            \"countryDialCode\": 1869,\n            \"countryName\": \"SAINT KITTS AND NEVIS\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 182,\n            \"countryIsoCode\": \"LC\",\n            \"countryDialCode\": 1758,\n            \"countryName\": \"SAINT LUCIA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 183,\n            \"countryIsoCode\": \"VC\",\n            \"countryDialCode\": 1784,\n            \"countryName\": \"SAINT VINCENT AND THE GRENADINES\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 184,\n            \"countryIsoCode\": \"WS\",\n            \"countryDialCode\": 685,\n            \"countryName\": \"SAMOA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 185,\n            \"countryIsoCode\": \"SM\",\n            \"countryDialCode\": 378,\n            \"countryName\": \"SAN MARINO\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 186,\n            \"countryIsoCode\": \"ST\",\n            \"countryDialCode\": 239,\n            \"countryName\": \"SAO TOME AND PRINCIPE\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 187,\n            \"countryIsoCode\": \"SA\",\n            \"countryDialCode\": 966,\n            \"countryName\": \"SAUDI ARABIA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 188,\n            \"countryIsoCode\": \"SN\",\n            \"countryDialCode\": 221,\n            \"countryName\": \"SENEGAL\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 189,\n            \"countryIsoCode\": \"RS\",\n            \"countryDialCode\": 381,\n            \"countryName\": \"SERBIA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 190,\n            \"countryIsoCode\": \"SC\",\n            \"countryDialCode\": 248,\n            \"countryName\": \"SEYCHELLES\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 191,\n            \"countryIsoCode\": \"SL\",\n            \"countryDialCode\": 232,\n            \"countryName\": \"SIERRA LEONE\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 192,\n            \"countryIsoCode\": \"SG\",\n            \"countryDialCode\": 65,\n            \"countryName\": \"SINGAPORE\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 193,\n            \"countryIsoCode\": \"SK\",\n            \"countryDialCode\": 421,\n            \"countryName\": \"SLOVAKIA (Slovak Republic)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 194,\n            \"countryIsoCode\": \"SI\",\n            \"countryDialCode\": 386,\n            \"countryName\": \"SLOVENIA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 195,\n            \"countryIsoCode\": \"SB\",\n            \"countryDialCode\": 677,\n            \"countryName\": \"SOLOMON ISLANDS\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 196,\n            \"countryIsoCode\": \"SO\",\n            \"countryDialCode\": 252,\n            \"countryName\": \"SOMALIA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 197,\n            \"countryIsoCode\": \"ZA\",\n            \"countryDialCode\": 27,\n            \"countryName\": \"SOUTH AFRICA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 198,\n            \"countryIsoCode\": \"SS\",\n            \"countryDialCode\": 211,\n            \"countryName\": \"SOUTH SUDAN\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 199,\n            \"countryIsoCode\": \"GS\",\n            \"countryDialCode\": 500,\n            \"countryName\": \"SOUTH GEORGIA AND SOUTH S.S.\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 200,\n            \"countryIsoCode\": \"ES\",\n            \"countryDialCode\": 34,\n            \"countryName\": \"SPAIN\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 201,\n            \"countryIsoCode\": \"LK\",\n            \"countryDialCode\": 94,\n            \"countryName\": \"SRI LANKA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 202,\n            \"countryIsoCode\": \"SH\",\n            \"countryDialCode\": 290,\n            \"countryName\": \"ST. HELENA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 203,\n            \"countryIsoCode\": \"PM\",\n            \"countryDialCode\": 508,\n            \"countryName\": \"ST. PIERRE AND MIQUELON\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 204,\n            \"countryIsoCode\": \"SD\",\n            \"countryDialCode\": 249,\n            \"countryName\": \"SUDAN\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 205,\n            \"countryIsoCode\": \"SR\",\n            \"countryDialCode\": 597,\n            \"countryName\": \"SURINAME\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 206,\n            \"countryIsoCode\": \"SJ\",\n            \"countryDialCode\": 47,\n            \"countryName\": \"SVALBARD AND JAN MAYEN ISLANDS\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 207,\n            \"countryIsoCode\": \"SZ\",\n            \"countryDialCode\": 268,\n            \"countryName\": \"SWAZILAND\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 208,\n            \"countryIsoCode\": \"SE\",\n            \"countryDialCode\": 46,\n            \"countryName\": \"SWEDEN\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 209,\n            \"countryIsoCode\": \"CH\",\n            \"countryDialCode\": 41,\n            \"countryName\": \"SWITZERLAND\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 210,\n            \"countryIsoCode\": \"SY\",\n            \"countryDialCode\": 963,\n            \"countryName\": \"SYRIAN ARAB REPUBLIC\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 211,\n            \"countryIsoCode\": \"TW\",\n            \"countryDialCode\": 886,\n            \"countryName\": \"TAIWAN, PROVINCE OF CHINA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 212,\n            \"countryIsoCode\": \"TJ\",\n            \"countryDialCode\": 992,\n            \"countryName\": \"TAJIKISTAN\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 213,\n            \"countryIsoCode\": \"TZ\",\n            \"countryDialCode\": 255,\n            \"countryName\": \"TANZANIA, UNITED REPUBLIC OF\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 214,\n            \"countryIsoCode\": \"TH\",\n            \"countryDialCode\": 66,\n            \"countryName\": \"THAILAND\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 215,\n            \"countryIsoCode\": \"TG\",\n            \"countryDialCode\": 228,\n            \"countryName\": \"TOGO\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 216,\n            \"countryIsoCode\": \"TK\",\n            \"countryDialCode\": 690,\n            \"countryName\": \"TOKELAU\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 217,\n            \"countryIsoCode\": \"TO\",\n            \"countryDialCode\": 676,\n            \"countryName\": \"TONGA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 218,\n            \"countryIsoCode\": \"TT\",\n            \"countryDialCode\": 1868,\n            \"countryName\": \"TRINIDAD AND TOBAGO\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 219,\n            \"countryIsoCode\": \"TN\",\n            \"countryDialCode\": 216,\n            \"countryName\": \"TUNISIA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 220,\n            \"countryIsoCode\": \"TR\",\n            \"countryDialCode\": 90,\n            \"countryName\": \"TURKEY\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 221,\n            \"countryIsoCode\": \"TM\",\n            \"countryDialCode\": 993,\n            \"countryName\": \"TURKMENISTAN\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 222,\n            \"countryIsoCode\": \"TC\",\n            \"countryDialCode\": 1649,\n            \"countryName\": \"TURKS AND CAICOS ISLANDS\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 223,\n            \"countryIsoCode\": \"TV\",\n            \"countryDialCode\": 688,\n            \"countryName\": \"TUVALU\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 224,\n            \"countryIsoCode\": \"UG\",\n            \"countryDialCode\": 256,\n            \"countryName\": \"UGANDA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 225,\n            \"countryIsoCode\": \"UA\",\n            \"countryDialCode\": 380,\n            \"countryName\": \"UKRAINE\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 226,\n            \"countryIsoCode\": \"AE\",\n            \"countryDialCode\": 971,\n            \"countryName\": \"UNITED ARAB EMIRATES\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 227,\n            \"countryIsoCode\": \"GB\",\n            \"countryDialCode\": 44,\n            \"countryName\": \"UNITED KINGDOM\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 228,\n            \"countryIsoCode\": \"US\",\n            \"countryDialCode\": 1,\n            \"countryName\": \"UNITED STATES\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 229,\n            \"countryIsoCode\": \"UM\",\n            \"countryDialCode\": 1,\n            \"countryName\": \"U.S. MINOR ISLANDS\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 230,\n            \"countryIsoCode\": \"UY\",\n            \"countryDialCode\": 598,\n            \"countryName\": \"URUGUAY\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 231,\n            \"countryIsoCode\": \"UZ\",\n            \"countryDialCode\": 998,\n            \"countryName\": \"UZBEKISTAN\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 232,\n            \"countryIsoCode\": \"VU\",\n            \"countryDialCode\": 678,\n            \"countryName\": \"VANUATU\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 233,\n            \"countryIsoCode\": \"VE\",\n            \"countryDialCode\": 58,\n            \"countryName\": \"VENEZUELA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 234,\n            \"countryIsoCode\": \"VN\",\n            \"countryDialCode\": 84,\n            \"countryName\": \"VIETNAM\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 235,\n            \"countryIsoCode\": \"VG\",\n            \"countryDialCode\": 1284,\n            \"countryName\": \"VIRGIN ISLANDS (BRITISH)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 236,\n            \"countryIsoCode\": \"VI\",\n            \"countryDialCode\": 1430,\n            \"countryName\": \"VIRGIN ISLANDS (U.S.)\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 237,\n            \"countryIsoCode\": \"WF\",\n            \"countryDialCode\": 681,\n            \"countryName\": \"WALLIS AND FUTUNA ISLANDS\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 238,\n            \"countryIsoCode\": \"EH\",\n            \"countryDialCode\": 212,\n            \"countryName\": \"WESTERN SAHARA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 239,\n            \"countryIsoCode\": \"YE\",\n            \"countryDialCode\": 967,\n            \"countryName\": \"YEMEN\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 240,\n            \"countryIsoCode\": \"ZM\",\n            \"countryDialCode\": 260,\n            \"countryName\": \"ZAMBIA\",\n            \"orgId\": null\n        },\n        {\n            \"countryCodeId\": 241,\n            \"countryIsoCode\": \"ZW\",\n            \"countryDialCode\": 263,\n            \"countryName\": \"ZIMBABWE\",\n            \"orgId\": null\n        }\n    ]\n}"}],"_postman_id":"5111da59-2258-4446-a7e1-c5237f1b2e75"},{"name":"States","id":"deb903fe-001c-4ba0-9f7e-f4fd448970dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/country/:id/states","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["public","country",":id","states"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"b67c4a57-457c-48df-94bd-91a805055363","type":"any","value":null,"key":"id"}]}},"response":[{"id":"98c23578-9712-4934-a2db-7a7fde31a36a","name":"States","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/country/65/states"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 102418,\n            \"countryCode\": \"65\",\n            \"areaCode\": \"6\",\n            \"locationName\": \"Landline\",\n            \"locationGroupName\": \"Singapore Landline\",\n            \"tdCallRatePerMinute\": 0,\n            \"callerIdGroup\": \"\",\n            \"pdCallRatePerMinute\": 0,\n            \"twoPartyConsentStateFlag\": \"N\",\n            \"timezone\": \"\",\n            \"minNoOfCallerIds\": null,\n            \"maxNoOfCallerIds\": null,\n            \"noOfCallsAllowed\": null,\n            \"noOfCallerIdsAllowed\": null\n        },\n        {\n            \"id\": 102427,\n            \"countryCode\": \"65\",\n            \"areaCode\": \"8\",\n            \"locationName\": \"Mobile\",\n            \"locationGroupName\": \"Singapore Mobile\",\n            \"tdCallRatePerMinute\": 0.025,\n            \"callerIdGroup\": \"\",\n            \"pdCallRatePerMinute\": 0.025,\n            \"twoPartyConsentStateFlag\": \"N\",\n            \"timezone\": \"\",\n            \"minNoOfCallerIds\": null,\n            \"maxNoOfCallerIds\": null,\n            \"noOfCallsAllowed\": null,\n            \"noOfCallerIdsAllowed\": null\n        },\n        {\n            \"id\": 102428,\n            \"countryCode\": \"65\",\n            \"areaCode\": \"9\",\n            \"locationName\": \"Mobile\",\n            \"locationGroupName\": \"Singapore Mobile\",\n            \"tdCallRatePerMinute\": 0.025,\n            \"callerIdGroup\": \"\",\n            \"pdCallRatePerMinute\": 0.025,\n            \"twoPartyConsentStateFlag\": \"N\",\n            \"timezone\": \"\",\n            \"minNoOfCallerIds\": null,\n            \"maxNoOfCallerIds\": null,\n            \"noOfCallsAllowed\": null,\n            \"noOfCallerIdsAllowed\": null\n        }\n    ]\n}"}],"_postman_id":"deb903fe-001c-4ba0-9f7e-f4fd448970dc"}],"id":"04c34719-0942-457c-8170-e8d53fdff1de","_postman_id":"04c34719-0942-457c-8170-e8d53fdff1de","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Recorded Message","item":[{"name":"Recorded Messages","id":"765bb60b-ebe0-4039-bec7-bf87fb6a5782","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/recordedMessage","description":"<p>List all the dialing sessions schedules based on the date range.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Primary value of the data</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>start time of the schedule</td>\n<td><code>sortable filterable</code></td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>end time of the schedule</td>\n<td><code>sortable filterable</code></td>\n</tr>\n<tr>\n<td>text</td>\n<td>Description of the schedule</td>\n<td></td>\n</tr>\n<tr>\n<td>customer_user_display_name</td>\n<td>name of the user</td>\n<td><code>sortable</code></td>\n</tr>\n<tr>\n<td>customer_account_name</td>\n<td>name of the org</td>\n<td></td>\n</tr>\n<tr>\n<td>subject</td>\n<td>title of the scheddule</td>\n<td></td>\n</tr>\n<tr>\n<td>time_zone</td>\n<td>Time zone of the user</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["recordedMessage"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"aa2b23e4-2f3f-4c25-ae08-c830e86035c7","name":"Recorded Messages","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/recordedMessage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1408,\n            \"messageName\": \"ITG12212022\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 0,\n            \"isVoiceRecordingDone\": true\n        },\n        {\n            \"id\": 1443,\n            \"messageName\": \"Sample Message\",\n            \"messageType\": \"VM\",\n            \"messagePath\": \"/messages/sample\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"Y\",\n            \"duration\": 60,\n            \"sortIndex\": 1,\n            \"vmSubject\": \"Sample VM Subject\",\n            \"vmScript\": \"Sample VM Script\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Sample Template\",\n            \"shareThisTemplateWith\": \"User1\",\n            \"vmConstantTemplateName\": \"Sample Constant Template\"\n        },\n        {\n            \"id\": 1478,\n            \"messageName\": \"New Message 1\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1479,\n            \"messageName\": \"New Message 2\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"sortIndex\": 4,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1480,\n            \"messageName\": \"New Message 2\",\n            \"messageType\": \"VM\",\n            \"messagePath\": \"\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"sortIndex\": 4,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1481,\n            \"messageName\": \"New Message 20\",\n            \"messageType\": \"VM\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"sortIndex\": 5,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1483,\n            \"messageName\": \"New Message 47\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"Y\",\n            \"duration\": 74,\n            \"sortIndex\": 2,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 7,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"765bb60b-ebe0-4039-bec7-bf87fb6a5782"},{"name":"Recorded Message By Id","id":"01aed9a9-f1f5-426f-b4b0-46505d5ecf2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/recordedMessage","description":"<p>List all the dialing sessions schedules based on the date range.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Primary value of the data</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>start time of the schedule</td>\n<td><code>sortable filterable</code></td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>end time of the schedule</td>\n<td><code>sortable filterable</code></td>\n</tr>\n<tr>\n<td>text</td>\n<td>Description of the schedule</td>\n<td></td>\n</tr>\n<tr>\n<td>customer_user_display_name</td>\n<td>name of the user</td>\n<td><code>sortable</code></td>\n</tr>\n<tr>\n<td>customer_account_name</td>\n<td>name of the org</td>\n<td></td>\n</tr>\n<tr>\n<td>subject</td>\n<td>title of the scheddule</td>\n<td></td>\n</tr>\n<tr>\n<td>time_zone</td>\n<td>Time zone of the user</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["recordedMessage"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"9cc91e1e-a6c6-4a3d-b5eb-9c64d7f8c1d3","name":"Recorded Messages","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/recordedMessage/1408"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1408,\n            \"messageName\": \"ITG12212022\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 0,\n            \"isVoiceRecordingDone\": true\n        }\n    ]\n}"}],"_postman_id":"01aed9a9-f1f5-426f-b4b0-46505d5ecf2c"},{"name":"Update Recorded Messages","id":"47247de4-0987-4bed-bc01-bf06aa35a2b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n        {\r\n            \"id\": 1408,\r\n            \"messageName\": \"ITG12212022\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 0,\r\n            \"isVoiceRecordingDone\": true\r\n        },\r\n        {\r\n            \"id\": 1443,\r\n            \"messageName\": \"Sample Message\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/messages/sample\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 1,\r\n            \"vmSubject\": \"Sample VM Subject\",\r\n            \"vmScript\": \"Sample VM Script\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Sample Template\",\r\n            \"shareThisTemplateWith\": \"User1\",\r\n            \"vmConstantTemplateName\": \"Sample Constant Template\"\r\n        },\r\n        {\r\n            \"id\": 1478,\r\n            \"messageName\": \"New Message 1\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1479,\r\n            \"messageName\": \"New Message 2\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 4,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1480,\r\n            \"messageName\": \"New Message 2\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 4,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1481,\r\n            \"messageName\": \"New Message 20\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 5,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1483,\r\n            \"messageName\": \"New Message 47\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 74,\r\n            \"sortIndex\": 2,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        }\r\n    ]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage","description":"<p>Update dialing session schedule</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["recordedMessage"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"acfbbafa-f5e0-4c4b-97a7-5fe837e72790","name":"Update Recorded Message","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n        {\r\n            \"id\": 1408,\r\n            \"messageName\": \"ITG12212022\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 0,\r\n            \"isVoiceRecordingDone\": true\r\n        },\r\n        {\r\n            \"id\": 1443,\r\n            \"messageName\": \"Sample Message\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/messages/sample\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 1,\r\n            \"vmSubject\": \"Sample VM Subject\",\r\n            \"vmScript\": \"Sample VM Script\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Sample Template\",\r\n            \"shareThisTemplateWith\": \"User1\",\r\n            \"vmConstantTemplateName\": \"Sample Constant Template\"\r\n        },\r\n        {\r\n            \"id\": 1478,\r\n            \"messageName\": \"New Message 1\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1479,\r\n            \"messageName\": \"New Message 2\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 4,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1480,\r\n            \"messageName\": \"New Message 2\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 4,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1481,\r\n            \"messageName\": \"New Message 20\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 5,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1483,\r\n            \"messageName\": \"New Message 47\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 74,\r\n            \"sortIndex\": 2,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        }\r\n    ]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 1408,\r\n            \"messageName\": \"ITG12212022\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 0,\r\n            \"isVoiceRecordingDone\": true\r\n        },\r\n        {\r\n            \"id\": 1443,\r\n            \"messageName\": \"Sample Message\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/messages/sample\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 1,\r\n            \"vmSubject\": \"Sample VM Subject\",\r\n            \"vmScript\": \"Sample VM Script\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Sample Template\",\r\n            \"shareThisTemplateWith\": \"User1\",\r\n            \"vmConstantTemplateName\": \"Sample Constant Template\"\r\n        },\r\n        {\r\n            \"id\": 1478,\r\n            \"messageName\": \"New Message 1\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1479,\r\n            \"messageName\": \"New Message 2\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 4,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1480,\r\n            \"messageName\": \"New Message 2\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 4,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1481,\r\n            \"messageName\": \"New Message 20\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 5,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1483,\r\n            \"messageName\": \"New Message 47\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 74,\r\n            \"sortIndex\": 2,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"47247de4-0987-4bed-bc01-bf06aa35a2b9"},{"name":"Recorded Message","id":"e0055002-40ea-4bd6-85a0-bcc358cae6ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\"startDate\":\"2022-09-29 08:30:00\",\r\n\"endDate\":\"2022-09-29 09:30:00\",\r\n\"cancellationTime\":0,\r\n\"talkerId\":10958,\r\n\"eventId\":950}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules","description":"<p>Delete Schedule</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["schedules"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"4b42b0ab-6db3-4e48-90a1-1b5cc31946e3","name":"Schedule","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage/1443"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"e0055002-40ea-4bd6-85a0-bcc358cae6ba"},{"name":"Start Recording","id":"6b324db2-1796-48ae-9233-4a9120cf29c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"messageType\": \"VM\",\r\n    \"messageName\": \"Test1235\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage/start","description":"<p>To start recording the voice message or initial greeting message.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["recordedMessage","start"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"fd4c8b98-2c8e-43c6-8621-7b9bf57204b5","name":"Start Recording","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"messageType\": \"VM\",\r\n    \"messageName\": \"Test1235\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage/start"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"6b324db2-1796-48ae-9233-4a9120cf29c8"},{"name":"End Recording","id":"5d174104-7ef2-47da-8f32-bd22e505ae43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/recordedMessage/end","description":"<p>To end the current recording message.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["recordedMessage","end"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"e32419ff-06c7-4d44-beb1-14cc941db0b4","name":"End Recording","originalRequest":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/recordedMessage/end"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"duration\": \"1.020000\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"5d174104-7ef2-47da-8f32-bd22e505ae43"},{"name":"Play Recording","id":"8764588e-0ff6-40ab-b2d3-9f03297ac652","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/recordedMessage/play/:id","description":"<p>To play the voicemail / initial greeting messages.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["recordedMessage","play",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"6815a6dd-6448-436a-a680-26337406ea4c","type":"any","value":"recordedMessage Id","key":"id"}]}},"response":[{"id":"251189ed-9571-455d-8815-fede87a193a6","name":"Play Recording","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/recordedMessage/play/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["recordedMessage","play",":id"],"variable":[{"key":"id","value":"recordedMessage Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"},{"id":"93d547c9-5e22-4f67-862b-fcc84a2e5603","name":"Play Recording by Name","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"messageType\": \"VM\",\r\n    \"messageName\": \"Test1235\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage/play"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"8764588e-0ff6-40ab-b2d3-9f03297ac652"},{"name":"Save Recording","id":"096e824d-3397-47fb-a875-34160e3a564f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"messageType\": \"VM\",\r\n    \"messageName\": \"Test1235\",\r\n    \"duration\":10\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage","description":"<p>To save the recording message.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["recordedMessage"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"b883fbc8-53d5-40fe-a427-44b461287607","name":"Save Recording","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"messageType\": \"VM\",\r\n    \"messageName\": \"Test1235\",\r\n    \"duration\":10\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"096e824d-3397-47fb-a875-34160e3a564f"}],"id":"5dc98b14-d122-485d-ba34-7153ef277573","description":"<p>Schedule the dialing session for AAD customers.</p>\n","_postman_id":"5dc98b14-d122-485d-ba34-7153ef277573","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"RemoteCoach","item":[{"name":"Audit Trail","id":"e158910f-d7e5-4e88-8d5c-8a95d9e5da15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/remoteCoach/auditTrail?filter[eventCreatedBy]=7424&filter[startDate]=2021-07-01T00:00:00Z&filter[endDate]=2021-07-30T23:59:50Z&sort[eventCreatedBy]=asc&sort[eventDatetime]=asc&sort[eventDescription]=asc&page[limit]=500&page[offset]=3","description":"<p>View call recording permission changes for remotecoach module</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Primary key value</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>eventAction  <br /><code>String</code></td>\n<td>Action of the events</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>eventDescription  <br /><code>String</code></td>\n<td>Description of the changes</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>eventDatetime  <br /><code>timestamp</code></td>\n<td>Date time of the event</td>\n<td><code>Filterable Sortable</code></td>\n</tr>\n<tr>\n<td>eventActionOnUser  <br />Integer []</td>\n<td>Actions on the users</td>\n<td><code>IncludeAssociations</code></td>\n</tr>\n<tr>\n<td>oldValue  <br /><code>String</code></td>\n<td>Old value of the user permission</td>\n<td></td>\n</tr>\n<tr>\n<td>newValue  <br /><code>String</code></td>\n<td>new value of the user permission</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","auditTrail"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"filter[eventCreatedBy]","value":"7424"},{"key":"filter[startDate]","value":"2021-07-01T00:00:00Z"},{"key":"filter[endDate]","value":"2021-07-30T23:59:50Z"},{"key":"sort[eventCreatedBy]","value":"asc"},{"key":"sort[eventDatetime]","value":"asc"},{"key":"sort[eventDescription]","value":"asc"},{"key":"page[limit]","value":"500"},{"key":"page[offset]","value":"3"}],"variable":[]}},"response":[{"id":"730bbb97-866f-4f16-9a5b-da336d2242e2","name":"Audit Trail","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/remoteCoach/auditTrail?filter[eventCreatedBy]=7424&filter[startDate]=2021-07-01T00:00:00Z&filter[endDate]=2021-07-30T23:59:50Z&sort[eventCreatedBy]=asc&sort[eventDatetime]=asc&sort[eventDescription]=asc&page[limit]=500&page[offset]=3","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["remoteCoach","auditTrail"],"query":[{"key":"filter[eventCreatedBy]","value":"7424"},{"key":"filter[startDate]","value":"2021-07-01T00:00:00Z"},{"key":"filter[endDate]","value":"2021-07-30T23:59:50Z"},{"key":"sort[eventCreatedBy]","value":"asc"},{"key":"sort[eventDatetime]","value":"asc"},{"key":"sort[eventDescription]","value":"asc"},{"key":"page[limit]","value":"500"},{"key":"page[offset]","value":"3"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 6664,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T11:24:29Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6665,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T11:24:30Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6666,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:25:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6667,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:25:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6668,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-01T11:25:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6669,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T11:25:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6670,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T11:25:52Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6671,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:27:56Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6672,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:27:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6673,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:27:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6677,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:40:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6678,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:40:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6679,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:41:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6680,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:41:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6681,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:41:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6682,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:41:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6683,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T11:50:40Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6686,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:09:44Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6687,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:09:44Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6688,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:09:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6689,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:11:06Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6690,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:11:14Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6691,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:11:14Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6692,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:11:22Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6695,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:38Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6696,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:42Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6697,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6698,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6699,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6700,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6701,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6702,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6703,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:26:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6704,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6705,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6706,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:01Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6707,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:04Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6708,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:06Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6709,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:06Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6710,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:08Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6711,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:09Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6712,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6713,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:34:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6715,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:38:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6718,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:41:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6719,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:41:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6720,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-01T12:42:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6721,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:42:41Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6722,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:42:41Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6723,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-01T12:42:47Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6725,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T12:45:30Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6726,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-01T12:45:32Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6727,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T12:46:40Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6728,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T12:48:18Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6731,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:07:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6732,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:07:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6733,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:07:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6734,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:07:41Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6735,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:07:41Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6736,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:07:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6737,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:07:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6738,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:08:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6739,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:08:22Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6740,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:20:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6741,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:20:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6742,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:20:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6743,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:20:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6761,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:56:40Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6762,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:56:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6763,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:56:48Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6764,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:56:48Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6765,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:56:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6766,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T13:56:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6767,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T13:57:56Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6768,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T13:58:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6769,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-01T13:59:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6770,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T13:59:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6771,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T13:59:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6772,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:02:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6773,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:02:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6774,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:02:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6775,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:02:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6776,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:08Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6777,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:08Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6778,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6779,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6780,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:13Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6781,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:13Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6782,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:14Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6783,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:14Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6784,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6785,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6786,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:18Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6787,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:19Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6788,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:21Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6789,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:21Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6790,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:23Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6791,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:03:23Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6792,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:06:24Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6793,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:06:24Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6794,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:06:26Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6795,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:06:26Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6796,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:07:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6797,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:07:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6798,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T14:13:18Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6799,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T14:13:27Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6800,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T14:13:32Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6801,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-01T14:13:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6802,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-01T14:13:35Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6803,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:16:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6804,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:16:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6805,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:16:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6806,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:16:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6807,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:16:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6808,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:16:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6809,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:16:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6810,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:16:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6811,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:20:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6812,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:20:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6813,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:20:47Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6814,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:20:47Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6815,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:20:48Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6816,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:20:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6817,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:28:28Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6818,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:28:29Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6819,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:28:29Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6820,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:28:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6821,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:28:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6822,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:28:34Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6823,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-01T14:28:34Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6839,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T04:44:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6840,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T04:44:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6841,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T04:44:17Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6842,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T04:44:17Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6843,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T04:44:21Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6844,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T04:44:21Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6846,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:06:37Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6847,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:06:38Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6848,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:06:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6849,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:06:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6850,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:06:54Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6851,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:06:54Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6852,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:14:22Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6853,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:14:22Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6854,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:14:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6855,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:14:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6856,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:14:26Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6857,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:14:26Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6858,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:17:04Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6859,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:17:14Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6860,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:29:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6861,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:29:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6862,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:29:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6863,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:29:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6864,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6865,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6866,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6867,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6868,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6869,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6870,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:06Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6871,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6872,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6873,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6874,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6875,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6876,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6877,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:20Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6878,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T05:30:20Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6879,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:24:37Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6880,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:24:37Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6881,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:24:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6882,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:24:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6883,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:25:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6884,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:25:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6885,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:25:18Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6886,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:25:18Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6887,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:47:23Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6888,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:47:23Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6889,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:50:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6890,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:50:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6891,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:50:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6892,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:50:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6893,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T06:50:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6894,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:32:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6895,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:32:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6896,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:32:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6897,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:32:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6899,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:32:24Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6898,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:32:24Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6900,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:32:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6901,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-02T07:34:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6902,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:35:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6903,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:35:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6904,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T07:35:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6905,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T08:50:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6906,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T08:50:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6907,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T08:50:38Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6908,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T08:50:38Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6909,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:24:06Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6910,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:24:06Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6911,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:24:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6912,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:24:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6913,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:24:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6914,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:24:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6915,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:24:14Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6916,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:24:14Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6917,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:30:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6918,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:30:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6919,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:41:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6920,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:41:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6921,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:01Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6922,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:01Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6923,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6924,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6925,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6926,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6927,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6928,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6929,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6930,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6931,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6932,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6933,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:13Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6934,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:42:13Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6935,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:43:42Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6936,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:43:42Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6937,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:43:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6938,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:43:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6939,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:43:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6940,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:43:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6941,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:43:47Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6942,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T09:43:47Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6943,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:04:08Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6944,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:04:08Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6945,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:05:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6946,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:05:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6947,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:05:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6948,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:05:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6949,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:05:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6950,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:05:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6951,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:07:09Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6952,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-02T10:07:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6953,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-02T10:07:13Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6954,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:07:14Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6955,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:07:17Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6956,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:07:17Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6957,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:07:22Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6958,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T10:07:22Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6964,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6965,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6966,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6967,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6968,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6969,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6970,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6971,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6972,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6973,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6974,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6975,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:31:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6977,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-02T11:32:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6978,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:32:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6979,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:32:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6980,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:32:08Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6981,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:32:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 6982,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:32:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7005,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7006,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7007,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:19Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7008,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:19Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7009,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:23Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7010,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:23Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7011,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:24Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7012,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:24Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7013,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:26Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7014,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:26Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7015,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:27Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7016,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:27Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7017,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:29Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7018,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:29Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7019,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:31Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7020,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:31Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7021,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7022,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:35:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7023,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:36:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7024,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:36:10Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7025,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:36:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7026,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-02T11:36:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7101,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:27:54Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7102,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:27:54Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7103,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:28:01Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7104,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:28:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7105,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:41:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7106,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:41:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7107,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:52:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7108,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:52:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7109,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:55:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7110,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T13:55:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7111,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:00:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7112,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:00:52Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7113,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:00:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7114,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:00:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7115,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7116,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:23Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7117,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:24Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7118,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:29Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7119,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:35Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7120,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7121,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7122,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7123,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:48Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7124,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:01:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7125,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:06:35Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7126,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:06:35Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7127,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:06:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7128,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:06:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7129,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:06:44Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7130,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:06:44Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7131,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:06:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7132,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:06:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7133,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:07:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7134,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:07:02Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7135,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:07:06Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7136,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:07:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7137,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:18:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7138,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:18:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7139,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:18:19Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7140,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:18:19Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7141,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:18:27Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7142,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:18:27Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7143,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:20:34Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7144,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:20:34Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7145,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:32:21Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7146,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:32:21Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7147,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:32:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7148,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:32:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7149,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:32:29Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7150,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:32:29Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7151,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:32:32Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7152,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:32:32Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7153,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:44:40Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7154,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:44:40Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7155,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:44:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7157,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:47:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7158,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:47:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7156,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:47:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7159,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:47:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7160,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:47:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7161,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:47:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7162,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:48:01Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7163,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:48:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7164,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:48:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7165,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:48:04Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7166,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:48:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7167,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:48:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7168,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:49:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7169,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:49:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7170,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:49:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7171,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:49:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7172,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:49:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7173,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T14:49:45Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7178,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7176,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7177,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7174,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7175,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:25Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7179,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:28Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7180,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:28Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7181,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:31Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7182,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:31Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7183,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7184,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7185,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:35Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7186,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:35Z\",\r\n            \"eventActionOnUser\": [\r\n                7662\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7662\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7191,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7189,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7190,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7187,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7188,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:39Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7192,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:40Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7193,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:00:40Z\",\r\n            \"eventActionOnUser\": [\r\n                7844\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7198,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:01:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7196,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:01:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7197,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:01:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7194,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:01:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7195,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:01:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7199,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7200,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7203,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7201,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7202,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:07Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7204,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7205,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:12Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7206,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:26Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7207,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:41Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7208,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7209,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:03:46Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7210,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7211,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7214,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7212,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7213,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7215,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7216,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7219,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7217,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7218,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:06:43Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7220,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:17:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7222,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7221,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7228,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7229,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7232,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7230,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7231,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7223,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7224,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7227,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7225,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7226,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7233,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7234,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7237,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7235,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7236,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:16Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7238,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:24Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7239,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:27Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7240,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:41Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7241,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:47Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7242,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:49Z\",\r\n            \"eventActionOnUser\": [\r\n                7424\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7243,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:50Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7244,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7245,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:54Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7246,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7247,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:18:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7248,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:19:00Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7249,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:19:01Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7250,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:19:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7251,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:19:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7254,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:19:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7252,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:19:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7253,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:19:03Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7255,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:29:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7256,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:29:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7259,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:29:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7257,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:29:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7258,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:29:57Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7260,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7261,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7264,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7262,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7263,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:11Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7265,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:20Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7266,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:20Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7269,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:20Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7267,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:20Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7268,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:20Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7270,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:48Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7271,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7272,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:52Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7273,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7274,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:30:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7275,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:31:05Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7276,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:33:51Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7278,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:33:52Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7277,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:33:52Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7279,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:33:53Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7280,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:33:54Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7281,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:33:55Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7282,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:33:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7283,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:33:59Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7284,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:23Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7285,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:28Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7286,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:31Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7287,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:32Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7288,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:32Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7291,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7289,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7290,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:33Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7294,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:34Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7292,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:34Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7293,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:34Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7295,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:35Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7296,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:36Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7297,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:41Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7298,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:42Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7299,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:42Z\",\r\n            \"eventActionOnUser\": [\r\n                7431\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7300,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7301,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7304,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7302,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7303,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:34:58Z\",\r\n            \"eventActionOnUser\": [\r\n                7661\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7305,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:35:15Z\",\r\n            \"eventActionOnUser\": [\r\n                7660\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7311,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:37:09Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7312,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled consent feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:37:09Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"2 party consent\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7315,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to delete call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:37:09Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7313,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to enable/disable call recording\",\r\n            \"eventDatetime\": \"2021-07-04T15:37:09Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7314,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Disabled User permission to view call recordings\",\r\n            \"eventDatetime\": \"2021-07-04T15:37:09Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"Y\",\r\n            \"newValue\": \"N\",\r\n            \"fieldName\": \"Sales Rep permissions\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 7306,\r\n            \"eventAction\": \"UPDATE\",\r\n            \"eventDescription\": \"Enabled call record feature\",\r\n            \"eventDatetime\": \"2021-07-04T15:37:09Z\",\r\n            \"eventActionOnUser\": [\r\n                7432\r\n            ],\r\n            \"additionalDetails\": null,\r\n            \"oldValue\": \"N\",\r\n            \"newValue\": \"Y\",\r\n            \"fieldName\": \"Call recording\",\r\n            \"associations\": {\r\n                \"eventCreatedBy\": {\r\n                    \"id\": 7424\r\n                },\r\n                \"eventActionOnUser\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 2243,\r\n        \"limit\": 500,\r\n        \"offset\": 3\r\n    }\r\n}"}],"_postman_id":"e158910f-d7e5-4e88-8d5c-8a95d9e5da15"},{"name":"Register","id":"8827b46d-af0d-4d16-9726-85a5b183e0b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/remoteCoach/register","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","register"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8827b46d-af0d-4d16-9726-85a5b183e0b6"},{"name":"ListenSession","id":"6d9761eb-1861-4ccb-9ac6-545b5f0d13b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/remoteCoach/listenSession/:talkerId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","listenSession",":talkerId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"30847ac0-2750-4fba-8eba-67b32de536d2","type":"any","value":"10958","key":"talkerId"}]}},"response":[],"_postman_id":"6d9761eb-1861-4ccb-9ac6-545b5f0d13b0"},{"name":"WhisperSession","id":"58889378-a980-40c5-aaa3-1c9a215b67cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/remoteCoach/whisperSession/:talkerId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","whisperSession",":talkerId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"b4762127-9fb1-431b-9561-1d835767340b","type":"any","value":null,"key":"talkerId"}]}},"response":[],"_postman_id":"58889378-a980-40c5-aaa3-1c9a215b67cb"},{"name":"Features","id":"46ddfbfb-5088-4bef-96a7-15edad90f3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"id\":10958,\r\n\"callRecordingEnabledByUser\":\"Y\",\r\n\"callRecordingDisabledForTwoPartyConsent\":\"Y\",\r\n\"callRecordingUserPermission\":\"YNY\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/remoteCoach/feature","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","feature"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"46ddfbfb-5088-4bef-96a7-15edad90f3fa"},{"name":"Session","id":"d38872ec-7beb-4514-9b17-ca82895318c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"salesrepUserId\":10958,\r\n\"productType\":\"fd\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/remoteCoach/session","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","session"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d38872ec-7beb-4514-9b17-ca82895318c9"},{"name":"Session","id":"a9e1fbda-ed4b-4964-a7b9-e59edd67a284","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/remoteCoach/session/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","session",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"d37df1b6-698c-4f27-95bc-339f7100ae7d","type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"a9e1fbda-ed4b-4964-a7b9-e59edd67a284"},{"name":"details","id":"fdc0c3a4-a3c1-46a8-ba8b-1158693a96ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"salesrepId\":10958,\r\n\"accountName\":\"test account\",\r\n\"contactName\":\"test contact\",\r\n\"title\":\"title\",\r\n\"phoneType\":\"phone\",\r\n\"productType\":\"AIFD\",\r\n\"remoteCoachSessionId\":758}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/remoteCoach/details","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","details"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fdc0c3a4-a3c1-46a8-ba8b-1158693a96ed"},{"name":"End Action","id":"273fc5af-3fec-447c-8fe2-8c15ffa757fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"\"salesrepId\":10958,\r\n\"accountName\":\"cali\",\r\n\"contactName\":\"flori\",\r\n\"title\":\"head\",\r\n\"phoneType\":\"phone1\",\r\n\"remoteCoachSessionId\":740}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/remoteCoach/endAction","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","endAction"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"273fc5af-3fec-447c-8fe2-8c15ffa757fd"},{"name":"List","id":"c2088acf-cccd-4308-84c3-dad016467d61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/remoteCoach/list","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach","list"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7d3eb29a-22ea-4492-abcc-adf4318bf3ac","name":"List","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/remoteCoach/list"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"campaignName\": \"David.csv - Nov 01, 2021 04:19 PM\",\r\n            \"talkerName\": \"API Client Admin 12\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"7661\",\r\n            \"campaignId\": \"3063\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"apiclientmanager2\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"7844\",\r\n            \"campaignId\": \"3191\"\r\n        },\r\n        {\r\n            \"campaignName\": \"1500 prospects.csv - Sep 01, 2022 06:06 PM\",\r\n            \"talkerName\": \"API Manager 3\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"7910\",\r\n            \"campaignId\": \"3236\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"Client Vicky\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"10358\",\r\n            \"campaignId\": \"4881\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"hikehike\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"9597\",\r\n            \"campaignId\": \"4109\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"Jerry\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"9595\",\r\n            \"campaignId\": \"4107\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"kathirtest1\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"11264\",\r\n            \"campaignId\": \"5546\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"Laya\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"11053\",\r\n            \"campaignId\": \"5408\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"panther\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"9775\",\r\n            \"campaignId\": \"4195\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"Pinkpanther\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"9593\",\r\n            \"campaignId\": \"4105\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"Rajesh_Dev\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"10306\",\r\n            \"campaignId\": \"4815\"\r\n        },\r\n        {\r\n            \"campaignName\": \"vickyvignesh.csv - Jun 20, 2022 10:58 AM\",\r\n            \"talkerName\": \"Riche\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"10795\",\r\n            \"campaignId\": \"5229\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"Sangaran Kannan\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"10919\",\r\n            \"campaignId\": \"5305\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"tommy\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"9596\",\r\n            \"campaignId\": \"4108\"\r\n        },\r\n        {\r\n            \"campaignName\": \"TATA Industries Ltd.csv - May 02, 2022 02:09 PM\",\r\n            \"talkerName\": \"Vicky's\",\r\n            \"campaignStatus\": \"\",\r\n            \"productType\": \"\",\r\n            \"reqKeyTalkerId\": \"9479\",\r\n            \"campaignId\": \"4094\"\r\n        },\r\n        {\r\n            \"campaignName\": \"only8.csv - Dec 27, 2022 05:39 AM\",\r\n            \"talkerName\": \"API Client Manager\",\r\n            \"campaignStatus\": \"Y\",\r\n            \"productType\": \"PD~Y\",\r\n            \"reqKeyTalkerId\": \"7424\",\r\n            \"campaignId\": \"2910\"\r\n        },\r\n        {\r\n            \"campaignName\": \"yuvaraj1.csv - Aug 04, 2021 04:02 PM\",\r\n            \"talkerName\": \"API Client\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"7431\",\r\n            \"campaignId\": \"2911\"\r\n        },\r\n        {\r\n            \"campaignName\": \"list_junit_L3LNh.csv - Dec 27, 2022 11:23 AM\",\r\n            \"talkerName\": \"API Client Manager 1\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"7660\",\r\n            \"campaignId\": \"3062\"\r\n        },\r\n        {\r\n            \"campaignName\": \"CL Follow Ups (Not due) - Aug 02, 2021 08:03 AM\",\r\n            \"talkerName\": \"apiclientmanager10\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"8276\",\r\n            \"campaignId\": \"3414\"\r\n        },\r\n        {\r\n            \"campaignName\": \"vickyvignesh.csv - Dec 20, 2022 02:23 AM\",\r\n            \"talkerName\": \"API Client User\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"7432\",\r\n            \"campaignId\": \"2912\"\r\n        },\r\n        {\r\n            \"campaignName\": \"junit_test_1667908859270.csv - Nov 14, 2022 03:40 PM\",\r\n            \"talkerName\": \"API Client User 1\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"7662\",\r\n            \"campaignId\": \"3064\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"api client user 11\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"7951\",\r\n            \"campaignId\": \"3267\"\r\n        },\r\n        {\r\n            \"campaignName\": \"Sample100 (2).csv - Sep 05, 2022 05:53 PM\",\r\n            \"talkerName\": \"Manimegalai\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"10958\",\r\n            \"campaignId\": \"5327\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"vb-manager mngr\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"11379\",\r\n            \"campaignId\": \"5599\"\r\n        },\r\n        {\r\n            \"campaignName\": \"\",\r\n            \"talkerName\": \"vb user\",\r\n            \"campaignStatus\": \"N\",\r\n            \"productType\": \"N\",\r\n            \"reqKeyTalkerId\": \"11310\",\r\n            \"campaignId\": \"5564\"\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 26,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"c2088acf-cccd-4308-84c3-dad016467d61"},{"name":"Redis","id":"09b0450a-05a9-4ecd-b252-f3588ac0ea47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/remoteCoach","description":"<p>This request used to get details from redis at the time of live session.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["remoteCoach"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"09b0450a-05a9-4ecd-b252-f3588ac0ea47"}],"id":"7bcb54fb-c4b2-4c89-9aa3-dcd853ddf545","description":"<p>Its used to monitor the users activity with clients and view our calls.</p>\n","_postman_id":"7bcb54fb-c4b2-4c89-9aa3-dcd853ddf545","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Reports","item":[{"name":"Scheduled Reports","item":[{"name":"All Scheduled Reports","id":"518c7d50-6ada-4725-b87a-59368ab8a540","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/report/allScheduledReport","urlObject":{"protocol":"https","path":["report","allScheduledReport"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"2e873820-b9bc-4d04-a440-e9c4a4487771","name":"All Scheduled Reports","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/report/allScheduledReport"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"reportType\": \"TDDR\",\r\n            \"dateRange\": \"Last 1 hour\",\r\n            \"selectedUsers\": \"13859\",\r\n            \"sendReportOn\": \"Tuesday\",\r\n            \"sendReportTo\": \"14223,10199\",\r\n            \"additionalEmails\": \"\",\r\n            \"active\": null,\r\n            \"createdDate\": null,\r\n            \"lastExecutedDate\": null,\r\n            \"sendReportAt\": \"08:30 \",\r\n            \"reportFormat\": \"export_excel\",\r\n            \"individual\": null,\r\n            \"multiple\": \"Y\",\r\n            \"emailDate\": null,\r\n            \"status\": null,\r\n            \"executedStartDate\": null,\r\n            \"skip\": null,\r\n            \"id\": 1180\r\n        },\r\n        {\r\n            \"reportType\": \"TDDR\",\r\n            \"dateRange\": \"Last 1 hour\",\r\n            \"selectedUsers\": \"13859\",\r\n            \"sendReportOn\": \"Monday\",\r\n            \"sendReportTo\": \"14223,10199\",\r\n            \"additionalEmails\": \"\",\r\n            \"active\": null,\r\n            \"createdDate\": null,\r\n            \"lastExecutedDate\": null,\r\n            \"sendReportAt\": \"09:30 \",\r\n            \"reportFormat\": \"export_excel\",\r\n            \"individual\": null,\r\n            \"multiple\": \"Y\",\r\n            \"emailDate\": null,\r\n            \"status\": null,\r\n            \"executedStartDate\": null,\r\n            \"skip\": null,\r\n            \"id\": 1221\r\n        }\r\n    ],\r\n    \"paging\": {\r\n        \"totalCount\": 2,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"518c7d50-6ada-4725-b87a-59368ab8a540"},{"name":"Scheduled Report","id":"bd8be3d2-0005-48c9-96f0-4db07305ca01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/report/allScheduledReport","urlObject":{"protocol":"https","path":["report","allScheduledReport"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"5bcde7b5-fe02-45b4-84e5-a4154ac01034","name":"Scheduled Report","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/report/scheduledReports"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"reportType\": \"TDDR\",\r\n            \"dateRange\": \"Last 1 hour\",\r\n            \"selectedUsers\": \"13859\",\r\n            \"sendReportOn\": \"Tuesday\",\r\n            \"sendReportTo\": \"14223,10199\",\r\n            \"additionalEmails\": \"\",\r\n            \"active\": null,\r\n            \"createdDate\": null,\r\n            \"lastExecutedDate\": null,\r\n            \"sendReportAt\": \"08:30 \",\r\n            \"reportFormat\": \"export_excel\",\r\n            \"individual\": null,\r\n            \"multiple\": \"Y\",\r\n            \"emailDate\": null,\r\n            \"status\": null,\r\n            \"executedStartDate\": null,\r\n            \"skip\": null,\r\n            \"id\": 1180\r\n        }\r\n    ]\r\n}"}],"_postman_id":"bd8be3d2-0005-48c9-96f0-4db07305ca01"},{"name":"Create Scheduled Report","id":"634b7b84-f051-4f3c-a708-1623cd138fa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/report","urlObject":{"protocol":"https","path":["report"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7bb8fcc1-a1b3-4edc-b4a0-4a56080133cc","name":"Create Scheduled Report","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n            \"reportType\": \"TDDR\",\r\n            \"dateRange\": \"Last 1 hour\",\r\n            \"selectedUsers\": \"13859\",\r\n            \"sendReportOn\": \"Tuesday\",\r\n            \"sendReportTo\": \"14223,10199\",\r\n            \"additionalEmails\": \"\",\r\n            \"active\": null,\r\n            \"createdDate\": null,\r\n            \"lastExecutedDate\": null,\r\n            \"sendReportAt\": \"08:30 \",\r\n            \"reportFormat\": \"export_excel\",\r\n            \"individual\": null,\r\n            \"multiple\": \"Y\",\r\n            \"emailDate\": null,\r\n            \"status\": null,\r\n            \"executedStartDate\": null,\r\n            \"skip\": null\r\n        }","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/report"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"634b7b84-f051-4f3c-a708-1623cd138fa7"},{"name":"Delete Scheduled Report","id":"44739620-3f7d-4504-8e69-7a3d7697b3ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/report/allScheduledReport","urlObject":{"protocol":"https","path":["report","allScheduledReport"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"b661274a-f9f4-463d-89fd-5a75c6a6b8f5","name":"Delete Scheduled Report","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/report/scheduledReport/:{id}","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["report","scheduledReport",":{id}"],"variable":[{"key":"{id}","value":null,"description":"Scheduled Report Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"44739620-3f7d-4504-8e69-7a3d7697b3ed"}],"id":"b836724c-2478-496a-9f27-33dab3d6c5d3","_postman_id":"b836724c-2478-496a-9f27-33dab3d6c5d3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"4ac70841-adab-4061-8f82-891b36ef3dd5","id":"4ac70841-adab-4061-8f82-891b36ef3dd5","name":"Reports","type":"folder"}}},{"name":"Report Columns","item":[{"name":"Get Report Columns","id":"8c95a0f3-e2e8-4c35-9a6e-2e93f6404561","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/report/reportColumns","urlObject":{"protocol":"https","path":["report","reportColumns"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"a9d8e9e2-4f7b-455c-8af4-629a36a7ab7a","name":"Get Report Columns","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/report/reportColumns?reportType=SLISR","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["report","reportColumns"],"query":[{"key":"reportType","value":"SLISR","description":"Report type"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"availableColumns\": [\r\n        {\r\n            \"displayName\": \"# Calls\",\r\n            \"fieldName\": \"totalCalls\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Duration\",\r\n            \"fieldName\": \"callDuration\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Duration (In Units)\",\r\n            \"fieldName\": \"callDurationInUnits\"\r\n        },\r\n        {\r\n            \"displayName\": \"Phone Bridge Location\",\r\n            \"fieldName\": \"phoneBridgeLocation\"\r\n        },\r\n        {\r\n            \"displayName\": \"Rate/Minute\",\r\n            \"fieldName\": \"tdCallRatePerMinute\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Cost\",\r\n            \"fieldName\": \"totalCallCost\"\r\n        },\r\n        {\r\n            \"displayName\": \"Location\",\r\n            \"fieldName\": \"locationGroupName\"\r\n        },\r\n        {\r\n            \"displayName\": \"Destination\",\r\n            \"fieldName\": \"locationGroupName\"\r\n        }\r\n    ],\r\n    \"selectedColumns\": [\r\n        {\r\n            \"displayName\": \"# Calls\",\r\n            \"fieldName\": \"totalCalls\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Duration\",\r\n            \"fieldName\": \"callDuration\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Duration (In Units)\",\r\n            \"fieldName\": \"callDurationInUnits\"\r\n        },\r\n        {\r\n            \"displayName\": \"Phone Bridge Location\",\r\n            \"fieldName\": \"phoneBridgeLocation\"\r\n        },\r\n        {\r\n            \"displayName\": \"Rate/Minute\",\r\n            \"fieldName\": \"tdCallRatePerMinute\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Cost\",\r\n            \"fieldName\": \"totalCallCost\"\r\n        }\r\n    ],\r\n    \"response\": \"success\"\r\n}"},{"id":"5aa6d6fb-324b-46da-91ba-d41a7c7f4c82","name":"Get Report Columns","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/reportColumns?reportType=SLDACDR","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["reportColumns"],"query":[{"key":"reportType","value":"SLDACDR","description":"Report Type"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"availableColumns\": [\r\n        {\r\n            \"displayName\": \"User\",\r\n            \"fieldName\": \"repName\"\r\n        },\r\n        {\r\n            \"displayName\": \"List Name\",\r\n            \"fieldName\": \"listNames\"\r\n        },\r\n        {\r\n            \"displayName\": \"Session Date\",\r\n            \"fieldName\": \"sessionDate\"\r\n        },\r\n        {\r\n            \"displayName\": \"Start Time\",\r\n            \"fieldName\": \"callStartTime\"\r\n        },\r\n        {\r\n            \"displayName\": \"End Time\",\r\n            \"fieldName\": \"callEndTime\"\r\n        },\r\n        {\r\n            \"displayName\": \"Account Name\",\r\n            \"fieldName\": \"accountName\"\r\n        },\r\n        {\r\n            \"displayName\": \"Contact Name\",\r\n            \"fieldName\": \"contactName\"\r\n        },\r\n        {\r\n            \"displayName\": \"Dialed Phone\",\r\n            \"fieldName\": \"dialedPhoneNumber\"\r\n        },\r\n        {\r\n            \"displayName\": \"Dialed Phone Type\",\r\n            \"fieldName\": \"phoneType\"\r\n        },\r\n        {\r\n            \"displayName\": \"Phone Number\",\r\n            \"fieldName\": \"phoneNumber\"\r\n        },\r\n        {\r\n            \"displayName\": \"Title\",\r\n            \"fieldName\": \"title\"\r\n        },\r\n        {\r\n            \"displayName\": \"Email\",\r\n            \"fieldName\": \"emailId\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Result\",\r\n            \"fieldName\": \"callDisposition\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Comments\",\r\n            \"fieldName\": \"callComments\"\r\n        },\r\n        {\r\n            \"displayName\": \"Duration (In Units)\",\r\n            \"fieldName\": \"callDurationInUnits\"\r\n        },\r\n        {\r\n            \"displayName\": \"Duration\",\r\n            \"fieldName\": \"connectDuration\"\r\n        },\r\n        {\r\n            \"displayName\": \"URL\",\r\n            \"fieldName\": \"url\"\r\n        },\r\n        {\r\n            \"displayName\": \"CRM ID\",\r\n            \"fieldName\": \"crmId\"\r\n        },\r\n        {\r\n            \"displayName\": \"Cadence\",\r\n            \"fieldName\": \"cadencename\"\r\n        },\r\n        {\r\n            \"displayName\": \"Sub Outcome\",\r\n            \"fieldName\": \"subOutcome\"\r\n        },\r\n        {\r\n            \"displayName\": \"Caller ID\",\r\n            \"fieldName\": \"callerId\"\r\n        },\r\n        {\r\n            \"displayName\": \"Caller ID\",\r\n            \"fieldName\": \"callerId\"\r\n        }\r\n    ],\r\n    \"selectedColumns\": [\r\n        {\r\n            \"displayName\": \"User\",\r\n            \"fieldName\": \"repName\"\r\n        },\r\n        {\r\n            \"displayName\": \"List Name\",\r\n            \"fieldName\": \"listNames\"\r\n        },\r\n        {\r\n            \"displayName\": \"Session Date\",\r\n            \"fieldName\": \"sessionDate\"\r\n        },\r\n        {\r\n            \"displayName\": \"Start Time\",\r\n            \"fieldName\": \"callStartTime\"\r\n        },\r\n        {\r\n            \"displayName\": \"End Time\",\r\n            \"fieldName\": \"callEndTime\"\r\n        },\r\n        {\r\n            \"displayName\": \"Account Name\",\r\n            \"fieldName\": \"accountName\"\r\n        },\r\n        {\r\n            \"displayName\": \"Contact Name\",\r\n            \"fieldName\": \"contactName\"\r\n        },\r\n        {\r\n            \"displayName\": \"Dialed Phone\",\r\n            \"fieldName\": \"dialedPhoneNumber\"\r\n        },\r\n        {\r\n            \"displayName\": \"Dialed Phone Type\",\r\n            \"fieldName\": \"phoneType\"\r\n        },\r\n        {\r\n            \"displayName\": \"Phone Number\",\r\n            \"fieldName\": \"phoneNumber\"\r\n        },\r\n        {\r\n            \"displayName\": \"Title\",\r\n            \"fieldName\": \"title\"\r\n        },\r\n        {\r\n            \"displayName\": \"Email\",\r\n            \"fieldName\": \"emailId\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Result\",\r\n            \"fieldName\": \"callDisposition\"\r\n        },\r\n        {\r\n            \"displayName\": \"Call Comments\",\r\n            \"fieldName\": \"callComments\"\r\n        },\r\n        {\r\n            \"displayName\": \"Duration (In Units)\",\r\n            \"fieldName\": \"callDurationInUnits\"\r\n        },\r\n        {\r\n            \"displayName\": \"Duration\",\r\n            \"fieldName\": \"connectDuration\"\r\n        },\r\n        {\r\n            \"displayName\": \"URL\",\r\n            \"fieldName\": \"url\"\r\n        },\r\n        {\r\n            \"displayName\": \"CRM ID\",\r\n            \"fieldName\": \"crmId\"\r\n        },\r\n        {\r\n            \"displayName\": \"Cadence\",\r\n            \"fieldName\": \"cadencename\"\r\n        },\r\n        {\r\n            \"displayName\": \"Sub Outcome\",\r\n            \"fieldName\": \"subOutcome\"\r\n        },\r\n        {\r\n            \"displayName\": \"Caller ID\",\r\n            \"fieldName\": \"callerId\"\r\n        },\r\n        {\r\n            \"displayName\": \"Caller ID\",\r\n            \"fieldName\": \"callerId\"\r\n        }\r\n    ],\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"8c95a0f3-e2e8-4c35-9a6e-2e93f6404561"},{"name":"Update Report Columns","id":"71051269-b6ea-421f-895a-f654537e7b1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"displayName\": \"User\",\r\n        \"fieldName\": \"talkerName\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 1\r\n    },\r\n    {\r\n        \"displayName\": \"# Session Hours\",\r\n        \"fieldName\": \"sessionHours\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 2\r\n    },\r\n    {\r\n        \"displayName\": \"# Dials\",\r\n        \"fieldName\": \"totalDials\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 3\r\n    },\r\n    {\r\n        \"displayName\": \"# Connects\",\r\n        \"fieldName\": \"totalConnects\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 4\r\n    },\r\n    {\r\n        \"displayName\": \"# Conversations\",\r\n        \"fieldName\": \"validConnectColumn\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 5\r\n    },\r\n    {\r\n        \"displayName\": \"# Positive Conversations\",\r\n        \"fieldName\": \"positiveConnects\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 6\r\n    },\r\n    {\r\n        \"displayName\": \"# Meetings\",\r\n        \"fieldName\": \"meetingCount\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 7\r\n    },\r\n    {\r\n        \"displayName\": \"# Dials to Conversations\",\r\n        \"fieldName\": \"dialsToConversations\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 8\r\n    },\r\n    {\r\n        \"displayName\": \"Product Type\",\r\n        \"fieldName\": \"productId\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 9\r\n    },\r\n    {\r\n        \"displayName\": \"# Connects to Meetings\",\r\n        \"fieldName\": \"connectsToMeetings\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 10\r\n    },\r\n    {\r\n        \"displayName\": \"# Dials Per Hour (Dial Time)\",\r\n        \"fieldName\": \"dialsPerHourProduct\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 11\r\n    },\r\n    {\r\n        \"displayName\": \"# Dials to Meetings\",\r\n        \"fieldName\": \"dialsToMeetings\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 12\r\n    },\r\n    {\r\n        \"displayName\": \"# Referrals\",\r\n        \"fieldName\": \"referralCount\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 13\r\n    },\r\n    {\r\n        \"displayName\": \"# Followups\",\r\n        \"fieldName\": \"followUpCount\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 14\r\n    },\r\n    {\r\n        \"displayName\": \"# Bad Data\",\r\n        \"fieldName\": \"badData\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 15\r\n    },\r\n    {\r\n        \"displayName\": \"Positive Conversations %\",\r\n        \"fieldName\": \"percentPositiveConnects\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 16\r\n    },\r\n    {\r\n        \"displayName\": \"Meetings %\",\r\n        \"fieldName\": \"meetingCountPerce\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 17\r\n    },\r\n    {\r\n        \"displayName\": \"# Hold Time\",\r\n        \"fieldName\": \"totalHoldDuration\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 18\r\n    },\r\n    {\r\n        \"displayName\": \"# Wrap Time\",\r\n        \"fieldName\": \"totalWrapDuration\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 19\r\n    },\r\n    {\r\n        \"displayName\": \"Callbacks\",\r\n        \"fieldName\": \"inboundCall\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 20\r\n    },\r\n    {\r\n        \"displayName\": \"Connects to Contacts\",\r\n        \"fieldName\": \"connectsToContacts\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 21\r\n    },\r\n    {\r\n        \"displayName\": \"Dials to Connect\",\r\n        \"fieldName\": \"dialsToConnect\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 22\r\n    },\r\n    {\r\n        \"displayName\": \"Dials to Connect%\",\r\n        \"fieldName\": \"dialsToConnectPercent\",\r\n        \"activeFlag\": \"N\",\r\n        \"orderValue\": 23\r\n    },\r\n    {\r\n        \"displayName\": \"Connects to Contacts%\",\r\n        \"fieldName\": \"connectsToContactsPercent\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 24\r\n    },\r\n    {\r\n        \"displayName\": \"Connects to Conversation\",\r\n        \"fieldName\": \"connectsToConversation\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 25\r\n    },\r\n    {\r\n        \"displayName\": \"Connects to Conversation%\",\r\n        \"fieldName\": \"connectsToConversationPercent\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 26\r\n    },\r\n    {\r\n        \"displayName\": \"Talk Time\",\r\n        \"fieldName\": \"totalConnectDuration\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 27\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/report/reportColumns","urlObject":{"protocol":"https","path":["report","reportColumns"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"ed290f8e-0167-4375-b2e0-05f46002ead1","name":"Update Report Columns","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"displayName\": \"User\",\r\n        \"fieldName\": \"talkerName\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 1\r\n    },\r\n    {\r\n        \"displayName\": \"# Session Hours\",\r\n        \"fieldName\": \"sessionHours\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 2\r\n    },\r\n    {\r\n        \"displayName\": \"# Dials\",\r\n        \"fieldName\": \"totalDials\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 3\r\n    },\r\n    {\r\n        \"displayName\": \"# Connects\",\r\n        \"fieldName\": \"totalConnects\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 4\r\n    },\r\n    {\r\n        \"displayName\": \"# Conversations\",\r\n        \"fieldName\": \"validConnectColumn\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 5\r\n    },\r\n    {\r\n        \"displayName\": \"# Positive Conversations\",\r\n        \"fieldName\": \"positiveConnects\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 6\r\n    },\r\n    {\r\n        \"displayName\": \"# Meetings\",\r\n        \"fieldName\": \"meetingCount\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 7\r\n    },\r\n    {\r\n        \"displayName\": \"# Dials to Conversations\",\r\n        \"fieldName\": \"dialsToConversations\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 8\r\n    },\r\n    {\r\n        \"displayName\": \"Product Type\",\r\n        \"fieldName\": \"productId\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 9\r\n    },\r\n    {\r\n        \"displayName\": \"# Connects to Meetings\",\r\n        \"fieldName\": \"connectsToMeetings\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 10\r\n    },\r\n    {\r\n        \"displayName\": \"# Dials Per Hour (Dial Time)\",\r\n        \"fieldName\": \"dialsPerHourProduct\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 11\r\n    },\r\n    {\r\n        \"displayName\": \"# Dials to Meetings\",\r\n        \"fieldName\": \"dialsToMeetings\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 12\r\n    },\r\n    {\r\n        \"displayName\": \"# Referrals\",\r\n        \"fieldName\": \"referralCount\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 13\r\n    },\r\n    {\r\n        \"displayName\": \"# Followups\",\r\n        \"fieldName\": \"followUpCount\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 14\r\n    },\r\n    {\r\n        \"displayName\": \"# Bad Data\",\r\n        \"fieldName\": \"badData\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 15\r\n    },\r\n    {\r\n        \"displayName\": \"Positive Conversations %\",\r\n        \"fieldName\": \"percentPositiveConnects\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 16\r\n    },\r\n    {\r\n        \"displayName\": \"Meetings %\",\r\n        \"fieldName\": \"meetingCountPerce\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 17\r\n    },\r\n    {\r\n        \"displayName\": \"# Hold Time\",\r\n        \"fieldName\": \"totalHoldDuration\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 18\r\n    },\r\n    {\r\n        \"displayName\": \"# Wrap Time\",\r\n        \"fieldName\": \"totalWrapDuration\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 19\r\n    },\r\n    {\r\n        \"displayName\": \"Callbacks\",\r\n        \"fieldName\": \"inboundCall\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 20\r\n    },\r\n    {\r\n        \"displayName\": \"Connects to Contacts\",\r\n        \"fieldName\": \"connectsToContacts\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 21\r\n    },\r\n    {\r\n        \"displayName\": \"Dials to Connect\",\r\n        \"fieldName\": \"dialsToConnect\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 22\r\n    },\r\n    {\r\n        \"displayName\": \"Dials to Connect%\",\r\n        \"fieldName\": \"dialsToConnectPercent\",\r\n        \"activeFlag\": \"N\",\r\n        \"orderValue\": 23\r\n    },\r\n    {\r\n        \"displayName\": \"Connects to Contacts%\",\r\n        \"fieldName\": \"connectsToContactsPercent\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 24\r\n    },\r\n    {\r\n        \"displayName\": \"Connects to Conversation\",\r\n        \"fieldName\": \"connectsToConversation\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 25\r\n    },\r\n    {\r\n        \"displayName\": \"Connects to Conversation%\",\r\n        \"fieldName\": \"connectsToConversationPercent\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 26\r\n    },\r\n    {\r\n        \"displayName\": \"Talk Time\",\r\n        \"fieldName\": \"totalConnectDuration\",\r\n        \"activeFlag\": \"Y\",\r\n        \"orderValue\": 27\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/report/reportColumns?reportType=EXER","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["report","reportColumns"],"query":[{"key":"reportType","value":"EXER"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"responseState\": \"Cutomize report columns setting saved successfully\",\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"71051269-b6ea-421f-895a-f654537e7b1f"}],"id":"148856e1-484b-4d04-8109-2fbf853db3e9","_postman_id":"148856e1-484b-4d04-8109-2fbf853db3e9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"4ac70841-adab-4061-8f82-891b36ef3dd5","id":"4ac70841-adab-4061-8f82-891b36ef3dd5","name":"Reports","type":"folder"}}},{"name":"Reports","id":"813f97b1-7344-4ee3-bd65-4e7829c1b223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/reports","description":"<p>To get the report data based on the selected report type and other filters.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"4ac70841-adab-4061-8f82-891b36ef3dd5","id":"4ac70841-adab-4061-8f82-891b36ef3dd5","name":"Reports","type":"folder"}},"urlObject":{"protocol":"https","path":["reports"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"b9d792db-e7d1-4cf0-933d-3ec2bb303bb6","name":"All Dials","originalRequest":{"method":"GET","header":[{"key":"X-Koncert-API-Key","value":"eGhv5RzKdSldq5EyB74y2Yd88K5TFgjRb7rpu3XCGwI","type":"text"}],"url":{"raw":"https://{{koncert_dialers_api}}/reports?productType=AIDSL&reportType=ALCLSR&reportName=all_calls&logicalVariable=Last%20Quarter&startDate=7/1/2024&endDate=9/30/2024&userIds=24047,24081,24079,24074,24313&callDispositionIds=0&dataListIds=&requestDataType=","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["reports"],"query":[{"key":"productType","value":"AIDSL"},{"key":"reportType","value":"ALCLSR"},{"key":"reportName","value":"all_calls"},{"key":"logicalVariable","value":"Last%20Quarter"},{"key":"startDate","value":"7/1/2024"},{"key":"endDate","value":"9/30/2024"},{"key":"userIds","value":"24047,24081,24079,24074,24313"},{"key":"callDispositionIds","value":"0"},{"key":"dataListIds","value":""},{"key":"requestDataType","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"calls_made\": {\r\n                \"response\": \"success\",\r\n                \"data\": [\r\n                    {\r\n                        \"actualCount\": 3,\r\n                        \"rowId\": 42609,\r\n                        \"talkerId\": 24047,\r\n                        \"sessionDate\": \"09/27/2024\",\r\n                        \"accountName\": \"Testing Group\",\r\n                        \"contactName\": \"AIFD refferal\",\r\n                        \"title\": \"-\",\r\n                        \"listname\": \"manager Hotel List (1).csv\",\r\n                        \"callDisposition\": \"\",\r\n                        \"connectDuration\": \"00:04\",\r\n                        \"phoneType\": \"Phone\",\r\n                        \"phoneNumber\": \"+16039522500\",\r\n                        \"repName\": \"Admin\",\r\n                        \"productType\": \"AIDSL\",\r\n                        \"recordType\": \"Contact\",\r\n                        \"listCrmName\": \"\",\r\n                        \"activityId\": \"\",\r\n                        \"crmId\": \"crmgenkey_85460858-363b-3d74-8351-126b9bf2ba59\",\r\n                        \"callDispositionEdit\": \"Y\",\r\n                        \"voiceRecording\": \"?rt=gcr&crid=DA885348B17DDF5100C4B125F1A6794BF8F7C5284BF3B534DF3F1D197A3F868A9A2B2E983B3B30CFD067650888B31E7FE2752D86C713A086\",\r\n                        \"callComments\": \"-\",\r\n                        \"callStartTime\": \"3:41 AM\",\r\n                        \"callEndTime\": \"3:45 AM\",\r\n                        \"referralRecord\": true,\r\n                        \"callerId\": \"+18478071840\",\r\n                        \"isDoubleTap\": false,\r\n                        \"isCallRecordingExist\": true,\r\n                        \"callerIdDisplay\": \"Mapped Area-Based IDs\",\r\n                        \"emailId\": \"-\",\r\n                        \"isCommentsExist\": false\r\n                    },\r\n                    {\r\n                        \"actualCount\": 3,\r\n                        \"rowId\": 42716,\r\n                        \"talkerId\": 24074,\r\n                        \"sessionDate\": \"09/27/2024\",\r\n                        \"accountName\": \"Reliance industries Ltd\",\r\n                        \"contactName\": \"Cater\",\r\n                        \"title\": \"Computer\",\r\n                        \"listname\": \"Reliance Industries Ltd.csv\",\r\n                        \"callDisposition\": \"\",\r\n                        \"connectDuration\": \"00:20\",\r\n                        \"phoneType\": \"Phone\",\r\n                        \"phoneNumber\": \"+16039522500\",\r\n                        \"repName\": \"User\",\r\n                        \"productType\": \"AIDSL\",\r\n                        \"recordType\": \"\",\r\n                        \"listCrmName\": \"\",\r\n                        \"activityId\": \"\",\r\n                        \"crmId\": \"crmgenkey_7c0207a5-3615-3414-943d-6274d0c20fc1\",\r\n                        \"callDispositionEdit\": \"Y\",\r\n                        \"voiceRecording\": \"?rt=gcr&crid=446D5EEE3B4F713F0567CB40FD437F4DFCAEDA20721C5DE731B7C6A0F8F147A491710498B8510014D067650888B31E7FE2752D86C713A086\",\r\n                        \"callComments\": \"-\",\r\n                        \"callStartTime\": \"8:19 AM\",\r\n                        \"callEndTime\": \"8:39 AM\",\r\n                        \"referralRecord\": false,\r\n                        \"callerId\": \"+17206139259\",\r\n                        \"isDoubleTap\": false,\r\n                        \"isCallRecordingExist\": true,\r\n                        \"callerIdDisplay\": \"Mapped Area-Based IDs\",\r\n                        \"emailId\": \"truecadence111@gmail.com\",\r\n                        \"isCommentsExist\": false\r\n                    },\r\n                    {\r\n                        \"actualCount\": 3,\r\n                        \"rowId\": 42717,\r\n                        \"talkerId\": 24074,\r\n                        \"sessionDate\": \"09/27/2024\",\r\n                        \"accountName\": \"Reliance industries Ltd\",\r\n                        \"contactName\": \"Cold\",\r\n                        \"title\": \"Computer\",\r\n                        \"listname\": \"Reliance Industries Ltd.csv\",\r\n                        \"callDisposition\": \"\",\r\n                        \"connectDuration\": \"00:00\",\r\n                        \"phoneType\": \"Phone\",\r\n                        \"phoneNumber\": \"+16039522500\",\r\n                        \"repName\": \"User\",\r\n                        \"productType\": \"AIDSL\",\r\n                        \"recordType\": \"\",\r\n                        \"listCrmName\": \"\",\r\n                        \"activityId\": \"\",\r\n                        \"crmId\": \"crmgenkey_64e6d727-2673-30ce-8a66-789a0953b2ed\",\r\n                        \"callDispositionEdit\": \"Y\",\r\n                        \"voiceRecording\": \"?rt=gcr&crid=5F2A0A8CDED0F0194E0FE663AA04D02E324CA941ED400D87F3B58BB36659E02FABF6904569AC0930D067650888B31E7FE2752D86C713A086\",\r\n                        \"callComments\": \"-\",\r\n                        \"callStartTime\": \"8:20 AM\",\r\n                        \"callEndTime\": \"8:20 AM\",\r\n                        \"referralRecord\": false,\r\n                        \"callerId\": \"+19132702604\",\r\n                        \"isDoubleTap\": false,\r\n                        \"isCallRecordingExist\": false,\r\n                        \"callerIdDisplay\": \"Mapped Area-Based IDs\",\r\n                        \"emailId\": \"truecadence110@gmail.com\",\r\n                        \"isCommentsExist\": false\r\n                    }\r\n                ]\r\n            },\r\n            \"connects\": {\r\n                \"response\": \"success\",\r\n                \"data\": [\r\n                    {\r\n                        \"totalConnects\": 96,\r\n                        \"positiveConnects\": 86,\r\n                        \"validConnects\": 96,\r\n                        \"meetingCount\": 47,\r\n                        \"inboundCall\": 0\r\n                    }\r\n                ]\r\n            },\r\n            \"metrics\": {\r\n                \"response\": \"success\",\r\n                \"data\": [\r\n                    {\r\n                        \"dialsDifference\": \"0\",\r\n                        \"connectsDifference\": \"0\",\r\n                        \"conversationDifference\": \"0\",\r\n                        \"positiveDifference\": \"0\",\r\n                        \"meeetingsDifference\": \"0\",\r\n                        \"inboundCallDifference\": \"0\"\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"},{"id":"866e1dc1-4e0c-495d-9e00-8f28d63be09c","name":"Call Session Summary","originalRequest":{"method":"GET","header":[{"key":"X-Koncert-API-Key","value":"eGhv5RzKdSldq5EyB74y2Yd88K5TFgjRb7rpu3XCGwI","type":"text"}],"url":{"raw":"https://{{koncert_dialers_api}}/reports?productType=AIDSL,AIDML,CD&reportType=CSSR&reportName=ALL&logicalVariable=Current%20Week&startDate=11/3/2024&endDate=11/9/2024&userIds=24047,24081,24079,24074,24313&callDispositionIds=&dataListIds=&requestDataType=","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["reports"],"query":[{"key":"productType","value":"AIDSL,AIDML,CD"},{"key":"reportType","value":"CSSR"},{"key":"reportName","value":"ALL"},{"key":"logicalVariable","value":"Current%20Week"},{"key":"startDate","value":"11/3/2024"},{"key":"endDate","value":"11/9/2024"},{"key":"userIds","value":"24047,24081,24079,24074,24313"},{"key":"callDispositionIds","value":""},{"key":"dataListIds","value":""},{"key":"requestDataType","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"calls_made\": {\n                \"response\": \"success\",\n                \"data\": [\n                    {\n                        \"talkerId\": 24047,\n                        \"talkerName\": \"Admin\",\n                        \"totalDials\": \"4\",\n                        \"totalConnects\": \"4\",\n                        \"positiveConnects\": \"4\",\n                        \"validConnects\": \"4\",\n                        \"validConnectColumn\": \"4\",\n                        \"meetingCount\": \"2\",\n                        \"inboundCall\": 0,\n                        \"dialsToConversations\": 1,\n                        \"dialsToConnectPercent\": \"100\",\n                        \"conversationsToMeetingPercent\": \"100\",\n                        \"dialsToValidConnectPercent\": \"100\",\n                        \"connectsToMeetingPercent\": \"100\",\n                        \"conversationsToPositiveConnectPercent\": \"100\",\n                        \"sessionHoursInFloat\": \"0.0091\",\n                        \"summaryConnectDuration\": \"0.0041\",\n                        \"summaryDialDuration\": \"0.00333333333333333\",\n                        \"sessionHoursAvg\": \"00:00:33\",\n                        \"totalConnectDurationAvg\": \"00:00:15\",\n                        \"totalDialDurationAvg\": \"00:00:12\"\n                    }\n                ]\n            },\n            \"connects\": {\n                \"response\": \"success\",\n                \"data\": [\n                    {\n                        \"totalDials\": \"4\",\n                        \"totalConnects\": \"4\",\n                        \"positiveConnects\": \"4\",\n                        \"validConnects\": \"4\",\n                        \"meetingCount\": \"2\",\n                        \"inboundCall\": 0\n                    }\n                ]\n            },\n            \"metrics\": {\n                \"response\": \"success\",\n                \"data\": [\n                    {\n                        \"dialsDifference\": \"0\",\n                        \"connectsDifference\": \"0\",\n                        \"conversationDifference\": \"0\",\n                        \"positiveDifference\": \"0\",\n                        \"meeetingsDifference\": \"0\",\n                        \"inboundCallDifference\": \"0\"\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"acaff826-ec9f-4fe1-bb29-15302129eabf","name":"List Performance","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/reports?productType=AIDSL,AIDML,TD,CD&reportType=LPCR&reportName=Koncert%20-%20List%20Performance%20Report&logicalVariable=Current%20Quarter&startDate=10/1/2024&endDate=12/31/2024&userIds=24047,24081,24079,24074,24313&callDispositionIds=&dataListIds=&requestDataType=","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["reports"],"query":[{"key":"productType","value":"AIDSL,AIDML,TD,CD"},{"key":"reportType","value":"LPCR"},{"key":"reportName","value":"Koncert%20-%20List%20Performance%20Report"},{"key":"logicalVariable","value":"Current%20Quarter"},{"key":"startDate","value":"10/1/2024"},{"key":"endDate","value":"12/31/2024"},{"key":"userIds","value":"24047,24081,24079,24074,24313"},{"key":"callDispositionIds","value":""},{"key":"dataListIds","value":""},{"key":"requestDataType","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"listNames\": \"100 Prospects (1).csv\",\r\n            \"listname\": \"100 Prospects (1).csv\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"00:11:23\",\r\n            \"dials\": 0,\r\n            \"totalDials\": 0,\r\n            \"connects\": 0,\r\n            \"totalConnects\": 0,\r\n            \"positiveConnectsAvg\": 0,\r\n            \"contactAttemptCount\": 0,\r\n            \"validConnects\": 0,\r\n            \"meetingCount\": 0,\r\n            \"followUpCount\": 0,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:00:00\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:00:00\",\r\n            \"totalWrapDurationAvg\": \"00:00:00\",\r\n            \"totalDialDurationAvg\": \"00:11:23\",\r\n            \"sessionHoursInFloat\": \"0.1897\",\r\n            \"summaryConnectDuration\": \"0.0000\",\r\n            \"summaryWrapDuration\": \"0.0000\",\r\n            \"summaryHoldDuration\": \"0.0000\",\r\n            \"validConnectColumn\": 0,\r\n            \"summaryDialDuration\": \"0.189722222222222\",\r\n            \"higherConnectTime\": \"6 AM (EDT)\",\r\n            \"dialsToConversations\": 0,\r\n            \"dialsToConnects\": 0,\r\n            \"dialsToValidConnects\": 0,\r\n            \"positiveConnects\": 0,\r\n            \"dialsToConnectPercent\": \"0\",\r\n            \"dialsToValidConnectPercent\": \"0\",\r\n            \"dialsToMeetingPercent\": \"0\",\r\n            \"connectsToMeetingPercent\": \"0\",\r\n            \"positiveConversationPercent\": \"0\",\r\n            \"positiveConnectPercent\": \"0\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"0\",\r\n            \"conversationToMeetingPercent\": \"0\",\r\n            \"conversationsToPositiveConnectPercent\": \"0\"\r\n        },\r\n        {\r\n            \"listNames\": \"1500 Prospect Lists (1).csv\",\r\n            \"listname\": \"1500 Prospect Lists (1).csv\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"00:07:24\",\r\n            \"dials\": 33,\r\n            \"totalDials\": 33,\r\n            \"connects\": 0,\r\n            \"totalConnects\": 0,\r\n            \"positiveConnectsAvg\": 0,\r\n            \"contactAttemptCount\": 20,\r\n            \"validConnects\": 0,\r\n            \"meetingCount\": 0,\r\n            \"followUpCount\": 0,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:00:00\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:00:01\",\r\n            \"totalWrapDurationAvg\": \"00:00:00\",\r\n            \"totalDialDurationAvg\": \"00:07:23\",\r\n            \"sessionHoursInFloat\": \"0.1234\",\r\n            \"summaryConnectDuration\": \"0.0000\",\r\n            \"summaryWrapDuration\": \"0.0000\",\r\n            \"summaryHoldDuration\": \"0.0003\",\r\n            \"validConnectColumn\": 0,\r\n            \"summaryDialDuration\": \"0.123055555555556\",\r\n            \"higherConnectTime\": \"9 AM (EDT)\",\r\n            \"dialsToConversations\": 0,\r\n            \"dialsToConnects\": 0,\r\n            \"dialsToValidConnects\": 0,\r\n            \"positiveConnects\": 0,\r\n            \"dialsToConnectPercent\": \"0\",\r\n            \"dialsToValidConnectPercent\": \"0\",\r\n            \"dialsToMeetingPercent\": \"0\",\r\n            \"connectsToMeetingPercent\": \"0\",\r\n            \"positiveConversationPercent\": \"0\",\r\n            \"positiveConnectPercent\": \"0\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"0\",\r\n            \"conversationToMeetingPercent\": \"0\",\r\n            \"conversationsToPositiveConnectPercent\": \"0\"\r\n        },\r\n        {\r\n            \"listNames\": \"AIFD.csv\",\r\n            \"listname\": \"AIFD.csv\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"00:00:15\",\r\n            \"dials\": 1,\r\n            \"totalDials\": 1,\r\n            \"connects\": 0,\r\n            \"totalConnects\": 0,\r\n            \"positiveConnectsAvg\": 0,\r\n            \"contactAttemptCount\": 1,\r\n            \"validConnects\": 0,\r\n            \"meetingCount\": 0,\r\n            \"followUpCount\": 0,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:00:00\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:00:00\",\r\n            \"totalWrapDurationAvg\": \"00:00:00\",\r\n            \"totalDialDurationAvg\": \"00:00:15\",\r\n            \"sessionHoursInFloat\": \"0.0042\",\r\n            \"summaryConnectDuration\": \"0.0000\",\r\n            \"summaryWrapDuration\": \"0.0000\",\r\n            \"summaryHoldDuration\": \"0.0000\",\r\n            \"validConnectColumn\": 0,\r\n            \"summaryDialDuration\": \"0.00416666666666667\",\r\n            \"higherConnectTime\": \"4 AM (EDT)\",\r\n            \"dialsToConversations\": 0,\r\n            \"dialsToConnects\": 0,\r\n            \"dialsToValidConnects\": 0,\r\n            \"positiveConnects\": 0,\r\n            \"dialsToConnectPercent\": \"0\",\r\n            \"dialsToValidConnectPercent\": \"0\",\r\n            \"dialsToMeetingPercent\": \"0\",\r\n            \"connectsToMeetingPercent\": \"0\",\r\n            \"positiveConversationPercent\": \"0\",\r\n            \"positiveConnectPercent\": \"0\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"0\",\r\n            \"conversationToMeetingPercent\": \"0\",\r\n            \"conversationsToPositiveConnectPercent\": \"0\"\r\n        },\r\n        {\r\n            \"listNames\": \"Anish US Hotel List.csv\",\r\n            \"listname\": \"Anish US Hotel List.csv\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"01:29:14\",\r\n            \"dials\": 109,\r\n            \"totalDials\": 109,\r\n            \"connects\": 34,\r\n            \"totalConnects\": 34,\r\n            \"positiveConnectsAvg\": 26,\r\n            \"contactAttemptCount\": 58,\r\n            \"validConnects\": 30,\r\n            \"meetingCount\": 20,\r\n            \"followUpCount\": 2,\r\n            \"referralCount\": 2,\r\n            \"totalConnectDurationAvg\": \"00:04:15\",\r\n            \"totalSessionDuration\": \"00:00:11\",\r\n            \"totalHoldDurationAvg\": \"00:04:22\",\r\n            \"totalWrapDurationAvg\": \"00:01:46\",\r\n            \"totalDialDurationAvg\": \"01:19:02\",\r\n            \"sessionHoursInFloat\": \"1.4870\",\r\n            \"summaryConnectDuration\": \"0.0707\",\r\n            \"summaryWrapDuration\": \"0.0294\",\r\n            \"summaryHoldDuration\": \"0.0729\",\r\n            \"validConnectColumn\": 30,\r\n            \"summaryDialDuration\": \"1.31722222222222\",\r\n            \"higherConnectTime\": \"3 AM (EDT)\",\r\n            \"dialsToConversations\": 3,\r\n            \"dialsToConnects\": 3,\r\n            \"dialsToValidConnects\": 3,\r\n            \"positiveConnects\": 26,\r\n            \"dialsToConnectPercent\": \"31\",\r\n            \"dialsToValidConnectPercent\": \"28\",\r\n            \"dialsToMeetingPercent\": \"0\",\r\n            \"connectsToMeetingPercent\": \"100\",\r\n            \"positiveConversationPercent\": \"87\",\r\n            \"positiveConnectPercent\": \"76\",\r\n            \"referralPercent\": \"2\",\r\n            \"dialsToPositivePercent\": \"24\",\r\n            \"conversationToMeetingPercent\": \"100\",\r\n            \"conversationsToPositiveConnectPercent\": \"87\"\r\n        },\r\n        {\r\n            \"listNames\": \"Cadence\",\r\n            \"listname\": \"Cadence\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"00:49:37\",\r\n            \"dials\": 133,\r\n            \"totalDials\": 133,\r\n            \"connects\": 41,\r\n            \"totalConnects\": 41,\r\n            \"positiveConnectsAvg\": 27,\r\n            \"contactAttemptCount\": 91,\r\n            \"validConnects\": 39,\r\n            \"meetingCount\": 17,\r\n            \"followUpCount\": 5,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:04:23\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:01:24\",\r\n            \"totalWrapDurationAvg\": \"00:01:39\",\r\n            \"totalDialDurationAvg\": \"00:42:11\",\r\n            \"sessionHoursInFloat\": \"0.8271\",\r\n            \"summaryConnectDuration\": \"0.0732\",\r\n            \"summaryWrapDuration\": \"0.0275\",\r\n            \"summaryHoldDuration\": \"0.0232\",\r\n            \"validConnectColumn\": 39,\r\n            \"summaryDialDuration\": \"0.703055555555556\",\r\n            \"higherConnectTime\": \"9 AM (EDT)\",\r\n            \"dialsToConversations\": 3,\r\n            \"dialsToConnects\": 3,\r\n            \"dialsToValidConnects\": 3,\r\n            \"positiveConnects\": 27,\r\n            \"dialsToConnectPercent\": \"31\",\r\n            \"dialsToValidConnectPercent\": \"29\",\r\n            \"dialsToMeetingPercent\": \"0\",\r\n            \"connectsToMeetingPercent\": \"0\",\r\n            \"positiveConversationPercent\": \"69\",\r\n            \"positiveConnectPercent\": \"66\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"20\",\r\n            \"conversationToMeetingPercent\": \"0\",\r\n            \"conversationsToPositiveConnectPercent\": \"69\"\r\n        },\r\n        {\r\n            \"listNames\": \"Cadence - My Pending Calls\",\r\n            \"listname\": \"Cadence - My Pending Calls\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"00:29:21\",\r\n            \"dials\": 68,\r\n            \"totalDials\": 68,\r\n            \"connects\": 7,\r\n            \"totalConnects\": 7,\r\n            \"positiveConnectsAvg\": 4,\r\n            \"contactAttemptCount\": 45,\r\n            \"validConnects\": 6,\r\n            \"meetingCount\": 3,\r\n            \"followUpCount\": 1,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:00:27\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:04:03\",\r\n            \"totalWrapDurationAvg\": \"00:00:16\",\r\n            \"totalDialDurationAvg\": \"00:24:35\",\r\n            \"sessionHoursInFloat\": \"0.4891\",\r\n            \"summaryConnectDuration\": \"0.0075\",\r\n            \"summaryWrapDuration\": \"0.0044\",\r\n            \"summaryHoldDuration\": \"0.0674\",\r\n            \"validConnectColumn\": 6,\r\n            \"summaryDialDuration\": \"0.409722222222222\",\r\n            \"higherConnectTime\": \"7 AM (EDT)\",\r\n            \"dialsToConversations\": 11,\r\n            \"dialsToConnects\": 9,\r\n            \"dialsToValidConnects\": 9,\r\n            \"positiveConnects\": 4,\r\n            \"dialsToConnectPercent\": \"10\",\r\n            \"dialsToValidConnectPercent\": \"9\",\r\n            \"dialsToMeetingPercent\": \"0\",\r\n            \"connectsToMeetingPercent\": \"0\",\r\n            \"positiveConversationPercent\": \"67\",\r\n            \"positiveConnectPercent\": \"57\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"6\",\r\n            \"conversationToMeetingPercent\": \"100\",\r\n            \"conversationsToPositiveConnectPercent\": \"67\"\r\n        },\r\n        {\r\n            \"listNames\": \"Cadence - New cadence\",\r\n            \"listname\": \"Cadence - New cadence\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"00:00:17\",\r\n            \"dials\": 2,\r\n            \"totalDials\": 2,\r\n            \"connects\": 2,\r\n            \"totalConnects\": 2,\r\n            \"positiveConnectsAvg\": 2,\r\n            \"contactAttemptCount\": 2,\r\n            \"validConnects\": 2,\r\n            \"meetingCount\": 1,\r\n            \"followUpCount\": 1,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:00:08\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:00:00\",\r\n            \"totalWrapDurationAvg\": \"00:00:03\",\r\n            \"totalDialDurationAvg\": \"00:00:06\",\r\n            \"sessionHoursInFloat\": \"0.0047\",\r\n            \"summaryConnectDuration\": \"0.0022\",\r\n            \"summaryWrapDuration\": \"0.0008\",\r\n            \"summaryHoldDuration\": \"0.0000\",\r\n            \"validConnectColumn\": 2,\r\n            \"summaryDialDuration\": \"0.00166666666666667\",\r\n            \"higherConnectTime\": \"4 AM (EDT)\",\r\n            \"dialsToConversations\": 1,\r\n            \"dialsToConnects\": 1,\r\n            \"dialsToValidConnects\": 1,\r\n            \"positiveConnects\": 2,\r\n            \"dialsToConnectPercent\": \"100\",\r\n            \"dialsToValidConnectPercent\": \"100\",\r\n            \"dialsToMeetingPercent\": \"100\",\r\n            \"connectsToMeetingPercent\": \"100\",\r\n            \"positiveConversationPercent\": \"100\",\r\n            \"positiveConnectPercent\": \"100\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"100\",\r\n            \"conversationToMeetingPercent\": \"100\",\r\n            \"conversationsToPositiveConnectPercent\": \"100\"\r\n        },\r\n        {\r\n            \"listNames\": \"Merge feature\",\r\n            \"listname\": \"Merge feature\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"00:01:56\",\r\n            \"dials\": 2,\r\n            \"totalDials\": 2,\r\n            \"connects\": 0,\r\n            \"totalConnects\": 0,\r\n            \"positiveConnectsAvg\": 0,\r\n            \"contactAttemptCount\": 2,\r\n            \"validConnects\": 0,\r\n            \"meetingCount\": 0,\r\n            \"followUpCount\": 0,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:00:00\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:00:00\",\r\n            \"totalWrapDurationAvg\": \"00:00:00\",\r\n            \"totalDialDurationAvg\": \"00:01:56\",\r\n            \"sessionHoursInFloat\": \"0.0322\",\r\n            \"summaryConnectDuration\": \"0.0000\",\r\n            \"summaryWrapDuration\": \"0.0000\",\r\n            \"summaryHoldDuration\": \"0.0000\",\r\n            \"validConnectColumn\": 0,\r\n            \"summaryDialDuration\": \"0.0322222222222222\",\r\n            \"higherConnectTime\": \"6 AM (EDT)\",\r\n            \"dialsToConversations\": 0,\r\n            \"dialsToConnects\": 0,\r\n            \"dialsToValidConnects\": 0,\r\n            \"positiveConnects\": 0,\r\n            \"dialsToConnectPercent\": \"0\",\r\n            \"dialsToValidConnectPercent\": \"0\",\r\n            \"dialsToMeetingPercent\": \"0\",\r\n            \"connectsToMeetingPercent\": \"0\",\r\n            \"positiveConversationPercent\": \"0\",\r\n            \"positiveConnectPercent\": \"0\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"0\",\r\n            \"conversationToMeetingPercent\": \"0\",\r\n            \"conversationsToPositiveConnectPercent\": \"0\"\r\n        },\r\n        {\r\n            \"listNames\": \"Reliance Industries Ltd(1).csv\",\r\n            \"listname\": \"Reliance Industries Ltd(1).csv\",\r\n            \"userName\": \"Admin\",\r\n            \"sessionHoursAvg\": \"00:17:16\",\r\n            \"dials\": 4,\r\n            \"totalDials\": 4,\r\n            \"connects\": 4,\r\n            \"totalConnects\": 4,\r\n            \"positiveConnectsAvg\": 4,\r\n            \"contactAttemptCount\": 4,\r\n            \"validConnects\": 4,\r\n            \"meetingCount\": 3,\r\n            \"followUpCount\": 1,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:00:29\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:02:09\",\r\n            \"totalWrapDurationAvg\": \"00:09:01\",\r\n            \"totalDialDurationAvg\": \"00:05:37\",\r\n            \"sessionHoursInFloat\": \"0.2878\",\r\n            \"summaryConnectDuration\": \"0.0080\",\r\n            \"summaryWrapDuration\": \"0.1503\",\r\n            \"summaryHoldDuration\": \"0.0359\",\r\n            \"validConnectColumn\": 4,\r\n            \"summaryDialDuration\": \"0.0936111111111111\",\r\n            \"higherConnectTime\": \"9 AM (EDT)\",\r\n            \"dialsToConversations\": 1,\r\n            \"dialsToConnects\": 1,\r\n            \"dialsToValidConnects\": 1,\r\n            \"positiveConnects\": 4,\r\n            \"dialsToConnectPercent\": \"100\",\r\n            \"dialsToValidConnectPercent\": \"100\",\r\n            \"dialsToMeetingPercent\": \"100\",\r\n            \"connectsToMeetingPercent\": \"100\",\r\n            \"positiveConversationPercent\": \"100\",\r\n            \"positiveConnectPercent\": \"100\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"100\",\r\n            \"conversationToMeetingPercent\": \"100\",\r\n            \"conversationsToPositiveConnectPercent\": \"100\"\r\n        },\r\n        {\r\n            \"listNames\": \"Reliance Industries Ltd.csv\",\r\n            \"listname\": \"Reliance Industries Ltd.csv\",\r\n            \"userName\": \"User\",\r\n            \"sessionHoursAvg\": \"00:00:16\",\r\n            \"dials\": 1,\r\n            \"totalDials\": 1,\r\n            \"connects\": 1,\r\n            \"totalConnects\": 1,\r\n            \"positiveConnectsAvg\": 1,\r\n            \"contactAttemptCount\": 1,\r\n            \"validConnects\": 1,\r\n            \"meetingCount\": 1,\r\n            \"followUpCount\": 0,\r\n            \"referralCount\": 0,\r\n            \"totalConnectDurationAvg\": \"00:00:05\",\r\n            \"totalSessionDuration\": \"00:00:00\",\r\n            \"totalHoldDurationAvg\": \"00:00:00\",\r\n            \"totalWrapDurationAvg\": \"00:00:01\",\r\n            \"totalDialDurationAvg\": \"00:00:10\",\r\n            \"sessionHoursInFloat\": \"0.0045\",\r\n            \"summaryConnectDuration\": \"0.0014\",\r\n            \"summaryWrapDuration\": \"0.0003\",\r\n            \"summaryHoldDuration\": \"0.0000\",\r\n            \"validConnectColumn\": 1,\r\n            \"summaryDialDuration\": \"0.00277777777777778\",\r\n            \"higherConnectTime\": \"8 AM (EDT)\",\r\n            \"dialsToConversations\": 1,\r\n            \"dialsToConnects\": 1,\r\n            \"dialsToValidConnects\": 1,\r\n            \"positiveConnects\": 1,\r\n            \"dialsToConnectPercent\": \"100\",\r\n            \"dialsToValidConnectPercent\": \"100\",\r\n            \"dialsToMeetingPercent\": \"100\",\r\n            \"connectsToMeetingPercent\": \"100\",\r\n            \"positiveConversationPercent\": \"100\",\r\n            \"positiveConnectPercent\": \"100\",\r\n            \"referralPercent\": \"0\",\r\n            \"dialsToPositivePercent\": \"100\",\r\n            \"conversationToMeetingPercent\": \"100\",\r\n            \"conversationsToPositiveConnectPercent\": \"100\"\r\n        }\r\n    ]\r\n}"},{"id":"b8300127-7093-4b01-aece-fbd0642d7fd8","name":"AIFD - Executive report","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/reports?requestDataType=&startDate=01/10/2022&endDate=12/31/2022&userIds=11936,11504,11271,11501&dataListIds=&reportType=SLEXR&callDispositionIds=","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["reports"],"query":[{"key":"requestDataType","value":""},{"key":"startDate","value":"01/10/2022"},{"key":"endDate","value":"12/31/2022"},{"key":"userIds","value":"11936,11504,11271,11501"},{"key":"dataListIds","value":""},{"key":"reportType","value":"SLEXR"},{"key":"callDispositionIds","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"talkerId\": 11271,\n            \"user\": \"bb vv\",\n            \"sessionHours\": \"00:34:04\",\n            \"dials\": 62,\n            \"connects\": 0,\n            \"contactAttemptCount\": 0,\n            \"positiveConnects\": 0,\n            \"validConnects\": 0,\n            \"validConnectColumn\": 0,\n            \"connectsPerHour\": 0,\n            \"connectsPerHourSessionTime\": 0,\n            \"totalConnectDuration\": \"00:00:00\",\n            \"totalHoldDuration\": \"00:26:11\",\n            \"totalDialDuration\": \"00:00:00\",\n            \"totalWrapDuration\": \"00:00:00\",\n            \"totalProblems\": 0,\n            \"tdTalkerErrorCount\": 0,\n            \"tdDaErrorCount\": 0,\n            \"summaryConnectDuration\": \"0\",\n            \"summaryDialDuration\": \"0.0000\",\n            \"summaryWrapDuration\": \"0.0000\",\n            \"summaryHoldDuration\": \"0.4364\",\n            \"validConnectColumnAdj\": 0,\n            \"d2c\": \"\",\n            \"sessionHoursInFloat\": \"0.5679\",\n            \"meetingCount\": 0,\n            \"cd1\": 0,\n            \"cd2\": 0,\n            \"cd3\": 0,\n            \"cd4\": 0,\n            \"cd5\": 0,\n            \"cd23\": 0\n        }\n    ]\n}"}],"_postman_id":"813f97b1-7344-4ee3-bd65-4e7829c1b223"},{"name":"List of Reports","id":"fa9665eb-94fc-4c6e-80bf-6615a0a0d269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/report","urlObject":{"protocol":"https","path":["report"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"ef632258-caf0-47a9-a4e2-fe8ee79fd86d","name":"List Reports","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/report?filter[user][id]=24047&page[limit]=500&productType=TD&productType=CD&productType=PD&productType=ML&productType=SL&productType=TC","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["report"],"query":[{"key":"filter[user][id]","value":"24047"},{"key":"page[limit]","value":"500"},{"key":"productType","value":"TD","description":"Product Type"},{"key":"productType","value":"CD"},{"key":"productType","value":"PD"},{"key":"productType","value":"ML"},{"key":"productType","value":"SL"},{"key":"productType","value":"TC"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2247248,\n            \"reportName\": \"Agent Assisted Dialer - Executive Report\",\n            \"reportType\": \"TDEXR\",\n            \"orderValue\": 1,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247249,\n            \"reportName\": \"Agent Assisted Dialer - Weekly Summary Report\",\n            \"reportType\": \"TDWSR\",\n            \"orderValue\": 3,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247250,\n            \"reportName\": \"Agent Assisted Dialer - Talker Call Disposition Report\",\n            \"reportType\": \"TDCDR\",\n            \"orderValue\": 28,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247253,\n            \"reportName\": \"Agent Assisted Dialer - Usage Report\",\n            \"reportType\": \"TDUSR\",\n            \"orderValue\": 30,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247254,\n            \"reportName\": \"Agent Assisted Dialer - International Summary Report\",\n            \"reportType\": \"TDISR\",\n            \"orderValue\": 31,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247255,\n            \"reportName\": \"Agent Assisted Dialer - Connects Report\",\n            \"reportType\": \"TDCR\",\n            \"orderValue\": 32,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247256,\n            \"reportName\": \"Agent Assisted Dialer - Dials Report\",\n            \"reportType\": \"TDDR\",\n            \"orderValue\": 33,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247262,\n            \"reportName\": \"Click Dialer - Executive Report\",\n            \"reportType\": \"CDEXR\",\n            \"orderValue\": 15,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247263,\n            \"reportName\": \"Click Dialer - Weekly Summary Report\",\n            \"reportType\": \"CDWSR\",\n            \"orderValue\": 16,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247264,\n            \"reportName\": \"Click Dialer - Call Disposition Report\",\n            \"reportType\": \"CDCDR\",\n            \"orderValue\": 14,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247265,\n            \"reportName\": \"Click Dialer - Usage Report\",\n            \"reportType\": \"CDUSR\",\n            \"orderValue\": 39,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247257,\n            \"reportName\": \"Flow Dialer - Executive Report\",\n            \"reportType\": \"PDEXR\",\n            \"orderValue\": 34,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247258,\n            \"reportName\": \"Flow Dialer - Weekly Summary Report\",\n            \"reportType\": \"PDWSR\",\n            \"orderValue\": 35,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247259,\n            \"reportName\": \"Flow Dialer - Call Disposition Report\",\n            \"reportType\": \"PDCDR\",\n            \"orderValue\": 36,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247260,\n            \"reportName\": \"Flow Dialer - Usage Report\",\n            \"reportType\": \"PDUSR\",\n            \"orderValue\": 37,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247261,\n            \"reportName\": \"Flow Dialer - International Summary Report\",\n            \"reportType\": \"PDISR\",\n            \"orderValue\": 38,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247285,\n            \"reportName\": \"AI Parallel Dialer - All Calls Report\",\n            \"reportType\": \"MLTKDAR\",\n            \"orderValue\": 6,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247286,\n            \"reportName\": \"AI Parallel Dialer - Talker Call Disposition Report\",\n            \"reportType\": \"MLCDR\",\n            \"orderValue\": 8,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247287,\n            \"reportName\": \"AI Parallel Dialer - Weekly Summary Report\",\n            \"reportType\": \"MLWSR\",\n            \"orderValue\": 9,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247288,\n            \"reportName\": \"AI Parallel Dialer - Executive Report\",\n            \"reportType\": \"MLEXR\",\n            \"orderValue\": 7,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2249133,\n            \"reportName\": \"AIPD - International Summary Report\",\n            \"reportType\": \"MLISR\",\n            \"orderValue\": 10,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247281,\n            \"reportName\": \"AI Flow Dialer - All Calls Report\",\n            \"reportType\": \"SLTKDAR\",\n            \"orderValue\": 2,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247282,\n            \"reportName\": \"AI Flow Dialer - Talker Call Disposition Report\",\n            \"reportType\": \"SLCDR\",\n            \"orderValue\": 4,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247283,\n            \"reportName\": \"AI Flow Dialer - Weekly Summary Report\",\n            \"reportType\": \"SLWSR\",\n            \"orderValue\": 5,\n            \"activeFlag\": \"Y\",\n            \"favourite\": true,\n            \"disposition\": false,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247284,\n            \"reportName\": \"AI Flow Dialer - Executive Report\",\n            \"reportType\": \"SLEXR\",\n            \"orderValue\": 3,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2248749,\n            \"reportName\": \"AIFD - International Summary Report\",\n            \"reportType\": \"SLISR\",\n            \"orderValue\": 1,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247241,\n            \"reportName\": \"Koncert - Executive Report\",\n            \"reportType\": \"EXER\",\n            \"orderValue\": 12,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247242,\n            \"reportName\": \"Koncert - Follow ups Report\",\n            \"reportType\": \"FPUSR\",\n            \"orderValue\": 24,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247243,\n            \"reportName\": \"Koncert - Referral Report\",\n            \"reportType\": \"REFUSR\",\n            \"orderValue\": 25,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247244,\n            \"reportName\": \"Koncert - DNC Report\",\n            \"reportType\": \"DNCR\",\n            \"orderValue\": 11,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247245,\n            \"reportName\": \"Koncert - Usage by Month Report\",\n            \"reportType\": \"UMUMR\",\n            \"orderValue\": 26,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247246,\n            \"reportName\": \"Koncert - Caller ID Audit trail Report\",\n            \"reportType\": \"KCAR\",\n            \"orderValue\": 27,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247247,\n            \"reportName\": \"Koncert - Network Latency Report\",\n            \"reportType\": \"NLR\",\n            \"orderValue\": 15,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247266,\n            \"reportName\": \"Koncert - Cadence Usage Report\",\n            \"reportType\": \"TCR\",\n            \"orderValue\": 40,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247267,\n            \"reportName\": \"Koncert - Cadence Email Metrics Report\",\n            \"reportType\": \"TER\",\n            \"orderValue\": 41,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247268,\n            \"reportName\": \"Koncert - Inbound Leads Detailed  Report\",\n            \"reportType\": \"ILDR\",\n            \"orderValue\": 42,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247269,\n            \"reportName\": \"Koncert - Inbound Leads Summary Report\",\n            \"reportType\": \"ILSR\",\n            \"orderValue\": 43,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247270,\n            \"reportName\": \"Koncert - Inbound Leads User Summary Report\",\n            \"reportType\": \"ILTSR\",\n            \"orderValue\": 44,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247271,\n            \"reportName\": \"Koncert - Data Enrichment Summary Report\",\n            \"reportType\": \"DERSR\",\n            \"orderValue\": 45,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247272,\n            \"reportName\": \"Koncert - Data Enrichment Detail Report\",\n            \"reportType\": \"DERDR\",\n            \"orderValue\": 46,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247273,\n            \"reportName\": \"Koncert - Call Issue Analysis Report\",\n            \"reportType\": \"CIAR\",\n            \"orderValue\": 47,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247274,\n            \"reportName\": \"Koncert - Sales Rep - Connects Performance\",\n            \"reportType\": \"REPCPR\",\n            \"orderValue\": 48,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247275,\n            \"reportName\": \"Koncert - Overall Usage Report\",\n            \"reportType\": \"OUSR\",\n            \"orderValue\": 49,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247276,\n            \"reportName\": \"Koncert - Call Outcomes Report\",\n            \"reportType\": \"COR\",\n            \"orderValue\": 23,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247277,\n            \"reportName\": \"Koncert - List Performance Report\",\n            \"reportType\": \"LPR\",\n            \"orderValue\": 14,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": true,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247278,\n            \"reportName\": \"Koncert - List Audit Trail Report\",\n            \"reportType\": \"LAT\",\n            \"orderValue\": 50,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247279,\n            \"reportName\": \"Koncert - Parking Lot Detailed Report\",\n            \"reportType\": \"PLR\",\n            \"orderValue\": 16,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247280,\n            \"reportName\": \"Koncert - Parking Lot Summary Report\",\n            \"reportType\": \"PLSR\",\n            \"orderValue\": 51,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247289,\n            \"reportName\": \"Koncert - All Calls Report\",\n            \"reportType\": \"ALCLSR\",\n            \"orderValue\": 52,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247290,\n            \"reportName\": \"Koncert - Call Session Summary Report\",\n            \"reportType\": \"CSSR\",\n            \"orderValue\": 53,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2247291,\n            \"reportName\": \"Koncert - List Performance Report\",\n            \"reportType\": \"LPCR\",\n            \"orderValue\": 54,\n            \"activeFlag\": \"N\",\n            \"favourite\": false,\n            \"disposition\": false,\n            \"lists\": false,\n            \"defaultColumns\": null\n        },\n        {\n            \"id\": 2249517,\n            \"reportName\": \"Koncert - International Summary Report\",\n            \"reportType\": \"KISR\",\n            \"orderValue\": 13,\n            \"activeFlag\": \"Y\",\n            \"favourite\": false,\n            \"disposition\": true,\n            \"lists\": true,\n            \"defaultColumns\": null\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 52,\n        \"limit\": 500,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"fa9665eb-94fc-4c6e-80bf-6615a0a0d269"},{"name":"Export","id":"7f92f348-9985-474b-99cc-5e8e56ee612b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"displayName\": \"James Franklin\",\r\n    \"productType\": \"AIDSL,AIDML,CD\",\r\n    \"reportType\": \"CSSR\",\r\n    \"reportName\": \"Call Session Summary Report\",\r\n    \"logicalVariable\": \"Current Quarter\",\r\n    \"startDate\": \"7/1/2025\",\r\n    \"endDate\": \"9/30/2025\",\r\n    \"dateRange\": \"7/1/2025 - 9/30/2025\",\r\n    \"selectedUserIds\": \"20179,16252,14654,16483,14525,14651\",\r\n    \"callDisposition\": \"\",\r\n    \"listName\": \"\",\r\n    \"outType\": \"export_excel\",\r\n    \"callDuration\": 0,\r\n    \"metrics\": \"ALL\",\r\n    \"dispositionType\": \"\",\r\n    \"searchKey\": \"\",\r\n    \"groupName\": \"\",\r\n    \"customEndDate\": \"\",\r\n    \"customStartDate\": \"\",\r\n    \"phoneTypes\": \"\",\r\n    \"flagCall\": \"all\",\r\n    \"coachingNotes\": \"all\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/report/export","description":"<p>To export the report.</p>\n<p>Get the signed key using this API and access the public url to download the report in excel/csv format.</p>\n<p>Output Format : Inputstream</p>\n","urlObject":{"protocol":"https","path":["sign","report","export"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"4f1460e3-d76d-43ba-84ef-f010a7112193","name":"Export Report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"displayName\": \"James Franklin\",\r\n    \"productType\": \"AIDSL,AIDML,CD\",\r\n    \"reportType\": \"CSSR\",\r\n    \"reportName\": \"Call Session Summary Report\",\r\n    \"logicalVariable\": \"Current Quarter\",\r\n    \"startDate\": \"7/1/2025\",\r\n    \"endDate\": \"9/30/2025\",\r\n    \"dateRange\": \"7/1/2025 - 9/30/2025\",\r\n    \"selectedUserIds\": \"20179,16252,14654,16483,14525,14651\",\r\n    \"callDisposition\": \"\",\r\n    \"listName\": \"\",\r\n    \"outType\": \"export_excel\",\r\n    \"callDuration\": 0,\r\n    \"metrics\": \"ALL\",\r\n    \"dispositionType\": \"\",\r\n    \"searchKey\": \"\",\r\n    \"groupName\": \"\",\r\n    \"customEndDate\": \"\",\r\n    \"customStartDate\": \"\",\r\n    \"phoneTypes\": \"\",\r\n    \"flagCall\": \"all\",\r\n    \"coachingNotes\": \"all\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/report/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"key\": \"D9141131A4EBB23D806A342B1DA449B2E4317520FE9CA689C27B0F9B71C621C3B3BD664778727A36A09D7D24237EA8B018D1B1DFF60739AA\",\n            \"na\": \"4408FD89F4A9D7B7CB29F60CD8E7B001955EEB1889E7081D5310DDC316B8A2EC\"\n        }\n    ]\n}"},{"id":"fe3bb0d6-4a55-452c-a8d3-348a0731987f","name":"Download","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n            \r\n            \"listName\": \"\",\r\n            \"callDisposition\":\"\",\r\n            \"selectedUserIds\":\"7424,7686,11504,11936\",\r\n            \"startDate\":\"01/01/2023\",\r\n            \"endDate\":\"03/31/2023\",\r\n            \"logicalVariable\":\"Last Quarter\",\r\n\t\t\t\"dateRange\":\"January 01, 2023 - March 31, 2023\",\r\n\t\t\t\"reportName\":\"Koncert AI Flow Dialer - Executive Report\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/public/report/export/CEDCEDF99BB9BE8DB20F84A17119E6B42A6163E1BB9E52A5DDA19632A9FE91C8358A38E33798C623CF6FBD4298F19B4D7E31B5EA05C10AAC?na=4408FD89F4A9D7B7FA771E56E6AE2BBF955EEB1889E7081D2E25F768AD445D5F","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["public","report","export","CEDCEDF99BB9BE8DB20F84A17119E6B42A6163E1BB9E52A5DDA19632A9FE91C8358A38E33798C623CF6FBD4298F19B4D7E31B5EA05C10AAC"],"query":[{"key":"na","value":"4408FD89F4A9D7B7FA771E56E6AE2BBF955EEB1889E7081D2E25F768AD445D5F"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7f92f348-9985-474b-99cc-5e8e56ee612b"},{"name":"Reports","id":"9d181479-1890-4a79-9683-acb1f52f9013","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/updateReports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"4ac70841-adab-4061-8f82-891b36ef3dd5","id":"4ac70841-adab-4061-8f82-891b36ef3dd5","name":"Reports","type":"folder"}},"urlObject":{"protocol":"https","path":["updateReports"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c8c66a24-8fb9-44f5-bf34-2d3612140f7f","name":"Reports","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"reportType\": \"SLTKDAR\",\r\n        \"orderValue\": 1,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"SLEXR\",\r\n        \"orderValue\": 2,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"SLCDR\",\r\n        \"orderValue\": 3,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"SLWSR\",\r\n        \"orderValue\": 4,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"MLTKDAR\",\r\n        \"orderValue\": 5,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"MLEXR\",\r\n        \"orderValue\": 6,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"MLCDR\",\r\n        \"orderValue\": 7,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"MLWSR\",\r\n        \"orderValue\": 8,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"DNCR\",\r\n        \"orderValue\": 9,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"EXER\",\r\n        \"orderValue\": 10,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"LPR\",\r\n        \"orderValue\": 11,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"PLR\",\r\n        \"orderValue\": 12,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"NLR\",\r\n        \"orderValue\": 13,\r\n        \"activeFlag\": \"Y\"\r\n    },\r\n    {\r\n        \"reportType\": \"QCR\",\r\n        \"orderValue\": 14,\r\n        \"activeFlag\": \"Y\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/updateReports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"responseState\": \"Cutomize reports setting saved successfully\",\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"9d181479-1890-4a79-9683-acb1f52f9013"},{"name":"Day Stats","id":"9f10de52-1719-48ee-bc60-5622384b6bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/reports/dayStats","urlObject":{"protocol":"https","path":["reports","dayStats"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"62892caf-8c71-4b4c-8a8f-3bfd88b7b655","name":"Day Stats","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/reports/dayStats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"totalDials\": 15,\n            \"totalConnects\": 10,\n            \"positiveConnects\": 5,\n            \"validConnects\": 8,\n            \"meetingCount\": 2\n        }\n    ]\n}"}],"_postman_id":"9f10de52-1719-48ee-bc60-5622384b6bbb"},{"name":"Best Day Time Report","id":"e7c07c2b-a4bb-481d-a4d5-80accf5ce052","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/bestDayTime","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"4ac70841-adab-4061-8f82-891b36ef3dd5","id":"4ac70841-adab-4061-8f82-891b36ef3dd5","name":"Reports","type":"folder"}},"urlObject":{"protocol":"https","path":["bestDayTime"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"6ab74886-8e51-4a82-aaa4-3cfb73734ce1","name":"Best Day Time Report","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/bestDayTime?startDate= 5/26/2024&endDate=5/31/2024&productType=AIDSL,AIDML&logicalVariable=Current Week&day=Tuesday&dataListIds=34103&filter[user][id]=7424","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["bestDayTime"],"query":[{"key":"startDate","value":" 5/26/2024"},{"key":"endDate","value":"5/31/2024"},{"key":"productType","value":"AIDSL,AIDML"},{"key":"logicalVariable","value":"Current Week"},{"key":"day","value":"Tuesday"},{"key":"dataListIds","value":"34103"},{"key":"filter[user][id]","value":"7424"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"bestDay\": [\r\n                \"Tuesday\"\r\n            ],\r\n            \"bestTime\": [\r\n                \"09 AM\"\r\n            ],\r\n            \"secondBestTime\": [\r\n                \"07 AM\"\r\n            ],\r\n            \"thirdBestTime\": [\r\n                \"02 AM\"\r\n            ],\r\n            \"dayList\": [\r\n                {\r\n                    \"days\": \"Tuesday\",\r\n                    \"connectRate\": \"10\",\r\n                    \"connectRatio\": \"10\",\r\n                    \"totalDials\": 201,\r\n                    \"totalConnects\": 21,\r\n                    \"dayNumber\": \"2\"\r\n                }\r\n            ],\r\n            \"timeList\": [\r\n                {\r\n                    \"time\": \"09 AM\",\r\n                    \"connectRate\": \"1\",\r\n                    \"connectRatio\": \"100\",\r\n                    \"totalDials\": 1,\r\n                    \"totalConnects\": 1\r\n                },\r\n                {\r\n                    \"time\": \"07 AM\",\r\n                    \"connectRate\": \"1\",\r\n                    \"connectRatio\": \"80\",\r\n                    \"totalDials\": 10,\r\n                    \"totalConnects\": 8\r\n                },\r\n                {\r\n                    \"time\": \"02 AM\",\r\n                    \"connectRate\": \"2\",\r\n                    \"connectRatio\": \"62\",\r\n                    \"totalDials\": 8,\r\n                    \"totalConnects\": 5\r\n                },\r\n                {\r\n                    \"time\": \"05 AM\",\r\n                    \"connectRate\": \"14\",\r\n                    \"connectRatio\": \"7\",\r\n                    \"totalDials\": 27,\r\n                    \"totalConnects\": 2\r\n                },\r\n                {\r\n                    \"time\": \"04 AM\",\r\n                    \"connectRate\": \"27\",\r\n                    \"connectRatio\": \"4\",\r\n                    \"totalDials\": 109,\r\n                    \"totalConnects\": 4\r\n                },\r\n                {\r\n                    \"time\": \"03 AM\",\r\n                    \"connectRate\": \"46\",\r\n                    \"connectRatio\": \"2\",\r\n                    \"totalDials\": 46,\r\n                    \"totalConnects\": 1\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"e7c07c2b-a4bb-481d-a4d5-80accf5ce052"}],"id":"4ac70841-adab-4061-8f82-891b36ef3dd5","description":"<h2 id=\"introduction-\">Introduction :</h2>\n<p>A reports are a document that presents relevant business information in an organized and understandable format. Each report is aimed at a specific audience and business purpose and it summarizes the performance of different activities based on goals and objectives</p>\n<h2 id=\"input-params-\">Input Params :</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>startDate  <br /><code>String</code></td>\n<td>Start date</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>endDate  <br /><code>String</code></td>\n<td>End date</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>userIds  <br /><code>List</code></td>\n<td>Group of user id's</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>logicalVariable  <br /><code>String</code></td>\n<td>Date Range. Allowed values are <code>Last 1 hour,Last 2 hours,Last 4 hours,Today,Yesterday,Current Week,Last Week,Current Month,Last Month,Current Quarter,Last Quarter,Custom</code></td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>reportName  <br /><code>String</code></td>\n<td>Name of the report.  <br />Use List of Reports API to fetch the reportName.</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>reportType  <br /><code>String</code></td>\n<td>Report Type.  <br />Use List of Reports API to fetch the reportType. Allowed values are:  <br />1. <code>CSSR (Call Session Summary)</code>  <br />2. <code>ALCLSR (All Dials)</code>  <br />3. <code>LPCR (List Performance)</code>  <br />4. <code>LPR (List Performance - Advanced)</code>  <br />5. <code>EXER (Executive)</code>  <br />6. <code>SLEXR (AIFD - Executive)</code>  <br />7. <code>MLEXR (AIPD - Executive)</code>  <br />8. <code>SLWSR (AIFD - Weekly Summary)</code>  <br />9. <code>MLWSR (AIPD - Weekly Summary)</code>  <br />10. <code>SLTKDAR (AIFD - All Calls)</code>  <br />11. <code>MLTKDAR (AIPD - All Calls)</code>  <br />12. <code>SLCDR (AIFD - Talker Calls)</code>  <br />13. <code>MLCDR (AIPD - Talker Calls)</code>  <br />14. <code>SRPR (Sales Rep Productivity)</code>  <br />15. <code>DNCR (DNC)</code>  <br />16. <code>PLR (Parking Lot)</code>  <br />17. <code>NLR (Network Latency)</code></td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>productType  <br /><code>String</code></td>\n<td>Product Type. Allowed values are <code>TD, AIDSL, AIDML, CD, PD</code></td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>dataListIds  <br /><code>List</code></td>\n<td>Group of list id's</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>callDispositionIds  <br /><code>List</code></td>\n<td>Group of disposition id's</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>requestDataType  <br /><code>String</code></td>\n<td>Request Data Type</td>\n<td><code>Mandatory</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"_postman_id":"4ac70841-adab-4061-8f82-891b36ef3dd5"},{"name":"Salesfloor","item":[{"name":"Meetings","item":[{"name":"Publish Meeting","id":"455e8aa6-122c-4924-98b1-77e77671b1f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"channelName\": \"private-6826\",\r\n    \"event\": \"meeting\",\r\n    \"message\": {\r\n        \"status\": \"spotLight\",\r\n        \"type\": \"remove\",\r\n        \"userId\": 14259,\r\n        \"spotLightingUserId\": 14258\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/meetings/publish","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["meetings","publish"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"05f96937-5b9f-42d0-a23a-b59e0bde1c59","name":"Publish Meeting","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"channelName\": \"private-6826\",\r\n    \"event\": \"meeting\",\r\n    \"message\": {\r\n        \"status\": \"spotLight\",\r\n        \"type\": \"remove\",\r\n        \"userId\": 14259,\r\n        \"spotLightingUserId\": 14258\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/meetings/publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"455e8aa6-122c-4924-98b1-77e77671b1f9"},{"name":"Attendee","id":"9a9653bb-3a0c-4b34-81e8-ca0af85ddb68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/meetings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["meetings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"ca828a6b-e319-4177-9773-f4a904c9902b","name":"Attendee","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/meetings?meetingId=2ec34519-776d-4123-a6c1-ba5d14712713","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["meetings"],"query":[{"key":"meetingId","value":"2ec34519-776d-4123-a6c1-ba5d14712713"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"attendeeId\": \"9e382442-36bb-0d81-cb90-87787f1bedda\",\n            \"externalUserId\": \"14258\"\n        }\n    ]\n}"}],"_postman_id":"9a9653bb-3a0c-4b34-81e8-ca0af85ddb68"},{"name":"Attendee","id":"8a641f1e-e3c8-4f24-adeb-160f4b645cb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/meetings/attendees","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["meetings","attendees"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"5562e7c9-f397-4386-ac61-043eb7881a78","name":"Attendee","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/meetings/attendees?meetingId=2ec34519-776d-4123-a6c1-ba5d14712713&attendeeId=9e382442-36bb-0d81-cb90-87787f1bedda","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["meetings","attendees"],"query":[{"key":"meetingId","value":"2ec34519-776d-4123-a6c1-ba5d14712713"},{"key":"attendeeId","value":"9e382442-36bb-0d81-cb90-87787f1bedda"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"8a641f1e-e3c8-4f24-adeb-160f4b645cb8"},{"name":"All Meetings","id":"b23e20fa-98c8-4048-b1d6-923f5455076a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/meetings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["meetings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"8a6a2aa5-aed1-4423-964f-e58ee3ea6be0","name":"All Meetings","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/meetings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"AsteriskAttendeeId\": \"15275f9e-9295-3ff7-bea7-74862df1c7a5\",\r\n            \"Passcode\": \"\",\r\n            \"HostExternalUserId\": \"netolo5668@bodeem.com\",\r\n            \"HostAttendeeId\": \"0328c073-c4b3-80d0-4287-37b727992fb1\",\r\n            \"MeetingId\": \"b063bb5e-d484-44fc-a003-e46a23e02713\",\r\n            \"Data\": \"{\\\"ExternalMeetingId\\\":\\\"ead2-d9-26-7448\\\",\\\"MediaPlacement\\\":{\\\"AudioFallbackUrl\\\":\\\"wss://wss.k.m1.ue1.app.chime.aws:443/calls/b063bb5e-d484-44fc-a003-e46a23e02713\\\",\\\"AudioHostUrl\\\":\\\"330fb4b7349d0c9d688216269d97320f.k.m1.ue1.app.chime.aws:3478\\\",\\\"EventIngestionUrl\\\":\\\"https://data.svc.ue1.ingest.chime.aws/v1/client-events\\\",\\\"ScreenDataUrl\\\":\\\"wss://bitpw.m1.ue1.app.chime.aws:443/v2/screen/b063bb5e-d484-44fc-a003-e46a23e02713\\\",\\\"ScreenSharingUrl\\\":\\\"wss://bitpw.m1.ue1.app.chime.aws:443/v2/screen/b063bb5e-d484-44fc-a003-e46a23e02713\\\",\\\"ScreenViewingUrl\\\":\\\"wss://bitpw.m1.ue1.app.chime.aws:443/ws/connect?passcode=null&viewer_uuid=null&X-BitHub-Call-Id=b063bb5e-d484-44fc-a003-e46a23e02713\\\",\\\"SignalingUrl\\\":\\\"wss://signal.m1.ue1.app.chime.aws/control/b063bb5e-d484-44fc-a003-e46a23e02713\\\",\\\"TurnControlUrl\\\":\\\"https://2713.cell.us-east-1.meetings.chime.aws/v2/turn_sessions\\\"},\\\"MediaRegion\\\":\\\"us-east-1\\\",\\\"MeetingArn\\\":\\\"arn:aws:chime:us-east-1:242986930570:meeting/b063bb5e-d484-44fc-a003-e46a23e02713\\\",\\\"MeetingId\\\":\\\"b063bb5e-d484-44fc-a003-e46a23e02713\\\",\\\"TenantIds\\\":[]}\",\r\n            \"userId\": 14259,\r\n            \"privateRoom\": false,\r\n            \"TTL\": 1717220740,\r\n            \"orgId\": 6826,\r\n            \"ExternalMeetingId\": \"ead2-d9-26-7448\"\r\n        },\r\n        {\r\n            \"AsteriskAttendeeId\": \"3b42834e-4423-10b5-b441-8da0c10ccd3d\",\r\n            \"Passcode\": \"\",\r\n            \"HostExternalUserId\": \"hafed@mailinator.com\",\r\n            \"HostAttendeeId\": \"b5348779-befd-dc05-86a5-23ca5f58d80d\",\r\n            \"MeetingId\": \"ff5d892b-e55c-44a7-af33-8a3395cb2713\",\r\n            \"Data\": \"{\\\"ExternalMeetingId\\\":\\\"79e5-aa-3d-d03e\\\",\\\"MediaPlacement\\\":{\\\"AudioFallbackUrl\\\":\\\"wss://wss.k.m3.ue1.app.chime.aws:443/calls/ff5d892b-e55c-44a7-af33-8a3395cb2713\\\",\\\"AudioHostUrl\\\":\\\"3ff4a3038e1226563703383aaf6ce315.k.m3.ue1.app.chime.aws:3478\\\",\\\"EventIngestionUrl\\\":\\\"https://data.svc.ue1.ingest.chime.aws/v1/client-events\\\",\\\"ScreenDataUrl\\\":\\\"wss://bitpw.m3.ue1.app.chime.aws:443/v2/screen/ff5d892b-e55c-44a7-af33-8a3395cb2713\\\",\\\"ScreenSharingUrl\\\":\\\"wss://bitpw.m3.ue1.app.chime.aws:443/v2/screen/ff5d892b-e55c-44a7-af33-8a3395cb2713\\\",\\\"ScreenViewingUrl\\\":\\\"wss://bitpw.m3.ue1.app.chime.aws:443/ws/connect?passcode=null&viewer_uuid=null&X-BitHub-Call-Id=ff5d892b-e55c-44a7-af33-8a3395cb2713\\\",\\\"SignalingUrl\\\":\\\"wss://signal.m3.ue1.app.chime.aws/control/ff5d892b-e55c-44a7-af33-8a3395cb2713\\\",\\\"TurnControlUrl\\\":\\\"https://2713.cell.us-east-1.meetings.chime.aws/v2/turn_sessions\\\"},\\\"MediaRegion\\\":\\\"us-east-1\\\",\\\"MeetingArn\\\":\\\"arn:aws:chime:us-east-1:242986930570:meeting/ff5d892b-e55c-44a7-af33-8a3395cb2713\\\",\\\"MeetingId\\\":\\\"ff5d892b-e55c-44a7-af33-8a3395cb2713\\\",\\\"TenantIds\\\":[]}\",\r\n            \"userId\": 14258,\r\n            \"privateRoom\": false,\r\n            \"TTL\": 1717222052,\r\n            \"orgId\": 6826,\r\n            \"ExternalMeetingId\": \"79e5-aa-3d-d03e\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b23e20fa-98c8-4048-b1d6-923f5455076a"},{"name":"Delete Meeting By User Id","id":"088bab8e-40bc-4993-bd90-ab375d3ade2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/meetings/users/:userId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["meetings","users",":userId"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"8a612daf-4835-4816-9966-0c0bc03ba2f7","description":{"content":"<p>User Id</p>\n","type":"text/plain"},"type":"any","value":"","key":"userId"}]}},"response":[{"id":"7880fde5-5ef0-4f89-a523-c48fb248118f","name":"Delete Meeting By User Id","originalRequest":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/meetings/users/14258"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\"\r\n}"}],"_postman_id":"088bab8e-40bc-4993-bd90-ab375d3ade2c"},{"name":"Delete Meeting By Id","id":"005dbac1-f3ce-47f8-9bb6-457c24f3c641","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/meetings/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["meetings",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"3e88b65f-b8bc-4d01-ba99-a503601cd6b5","description":{"content":"<p>Meeting Id</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"a71ce8a6-c2af-45bc-a82e-68b80b5514bc","name":"Delete Meeting By Id","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/meetings/2712"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"005dbac1-f3ce-47f8-9bb6-457c24f3c641"}],"id":"83a6b0ee-4850-4edd-9ea8-326d843db279","description":"<h2 id=\"input-params-\">Input Params :</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>channelName  <br /><code>String</code></td>\n<td>Channel Name</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>event  <br /><code>String</code></td>\n<td>Event</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>message  <br /><code>String</code></td>\n<td>Message</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>meetingId  <br /><code>String</code></td>\n<td>Meeting Id</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>attendeeId  <br /><code>List</code></td>\n<td>Attendee Id</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>chime  <br /><code>Object</code></td>\n<td>Chime Meeting</td>\n<td></td>\n</tr>\n<tr>\n<td>observers  <br /><code>Array Of Object</code></td>\n<td>Observer details</td>\n<td></td>\n</tr>\n<tr>\n<td>externalMeetingId  <br /><code>String</code></td>\n<td>External Meeting Id</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>Meeting Id</td>\n<td><code>Mandatory</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"83a6b0ee-4850-4edd-9ea8-326d843db279","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Meeting Logs","item":[{"name":"Meeting Logs","id":"14353d3c-c949-4a40-96c2-1f5ce779ce4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 14258\r\n    },\r\n    \"event\": \"micStatus\",\r\n    \"message\": {\r\n        \"muted\": false,\r\n        \"meetingId\": \"3e47d23e-b5a4-4c85-b15b-d9e238ad2713\",\r\n        \"hostUserId\": 14260\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/meetingLogs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["meetingLogs"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"cd251f4e-6423-43f8-9048-8381ad6e8199","name":"Meeting Logs","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"user\": {\r\n        \"id\": 14258\r\n    },\r\n    \"event\": \"micStatus\",\r\n    \"message\": {\r\n        \"muted\": false,\r\n        \"meetingId\": \"3e47d23e-b5a4-4c85-b15b-d9e238ad2713\",\r\n        \"hostUserId\": 14260\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/meetingLogs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 12071,\n            \"event\": \"micStatus\",\n            \"message\": {\n                \"muted\": false,\n                \"meetingId\": \"3e47d23e-b5a4-4c85-b15b-d9e238ad2713\",\n                \"hostUserId\": 14260\n            },\n            \"createdDateTime\": \"2024-05-31T06:31:47Z\"\n        }\n    ]\n}"}],"_postman_id":"14353d3c-c949-4a40-96c2-1f5ce779ce4f"}],"id":"9eed3f9a-c9df-4c31-bf99-fe3221d8cec8","description":"<h2 id=\"input-params-\">Input Params :</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>event  <br /><code>String</code></td>\n<td>Event</td>\n<td><code>Mandatory</code></td>\n</tr>\n<tr>\n<td>message  <br /><code>Object</code></td>\n<td>Message</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9eed3f9a-c9df-4c31-bf99-fe3221d8cec8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}}],"id":"974765b3-bffc-421a-a61b-1cd4e0ff9cdd","description":"<h2 id=\"introduction-\">Introduction :</h2>\n<p>Koncert's Remote Salesfloor is a unique feature designed to bring the traditional salesfloor workspace experience into the virtual realm, allowing your sales team to collaborate, connect, coach and engage like never before, all within a virtual environment.</p>\n","_postman_id":"974765b3-bffc-421a-a61b-1cd4e0ff9cdd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Scheduler","item":[{"name":"Schedules","id":"a5e0d1bb-b5e1-46cb-9fe8-e3b3c419ae17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/schedules?selectedUserIds=10958,7414&startDate=2022-10-11 10:00:00&endDate=2022-10-12 10:00:00","description":"<p>List all the dialing sessions schedules based on the date range.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Primary value of the data</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>start time of the schedule</td>\n<td><code>sortable filterable</code></td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>end time of the schedule</td>\n<td><code>sortable filterable</code></td>\n</tr>\n<tr>\n<td>text</td>\n<td>Description of the schedule</td>\n<td></td>\n</tr>\n<tr>\n<td>customer_user_display_name</td>\n<td>name of the user</td>\n<td><code>sortable</code></td>\n</tr>\n<tr>\n<td>customer_account_name</td>\n<td>name of the org</td>\n<td></td>\n</tr>\n<tr>\n<td>subject</td>\n<td>title of the scheddule</td>\n<td></td>\n</tr>\n<tr>\n<td>time_zone</td>\n<td>Time zone of the user</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["schedules"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"selectedUserIds","value":"10958,7414"},{"key":"startDate","value":"2022-10-11 10:00:00"},{"key":"endDate","value":"2022-10-12 10:00:00"}],"variable":[]}},"response":[{"id":"6b08ff5a-e37d-454b-baae-cff764383e00","name":"Schedules","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/schedules?selectedUserIds=10958,7414&startDate=2022-10-11 10:00:00&endDate=2022-10-12 10:00:00","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["schedules"],"query":[{"key":"selectedUserIds","value":"10958,7414"},{"key":"startDate","value":"2022-10-11 10:00:00"},{"key":"endDate","value":"2022-10-12 10:00:00"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 970,\n            \"customer_user_id\": 5605,\n            \"customer_account_id\": 3871,\n            \"start_date\": \"Oct 29, 2022 05:30 AM\",\n            \"end_date\": \"Oct 29, 2022 06:30 AM\",\n            \"text\": \"Test description\",\n            \"customer_user_display_name\": \"kathir\",\n            \"customer_account_name\": \"check30\",\n            \"subject\": \"\",\n            \"time_zone\": \"Pacific/Midway\",\n            \"day_of_week\": \"Saturday\",\n            \"schedule_date\": \"10/29/2022\",\n            \"start_hour\": \"05:30 AM\",\n            \"end_hour\": \"06:30 AM\",\n            \"abbr_time_zone\": \"SDT\",\n            \"total_time\": \"01:00:00\"\n        },\n        {\n            \"id\": 971,\n            \"customer_user_id\": 5605,\n            \"customer_account_id\": 3871,\n            \"start_date\": \"Oct 27, 2022 09:30 AM\",\n            \"end_date\": \"Oct 27, 2022 10:30 AM\",\n            \"text\": \"Test description\",\n            \"customer_user_display_name\": \"kathir\",\n            \"customer_account_name\": \"check30\",\n            \"subject\": \"\",\n            \"time_zone\": \"Pacific/Midway\",\n            \"day_of_week\": \"Thursday\",\n            \"schedule_date\": \"10/27/2022\",\n            \"start_hour\": \"09:30 AM\",\n            \"end_hour\": \"10:30 AM\",\n            \"abbr_time_zone\": \"SDT\",\n            \"total_time\": \"01:00:00\"\n        },\n        {\n            \"id\": 958,\n            \"customer_user_id\": 5605,\n            \"customer_account_id\": 3871,\n            \"start_date\": \"Oct 25, 2022 05:05 PM\",\n            \"end_date\": \"Oct 25, 2022 06:05 PM\",\n            \"text\": \"Test description\",\n            \"customer_user_display_name\": \"kathir\",\n            \"customer_account_name\": \"check30\",\n            \"subject\": \"\",\n            \"time_zone\": \"Pacific/Midway\",\n            \"day_of_week\": \"Tuesday\",\n            \"schedule_date\": \"10/25/2022\",\n            \"start_hour\": \"05:05 PM\",\n            \"end_hour\": \"06:05 PM\",\n            \"abbr_time_zone\": \"SDT\",\n            \"total_time\": \"01:00:00\"\n        }\n    ]\n}"}],"_postman_id":"a5e0d1bb-b5e1-46cb-9fe8-e3b3c419ae17"},{"name":"Schedule","id":"cc1325e1-0707-46fc-a1a9-747dc2364ea4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"talkerId\":\"10958\",\r\n\"eventId\":951,\r\n\"email\":\"\",\r\n\"startDate\":\"2022-09-30 10:00:00\",\r\n\"endDate\":\"2022-09-30 11:00:00\",\r\n\"description\":\"Test description 1\",\r\n\"subject\":\"Test subject\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules","description":"<p>Update dialing session schedule</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["schedules"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"bcc0b9f8-f0f6-4f45-a1fb-52c82f1aa255","name":"Schedule","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\"talkerId\":\"10958\",\r\n\"eventId\":951,\r\n\"email\":\"\",\r\n\"startDate\":\"2022-09-30 10:00:00\",\r\n\"endDate\":\"2022-09-30 11:00:00\",\r\n\"description\":\"Test description 1\",\r\n\"subject\":\"Test description\",\r\n\"color\":\"\",\r\n\"textColor\":\"\",\r\n\"calendarUid\":\"\",\r\n\"imapUid\":\"\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"cc1325e1-0707-46fc-a1a9-747dc2364ea4"},{"name":"Schedule","id":"3801070a-4823-46f6-b429-2f3e4e66151d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"talkerId\":\"10958\",\r\n\"eventId\":1664174383452,\r\n\"email\":\"vgahfr@gamil.com\",\r\n\"startDate\":\"2022-10-29 05:30:00\",\r\n\"endDate\":\"2022-10-29 06:30:00\",\r\n\"description\":\"Test description\",\r\n\"subject\":\"Test subject\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules","description":"<p>Create dialing session schedule for AAD</p>\n","urlObject":{"protocol":"https","path":["schedules"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"9a438f8e-c27e-4b9b-912e-81bbe8152829","name":"Schedule","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"talkerId\":\"10958\",\r\n\"eventId\":1664174383452,\r\n\"email\":\"\",\r\n\"startDate\":\"2022-10-29 05:30:00\",\r\n\"endDate\":\"2022-10-29 06:30:00\",\r\n\"description\":\"Test description\",\r\n\"subject\":\"Test description\",\r\n\"color\":\"\",\r\n\"textColor\":\"\",\r\n\"calendarUid\":\"\",\r\n\"imapUid\":\"\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"3801070a-4823-46f6-b429-2f3e4e66151d"},{"name":"Schedule","id":"20aed499-0385-4f36-b1bf-21896b9f146d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\"startDate\":\"2022-09-29 08:30:00\",\r\n\"endDate\":\"2022-09-29 09:30:00\",\r\n\"cancellationTime\":0,\r\n\"talkerId\":10958,\r\n\"eventId\":950}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules","description":"<p>Delete Schedule</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["schedules"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"bd00a41e-0686-4869-8f22-0d171f7954f5","name":"Schedule","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\"startDate\":\"2022-09-29 08:30:00\",\r\n\"endDate\":\"2022-09-29 09:30:00\",\r\n\"cancellationTime\":0,\r\n\"talkerId\":10958,\r\n\"eventId\":950}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"20aed499-0385-4f36-b1bf-21896b9f146d"},{"name":"No show events","id":"1a8cc01e-4881-471a-b06d-7395da10bd4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"talkerId\":\"10958\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules/noShowEvents","description":"<p>Get all the past schedule which will not happened for session on that scheduled time.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["schedules","noShowEvents"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"5666cf3e-64d5-4d1d-8e1a-92d5b52ed2ac","name":"No show events","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"talkerId\":\"10958\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/schedules/noShowEvents"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"error\",\r\n    \"errors\": [\r\n        {\r\n            \"errorCode\": \"INVALID_ACCESS\",\r\n            \"message\": \"Key has been expired\"\r\n        }\r\n    ],\r\n    \"requestId\": \"3e42cada-ae32-3c78-8b30-6a23d0565dfb\"\r\n}"}],"_postman_id":"1a8cc01e-4881-471a-b06d-7395da10bd4a"},{"name":"Export Excel","id":"e6d6bd02-9566-4dbe-808e-248605ec489f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/public/scheduler/export/:signedKey?na=4408FD89F4A9D7B769BF65D091DE3855955EEB1889E7081D19A0617EF6C595FC","description":"<p>Export the searched schedules list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["public","scheduler","export",":signedKey"],"host":["{{koncert_dialers_api}}"],"query":[{"key":"na","value":"4408FD89F4A9D7B769BF65D091DE3855955EEB1889E7081D19A0617EF6C595FC"}],"variable":[{"id":"f9d4bf88-f234-47be-ac4c-948e7ea0250e","type":"any","value":"4408FD89F4A9D7B769BF65D091DE3855955EEB1889E7081D19A0617EF6C595FC","key":"signedKey"}]}},"response":[{"id":"eb41abff-294d-4d38-8656-8832c4da749b","name":"Export Excel","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/public/scheduler/export/B3BD5FDEC25ECAB6322155CBDB2BFF76B0B3DFDC6AFC626C00C9B679682B1CDF66F78BA860C0FF8263203A0D8729C03D8ED41BEBC4578E28?na=4408FD89F4A9D7B769BF65D091DE3855955EEB1889E7081D19A0617EF6C595FC","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["public","scheduler","export","B3BD5FDEC25ECAB6322155CBDB2BFF76B0B3DFDC6AFC626C00C9B679682B1CDF66F78BA860C0FF8263203A0D8729C03D8ED41BEBC4578E28"],"query":[{"key":"na","value":"4408FD89F4A9D7B769BF65D091DE3855955EEB1889E7081D19A0617EF6C595FC"}]}},"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":"��\u0011ࡱ\u001a�"},{"id":"0128c41f-9d84-45bc-a46e-fec3b5618f4e","name":"signed key expired","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/public/scheduler/export/B3BD5FDEC25ECAB6322155CBDB2BFF76B0B3DFDC6AFC626C00C9B679682B1CDF66F78BA860C0FF8263203A0D8729C03D8ED41BEBC4578E28?na=4408FD89F4A9D7B769BF65D091DE3855955EEB1889E7081D19A0617EF6C595FC","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["public","scheduler","export","B3BD5FDEC25ECAB6322155CBDB2BFF76B0B3DFDC6AFC626C00C9B679682B1CDF66F78BA860C0FF8263203A0D8729C03D8ED41BEBC4578E28"],"query":[{"key":"na","value":"4408FD89F4A9D7B769BF65D091DE3855955EEB1889E7081D19A0617EF6C595FC"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"error\",\n    \"errors\": [\n        {\n            \"errorCode\": \"INVALID_ACCESS\",\n            \"message\": \"Key has been expired\"\n        }\n    ],\n    \"requestId\": \"3e42cada-ae32-3c78-8b30-6a23d0565dfb\"\n}"}],"_postman_id":"e6d6bd02-9566-4dbe-808e-248605ec489f"},{"name":"Create signed key","id":"fd6ba267-dbaf-40ad-8be7-47af4410dade","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"startDate\":\"2022-09-25 10:00:00\",\r\n\"endDate\":\"2022-10-10 11:00:00\",\r\n\"talkerId\":\"10958\",\r\n\"noShowViewEnabled\":\"N\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/scheduler/export","description":"<p>Used to export the schedules</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["sign","scheduler","export"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7559a9be-d8c8-4bb4-a7d2-8e66dd0aa051","name":"Create signed key","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"startDate\":\"2022-09-25 10:00:00\",\r\n\"endDate\":\"2022-10-10 11:00:00\",\r\n\"talkerId\":\"10958\",\r\n\"noShowViewEnabled\":\"N\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/scheduler/export"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"key\": \"AEE424CC74A73C1DD3C0F9C9BBF3444F5834DA85B0CFF469FCC930402B5C590A8E1CEE9D2C9C8C063949FCB41C035506AD6005DD736EF55E\",\n            \"na\": \"4408FD89F4A9D7B7E08BFA0C79C2BFDE955EEB1889E7081DAF1CC40EB8161E98\"\n        }\n    ]\n}"}],"_postman_id":"fd6ba267-dbaf-40ad-8be7-47af4410dade"}],"id":"2e5c1443-f96a-42d7-8c41-ea52f209647c","description":"<p>Schedule the dialing session for AAD customers.</p>\n","_postman_id":"2e5c1443-f96a-42d7-8c41-ea52f209647c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Settings","item":[{"name":"Update Recorded Message","id":"9c4b1d9e-ff02-48a1-b59a-01f4b59c020d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"13deb6df-a28c-41b8-bf1c-b2e7920b19fd","id":"13deb6df-a28c-41b8-bf1c-b2e7920b19fd","name":"Settings","type":"folder"}},"urlObject":{"protocol":"https","path":["reports"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"c9a7f792-1ee4-4bf0-bb14-d2f1318e2488","name":"Update Recorded Message","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n        {\r\n            \"id\": 1408,\r\n            \"messageName\": \"ITG12212022\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 0,\r\n            \"isVoiceRecordingDone\": true\r\n        },\r\n        {\r\n            \"id\": 1443,\r\n            \"messageName\": \"Sample Message\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/messages/sample\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 1,\r\n            \"vmSubject\": \"Sample VM Subject\",\r\n            \"vmScript\": \"Sample VM Script\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Sample Template\",\r\n            \"shareThisTemplateWith\": \"User1\",\r\n            \"vmConstantTemplateName\": \"Sample Constant Template\"\r\n        },\r\n        {\r\n            \"id\": 1476,\r\n            \"messageName\": \"New Message\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 3,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1477,\r\n            \"messageName\": \"New Message\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 3,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1478,\r\n            \"messageName\": \"New Message 1\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1479,\r\n            \"messageName\": \"New Message 2\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 4,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1480,\r\n            \"messageName\": \"New Message 2\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 4,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1481,\r\n            \"messageName\": \"New Message 20\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 5,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1482,\r\n            \"messageName\": \"New Message 47\",\r\n            \"messageType\": \"VM\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"Y\",\r\n            \"duration\": 60,\r\n            \"sortIndex\": 2,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1483,\r\n            \"messageName\": \"New Message 47\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 74,\r\n            \"sortIndex\": 2,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        },\r\n        {\r\n            \"id\": 1484,\r\n            \"messageName\": \"New Message 77\",\r\n            \"messageType\": \"ITG\",\r\n            \"messagePath\": \"/path/to/message\",\r\n            \"activeFlag\": \"Y\",\r\n            \"defaultVmFlag\": \"N\",\r\n            \"duration\": 74,\r\n            \"vmSubject\": \"Subject A\",\r\n            \"vmScript\": \"Script A\",\r\n            \"isVoiceRecordingDone\": true,\r\n            \"vmTemplateName\": \"Template A\",\r\n            \"shareThisTemplateWith\": \"User B\",\r\n            \"vmConstantTemplateName\": \"Constant Template A\"\r\n        }\r\n    ]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/recordedMessage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 1408,\n            \"messageName\": \"ITG12212022\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"Y\",\n            \"duration\": 0,\n            \"isVoiceRecordingDone\": true\n        },\n        {\n            \"id\": 1443,\n            \"messageName\": \"Sample Message\",\n            \"messageType\": \"VM\",\n            \"messagePath\": \"/messages/sample\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"sortIndex\": 1,\n            \"vmSubject\": \"Sample VM Subject\",\n            \"vmScript\": \"Sample VM Script\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Sample Template\",\n            \"shareThisTemplateWith\": \"User1\",\n            \"vmConstantTemplateName\": \"Sample Constant Template\"\n        },\n        {\n            \"id\": 1476,\n            \"messageName\": \"New Message\",\n            \"messageType\": \"VM\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"sortIndex\": 3,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1477,\n            \"messageName\": \"New Message\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"sortIndex\": 3,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1478,\n            \"messageName\": \"New Message 1\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1479,\n            \"messageName\": \"New Message 2\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"sortIndex\": 4,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1480,\n            \"messageName\": \"New Message 2\",\n            \"messageType\": \"VM\",\n            \"messagePath\": \"\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"Y\",\n            \"duration\": 60,\n            \"sortIndex\": 4,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1481,\n            \"messageName\": \"New Message 20\",\n            \"messageType\": \"VM\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 60,\n            \"sortIndex\": 5,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1482,\n            \"messageName\": \"New Message 47\",\n            \"messageType\": \"VM\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"Y\",\n            \"duration\": 60,\n            \"sortIndex\": 2,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1483,\n            \"messageName\": \"New Message 47\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 74,\n            \"sortIndex\": 2,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        },\n        {\n            \"id\": 1484,\n            \"messageName\": \"New Message 77\",\n            \"messageType\": \"ITG\",\n            \"messagePath\": \"/path/to/message\",\n            \"activeFlag\": \"Y\",\n            \"defaultVmFlag\": \"N\",\n            \"duration\": 74,\n            \"vmSubject\": \"Subject A\",\n            \"vmScript\": \"Script A\",\n            \"isVoiceRecordingDone\": true,\n            \"vmTemplateName\": \"Template A\",\n            \"shareThisTemplateWith\": \"User B\",\n            \"vmConstantTemplateName\": \"Constant Template A\"\n        }\n    ]\n}"}],"_postman_id":"9c4b1d9e-ff02-48a1-b59a-01f4b59c020d"}],"id":"13deb6df-a28c-41b8-bf1c-b2e7920b19fd","description":"<h2 id=\"introduction-\">Introduction :</h2>\n<p>A reports are a document that presents relevant business information in an organized and understandable format. Each report is aimed at a specific audience and business purpose and it summarizes the performance of different activities based on goals and objectives</p>\n<h2 id=\"input-params-\">Input Params :</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>requestDataType  <br /><code>String</code></td>\n<td>requested data type</td>\n<td><code>Not mandatory</code></td>\n</tr>\n<tr>\n<td>startDate  <br /><code>String</code></td>\n<td>Start date</td>\n<td><code>Should not blank</code></td>\n</tr>\n<tr>\n<td>endDate  <br /><code>String</code></td>\n<td>End date</td>\n<td><code>Should not blank</code></td>\n</tr>\n<tr>\n<td>userIds  <br /><code>List</code></td>\n<td>Group of user id's</td>\n<td><code>Should not blank</code></td>\n</tr>\n<tr>\n<td>dataListIds  <br /><code>List</code></td>\n<td>Group of list names</td>\n<td><code>Not mandatory</code></td>\n</tr>\n<tr>\n<td>reportType  <br /><code>String</code></td>\n<td>Report Type</td>\n<td><code>Should not blank</code></td>\n</tr>\n<tr>\n<td>callDispositionIds  <br /><code>List</code></td>\n<td>Group of dispoition names</td>\n<td><code>Not mandatory</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"_postman_id":"13deb6df-a28c-41b8-bf1c-b2e7920b19fd"},{"name":"Sign","item":[{"name":"Report","id":"26025e7b-5957-4c06-9f66-8f12b5ddcf48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n            \"id\": 5557,\r\n            \"list_name\": \"\",\r\n            \"call_disposition\":\"\",\r\n            \"param_user_ids\":\"\",\r\n            \"start_date\":\"\",\r\n            \"end_date\":\"\",\r\n            \"logical_variable\":\"\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/report/export","description":"<p>To Upload CSV File</p>\n","urlObject":{"protocol":"https","path":["sign","report","export"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"64c5c9ea-ed44-4c76-9187-2001617903b9","name":"Export","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n            \"id\": 5557,\r\n            \"list_name\": \"\",\r\n            \"call_disposition\":\"\",\r\n            \"param_user_ids\":\"\",\r\n            \"start_date\":\"\",\r\n            \"end_date\":\"\",\r\n            \"logical_variable\":\"\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/sign/report/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:23:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"key\": \"D9141131A4EBB23DBD62C624C2E7820DAA12A95BA0D5DA92644AE4B30FF93B8A289B30FD569A90D5925FB92350AA6A587E31B5EA05C10AAC\",\n            \"na\": \"4408FD89F4A9D7B7CB29F60CD8E7B001955EEB1889E7081D5310DDC316B8A2EC\"\n        }\n    ]\n}"}],"_postman_id":"26025e7b-5957-4c06-9f66-8f12b5ddcf48"}],"id":"7642a563-8141-4ffc-b901-6b4d3bfa70df","description":"<p>Upload File Information</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>String</code></td>\n<td>File Id</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>File name</td>\n<td></td>\n</tr>\n<tr>\n<td>headerContents  <br /><code>String Array</code></td>\n<td>File headers</td>\n<td></td>\n</tr>\n<tr>\n<td>csvRecords  <br /><code>List Map</code></td>\n<td>File contents</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>User  <br /><code>Array of Objects</code></td>\n<td>Owner of the File</td>\n<td><code>Filterable</code>  <br /><code>Sortable IncludeAssociations</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7642a563-8141-4ffc-b901-6b4d3bfa70df","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"ThirdParty Integrations","item":[{"name":"fields","item":[{"name":"Custom","id":"241d0bb7-4c5d-43aa-904a-48ba9dda4493","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/fields/:crmType","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","fields",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"ba9df5c2-69a1-425d-a565-337384f96216","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"2608e749-6207-4fb6-88c6-42f67fa9a5ed","name":"Outreach","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/fields/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","fields",":crmType"],"variable":[{"key":"crmType","value":"Outreach"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"fieldLabel\": \"Koncert - sandbox \",\r\n            \"apiName\": \"name\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Education\",\r\n            \"apiName\": \"custom1\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"KK TEST Field 31\",\r\n            \"apiName\": \"custom2\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"KK TEST Field 2\",\r\n            \"apiName\": \"custom3\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"KK TEST Field 1\",\r\n            \"apiName\": \"custom4\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Direct Phone\",\r\n            \"apiName\": \"custom5\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Contact 3x3\",\r\n            \"apiName\": \"custom6\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Account 3X3\",\r\n            \"apiName\": \"custom7\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Lead'O &A~\",\r\n            \"apiName\": \"custom8\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Manivannan Text FIeld\",\r\n            \"apiName\": \"custom9\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Direct Phone\",\r\n            \"apiName\": \"custom10\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Automation 3x3\",\r\n            \"apiName\": \"custom11\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Sample Text Field\",\r\n            \"apiName\": \"custom12\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Demo Custom Feild\",\r\n            \"apiName\": \"custom13\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"MG Text Feild\",\r\n            \"apiName\": \"custom14\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Outreach customfeild1\",\r\n            \"apiName\": \"custom15\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Outreach customfeild2\",\r\n            \"apiName\": \"custom16\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Linkedin URL\",\r\n            \"apiName\": \"custom17\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"CRM Info\",\r\n            \"apiName\": \"custom18\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"newCustom\",\r\n            \"apiName\": \"custom19\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Lead Status\",\r\n            \"apiName\": \"custom20\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Contract Amount\",\r\n            \"apiName\": \"custom21\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Due Date\",\r\n            \"apiName\": \"custom22\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"First Dialed Date\",\r\n            \"apiName\": \"custom23\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Last Dialed Date\",\r\n            \"apiName\": \"custom24\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Do Not Call\",\r\n            \"apiName\": \"custom25\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"Project Category\",\r\n            \"apiName\": \"custom26\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        },\r\n        {\r\n            \"fieldLabel\": \"USD\",\r\n            \"apiName\": \"defaultCurrency\",\r\n            \"customField\": true,\r\n            \"kcFieldName\": \"\",\r\n            \"recordType\": \"Prospect\",\r\n            \"fieldType\": \"text\",\r\n            \"readonly\": false\r\n        }\r\n    ]\r\n}"}],"_postman_id":"241d0bb7-4c5d-43aa-904a-48ba9dda4493"},{"name":"Standard","id":"330ba7c9-fcc7-4414-9cf9-806c2669caed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/standardFields/:crmType","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","standardFields",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"f665bfd0-8021-4f33-ab0a-81b3406a451a","type":"any","value":null,"key":"crmType"}]}},"response":[],"_postman_id":"330ba7c9-fcc7-4414-9cf9-806c2669caed"}],"id":"c2954829-9b1f-4645-942d-09b8e2fb46bb","_postman_id":"c2954829-9b1f-4645-942d-09b8e2fb46bb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Call Dispositions","id":"949ffb48-cf7f-47be-84f1-315bfba36b15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/callDispositions/:crmType","description":"<p>Get call dispositions from OUTREACH or SALESLOFT based on the CRM type</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","callDispositions",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"657c8636-e758-4e37-8d40-2dee33ced2f1","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"61ca7d53-f0f4-4721-b135-43e89e04b0dc","name":"Call Dispositions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/callDispositions/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","callDispositions",":crmType"],"variable":[{"key":"crmType","value":"Salesloft"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 1,\r\n            \"name\": \"Answered - Meeting Set\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 2,\r\n            \"name\": \"Answered - No Longer with Company\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 10,\r\n            \"name\": \"Answered - Follow Up\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 3,\r\n            \"name\": \"Answered - Not Interested\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 5,\r\n            \"name\": \"Answered - Wrong Contact\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 4,\r\n            \"name\": \"Answered - Referral\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 6,\r\n            \"name\": \"No Answer\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 7,\r\n            \"name\": \"Left Voicemail\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 8,\r\n            \"name\": \"Gatekeeper\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 9,\r\n            \"name\": \"Bad Number\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 14,\r\n            \"name\": \"No Answer - Went to VM\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 15,\r\n            \"name\": \"No Answer - Call Attempted\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 16,\r\n            \"name\": \"No Answer - Call Blocked (GK/IVR)\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 17,\r\n            \"name\": \"Do Not Call\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 20,\r\n            \"name\": \"No Answer - Call Disconnected\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 18,\r\n            \"name\": \"Talker Busy Call Not Transferred\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 19,\r\n            \"name\": \"No Answer - Line Busy - Call Back Later\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 21,\r\n            \"name\": \"Reached Gatekeeper - Call not transferred\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 22,\r\n            \"name\": \"Wrong Phone Number\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 23,\r\n            \"name\": \"No Longer with company\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 24,\r\n            \"name\": \"Talker Busy Call Not Transferred\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 26,\r\n            \"name\": \"Answered - Qualified Lead\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 27,\r\n            \"name\": \"No Answer - Direct Phone Number\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 28,\r\n            \"name\": \"KK New Disposition\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 29,\r\n            \"name\": \"Left VM\",\r\n            \"outcome\": \"no_answer\"\r\n        },\r\n        {\r\n            \"id\": 30,\r\n            \"name\": \"Went to IVR\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 31,\r\n            \"name\": \"Talker busy - Unanswered call cancelled\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 32,\r\n            \"name\": \"Other\",\r\n            \"outcome\": \"completed\"\r\n        },\r\n        {\r\n            \"id\": 33,\r\n            \"name\": \"Not a Decision Maker\",\r\n            \"outcome\": \"completed\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"949ffb48-cf7f-47be-84f1-315bfba36b15"},{"name":"Call Sentiments","id":"0b1791f7-a7be-4224-b9a5-d39cfb00bf1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/sentiments/:crmType","description":"<p>Get list of call sentiments from SALESLOFT.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","sentiments",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"b4f5d07c-405d-402d-8dbb-f9db08ef1bc2","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"97497890-7c4c-49ac-9b52-b619551f421e","name":"Call Sentiments","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/callSentiments/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","callSentiments",":crmType"],"variable":[{"key":"crmType","value":"Salesloft"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 137912,\r\n            \"name\": \"Company - Bad Fit\"\r\n        },\r\n        {\r\n            \"id\": 137913,\r\n            \"name\": \"Contact - Bad Fit\"\r\n        },\r\n        {\r\n            \"id\": 137915,\r\n            \"name\": \"Customer\"\r\n        },\r\n        {\r\n            \"id\": 137917,\r\n            \"name\": \"Demo Scheduled\"\r\n        },\r\n        {\r\n            \"id\": 161267,\r\n            \"name\": \"Dialed\"\r\n        },\r\n        {\r\n            \"id\": 161268,\r\n            \"name\": \"DNC\"\r\n        },\r\n        {\r\n            \"id\": 137914,\r\n            \"name\": \"Existing Opp\"\r\n        },\r\n        {\r\n            \"id\": 137923,\r\n            \"name\": \"Gatekeeper - No contact with prospect\"\r\n        },\r\n        {\r\n            \"id\": 137922,\r\n            \"name\": \"Interested\"\r\n        },\r\n        {\r\n            \"id\": 137921,\r\n            \"name\": \"No Interest\"\r\n        },\r\n        {\r\n            \"id\": 161266,\r\n            \"name\": \"Other\"\r\n        },\r\n        {\r\n            \"id\": 137916,\r\n            \"name\": \"Reassigned to Partner\"\r\n        },\r\n        {\r\n            \"id\": 137919,\r\n            \"name\": \"Referred to Other Contact\"\r\n        },\r\n        {\r\n            \"id\": 137918,\r\n            \"name\": \"Rescheduling\"\r\n        },\r\n        {\r\n            \"id\": 156114,\r\n            \"name\": \"Sentiment 1\"\r\n        },\r\n        {\r\n            \"id\": 156115,\r\n            \"name\": \"Sentiment 2!\"\r\n        },\r\n        {\r\n            \"id\": 156116,\r\n            \"name\": \"Sentiment 3!\"\r\n        },\r\n        {\r\n            \"id\": 137920,\r\n            \"name\": \"Timeline 6-12 months\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"0b1791f7-a7be-4224-b9a5-d39cfb00bf1a"},{"name":"Call Disposition Mappings","id":"faf93cf9-22c0-4254-8f41-773d74767779","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"id\": 17770,\r\n    \"cadenceDisposition\": \"Call Attempted\",\r\n    \"outreachDispositionOutcome\": \"Not Answered\",\r\n    \"cadenceSentiment\": \"Other\"\r\n},{\r\n    \"id\": 17771,\r\n    \"cadenceDisposition\": \"Not Answered\",\r\n    \"outreachDispositionOutcome\": \"Not Answered\",\r\n    \"cadenceSentiment\": \"Other\"\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/callDispositions/:crmType","description":"<p>Save call dispositions mapping with third party disposition.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","callDispositions",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"4c3186df-e5d6-4735-9eed-1cb3d4fc4e6d","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"dff806ad-82ae-4a9b-b839-54dc6df8ed9e","name":"Call Disposition Mappings","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"id\": 17770,\r\n    \"cadenceDisposition\": \"Call Attempted\",\r\n    \"outreachDispositionOutcome\": \"Not Answered\",\r\n    \"cadenceSentiment\": \"Other\"\r\n},{\r\n    \"id\": 17771,\r\n    \"cadenceDisposition\": \"Not Answered\",\r\n    \"outreachDispositionOutcome\": \"Not Answered\",\r\n    \"cadenceSentiment\": \"Other\"\r\n}]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/thirdParty/callDispositions/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdParty","callDispositions",":crmType"],"variable":[{"key":"crmType","value":"Salesloft"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 17770,\r\n            \"createdUser\": null,\r\n            \"modifiedUser\": null,\r\n            \"name\": \"Talker busy - Unanswered call cancelled\",\r\n            \"active\": true,\r\n            \"dispositionOrder\": 1,\r\n            \"reportOrder\": 1,\r\n            \"defaultFlag\": false,\r\n            \"enableForReport\": true,\r\n            \"positiveConnect\": true,\r\n            \"clickDialer\": false,\r\n            \"personalDialer\": false,\r\n            \"teamDialer\": false,\r\n            \"dialingAgent\": false,\r\n            \"badData\": false,\r\n            \"memberStage\": \"Attempted\",\r\n            \"defaultAction\": \"No Action\",\r\n            \"createActivity\": true,\r\n            \"cadenceDisposition\": \"Call Attemped\",\r\n            \"requireFollowup\": false,\r\n            \"connect\": false,\r\n            \"trackOpportunities\": false,\r\n            \"outreachDispositionOutcome\": \"Not Answered\",\r\n            \"cadenceSentiment\": \"Other\",\r\n            \"callNotes\": null,\r\n            \"sentiment\": null,\r\n            \"leadStatus\": null,\r\n            \"leadSubStatus\": null,\r\n            \"contactStatus\": null,\r\n            \"csvStatus\": null,\r\n            \"rescheduleBasedOnCallAttempts\": false,\r\n            \"recordPdCalls\": false,\r\n            \"custom\": false,\r\n            \"cadenceOutcomeWeight\": 50,\r\n            \"createdDateTime\": \"2022-07-29T13:34:10Z\",\r\n            \"modifiedDateTime\": \"2022-07-29T13:34:10Z\",\r\n            \"contactSubStatus\": null,\r\n            \"notVisibleToUser\": false,\r\n            \"aiEngine\": true,\r\n            \"aiSingleLineDialer\": false,\r\n            \"aiMultiLineDialer\": false\r\n        },\r\n        {\r\n            \"id\": 17771,\r\n            \"createdUser\": null,\r\n            \"modifiedUser\": null,\r\n            \"name\": \"Went to IVR\",\r\n            \"active\": true,\r\n            \"dispositionOrder\": 1,\r\n            \"reportOrder\": 1,\r\n            \"defaultFlag\": false,\r\n            \"enableForReport\": true,\r\n            \"positiveConnect\": true,\r\n            \"clickDialer\": false,\r\n            \"personalDialer\": false,\r\n            \"teamDialer\": false,\r\n            \"dialingAgent\": false,\r\n            \"badData\": false,\r\n            \"memberStage\": \"Attempted\",\r\n            \"defaultAction\": \"No Action\",\r\n            \"createActivity\": true,\r\n            \"cadenceDisposition\": null,\r\n            \"requireFollowup\": false,\r\n            \"connect\": false,\r\n            \"trackOpportunities\": false,\r\n            \"outreachDispositionOutcome\": \"Not Answered\",\r\n            \"cadenceSentiment\": \"Other\",\r\n            \"callNotes\": null,\r\n            \"sentiment\": null,\r\n            \"leadStatus\": null,\r\n            \"leadSubStatus\": null,\r\n            \"contactStatus\": null,\r\n            \"csvStatus\": null,\r\n            \"rescheduleBasedOnCallAttempts\": false,\r\n            \"recordPdCalls\": false,\r\n            \"custom\": false,\r\n            \"cadenceOutcomeWeight\": 50,\r\n            \"createdDateTime\": \"2022-07-29T13:34:10Z\",\r\n            \"modifiedDateTime\": \"2022-07-29T13:34:10Z\",\r\n            \"contactSubStatus\": null,\r\n            \"notVisibleToUser\": false,\r\n            \"aiEngine\": true,\r\n            \"aiSingleLineDialer\": false,\r\n            \"aiMultiLineDialer\": false\r\n        }]\r\n}"}],"_postman_id":"faf93cf9-22c0-4254-8f41-773d74767779"},{"name":"Authorize","id":"6be369d4-5a1e-4901-be3e-7f613e9d40c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"instanceUrl\":\"https://app.gong.io/oauth2\"}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/authorize/:crmType","description":"<p>Authorize Third party CRM and save verified flag to customer details.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","authorize",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"f3a163be-b35a-4c8f-8105-3a36d14b2a77","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"85058876-9985-49c7-b83e-2dfa74c622f6","name":"Authorize","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"instanceUrl\":\"https://app.gong.io/oauth2\"}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/authorize/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","authorize",":crmType"],"variable":[{"key":"crmType","value":"Salesloft"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"6be369d4-5a1e-4901-be3e-7f613e9d40c2"},{"name":"SignOut","id":"f07af086-ae8e-4a27-ad62-b6b70f358f1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/signOut/:crmType","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","signOut",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"e95ed73a-d074-4256-84e2-84539e482a20","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"21a3106f-c798-4d92-a5f0-6a5289ce32e8","name":"SignOut","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/signOut/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","signOut",":crmType"],"variable":[{"key":"crmType","value":"Salesloft"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"f07af086-ae8e-4a27-ad62-b6b70f358f1e"},{"name":"AccessToken","id":"519b687c-db43-4cf2-adb4-725836bf65b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/accessToken/:crmType","description":"<p>Get access token from Thirdparty CRM and save to customer details.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","accessToken",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"a3efad9f-135b-4cb1-aae9-35260f4324f0","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"185a37ed-0d34-412d-8084-b921757a9cb8","name":"AccessToken","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"code\":\"nbhdgtednjnvcftrwacmkkk\"}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/accessToken/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","accessToken",":crmType"],"variable":[{"key":"crmType","value":"Salesloft"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"519b687c-db43-4cf2-adb4-725836bf65b9"},{"name":"Users","id":"a3dd1c36-79c4-4e2c-b1bf-f6fbe0994890","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/assignUsers/:crmType","description":"<p>Get third party users from Salesloft, Outreach and Gong.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","assignUsers",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"26d78774-4bf8-4c56-ad34-7876118772dc","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"9fac6b55-8b83-4085-aecf-6fdf3c003114","name":"Salesloft","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/assignUsers/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","assignUsers",":crmType"],"variable":[{"key":"crmType","value":"Salesloft"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"thirdPartyCrmId\": 62691,\r\n            \"name\": \"Koncert Support\",\r\n            \"email\": \"asoundar@connectleader.com\",\r\n            \"salesloftGuid\": \"3605ba06-4e59-43c5-919c-330dbb92b83c\"\r\n        },\r\n        {\r\n            \"thirdPartyCrmId\": 197296,\r\n            \"name\": \"Customer Success\",\r\n            \"email\": \"customersuccesssl@gmail.com\",\r\n            \"salesloftGuid\": \"2339cb04-c0ad-4e2e-af7b-97d54d7a2c76\"\r\n        },\r\n        {\r\n            \"thirdPartyCrmId\": 195506,\r\n            \"name\": \"Anne Bradley\",\r\n            \"email\": \"bradleyanne26@gmail.com\",\r\n            \"salesloftGuid\": \"7935fb20-d2ae-4d83-8abb-468ef5e9391c\"\r\n        }\r\n    ]\r\n}"},{"id":"8d816112-c02b-4a2b-a383-b68d985a1ad2","name":"Users","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/assignUsers/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","assignUsers",":crmType"],"variable":[{"key":"crmType","value":"Outreach"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"thirdPartyCrmId\": 1,\r\n            \"name\": \"Anu Soundar\",\r\n            \"email\": \"asoundar@koncert.com\"\r\n        },\r\n        {\r\n            \"thirdPartyCrmId\": 10,\r\n            \"name\": \"Becky Gomez\",\r\n            \"email\": \"bgomez20231@outlook.com\"\r\n        },\r\n        {\r\n            \"thirdPartyCrmId\": 9,\r\n            \"name\": \"Customer Success\",\r\n            \"email\": \"customersuccessor@gmail.com\"\r\n        },\r\n        {\r\n            \"thirdPartyCrmId\": 8,\r\n            \"name\": \"Kelley Munoz\",\r\n            \"email\": \"kelleymunoz0@gmail.com\"\r\n        },\r\n        {\r\n            \"thirdPartyCrmId\": 11,\r\n            \"name\": \"Vickie Huff\",\r\n            \"email\": \"vickiehuff4@gmail.com\"\r\n        }\r\n    ]\r\n}"},{"id":"8e49c93b-b520-44f5-b75a-1661ce879543","name":"Gong","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/assignUsers/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","assignUsers",":crmType"],"variable":[{"key":"crmType","value":"Gong"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": \"984073349808951727\",\r\n            \"emailAddress\": \"asoundar@koncert.com\",\r\n            \"created\": \"2022-09-04T03:33:34.651-04:00\",\r\n            \"active\": true,\r\n            \"emailAliases\": [],\r\n            \"firstName\": \"Anu\",\r\n            \"lastName\": \"Soundar\",\r\n            \"title\": null,\r\n            \"phoneNumber\": null,\r\n            \"extension\": null,\r\n            \"personalMeetingUrls\": [],\r\n            \"settings\": {\r\n                \"webConferencesRecorded\": true,\r\n                \"preventWebConferenceRecording\": false,\r\n                \"telephonyCallsImported\": true,\r\n                \"emailsImported\": true,\r\n                \"preventEmailImport\": false,\r\n                \"nonRecordedMeetingsImported\": true\r\n            },\r\n            \"managerId\": null,\r\n            \"meetingConsentPageUrl\": null,\r\n            \"spokenLanguages\": [\r\n                {\r\n                    \"language\": \"en-US\",\r\n                    \"primary\": true\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"id\": \"1552073903971264464\",\r\n            \"emailAddress\": \"rajeshece39@gmail.com\",\r\n            \"created\": \"2022-10-25T04:21:50.486-04:00\",\r\n            \"active\": true,\r\n            \"emailAliases\": [],\r\n            \"firstName\": \"Rajesh Kumar\",\r\n            \"lastName\": \"A\",\r\n            \"title\": null,\r\n            \"phoneNumber\": \"9944093779\",\r\n            \"extension\": null,\r\n            \"personalMeetingUrls\": [],\r\n            \"settings\": {\r\n                \"webConferencesRecorded\": true,\r\n                \"preventWebConferenceRecording\": false,\r\n                \"telephonyCallsImported\": true,\r\n                \"emailsImported\": true,\r\n                \"preventEmailImport\": false,\r\n                \"nonRecordedMeetingsImported\": true\r\n            },\r\n            \"managerId\": null,\r\n            \"meetingConsentPageUrl\": null,\r\n            \"spokenLanguages\": [\r\n                {\r\n                    \"language\": \"en-IN\",\r\n                    \"primary\": true\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"id\": \"8986892907358568631\",\r\n            \"emailAddress\": \"eantony@koncert.com\",\r\n            \"created\": \"2022-11-08T02:28:32.178-05:00\",\r\n            \"active\": true,\r\n            \"emailAliases\": [],\r\n            \"firstName\": \"Edwin\",\r\n            \"lastName\": \"Antony\",\r\n            \"title\": null,\r\n            \"phoneNumber\": \"(703) 372-9044\",\r\n            \"extension\": null,\r\n            \"personalMeetingUrls\": [],\r\n            \"settings\": {\r\n                \"webConferencesRecorded\": true,\r\n                \"preventWebConferenceRecording\": false,\r\n                \"telephonyCallsImported\": true,\r\n                \"emailsImported\": true,\r\n                \"preventEmailImport\": false,\r\n                \"nonRecordedMeetingsImported\": true\r\n            },\r\n            \"managerId\": null,\r\n            \"meetingConsentPageUrl\": null,\r\n            \"spokenLanguages\": []\r\n        }\r\n    ]\r\n}"}],"_postman_id":"a3dd1c36-79c4-4e2c-b1bf-f6fbe0994890"},{"name":"Users","id":"80318611-6ff8-45b4-b275-dcb974ebf9a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[{\r\n    \"thirdPartyCrmId\": 1,\r\n    \"name\": \"Anu Soundar\",\r\n    \"email\": \"asoundar@koncert.com\"\r\n}]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/assignUsers/:crmType","description":"<p>Assign our koncert users to Salesloft or outreach or gong.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","assignUsers",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"a1f869f7-2ef3-4599-af21-73369ec0d6ba","type":"any","value":"Salesloft","key":"crmType"}]}},"response":[{"id":"4149e43d-f2a8-48e2-bc58-399d7a5fe81a","name":"Users","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[{\r\n    \"id\": 1,\r\n    \"name\": \"Anu Soundar\",\r\n    \"email\": \"asoundar@koncert.com\"\r\n}]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/thirdPartyCrm/assignUsers/:crmType","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["thirdPartyCrm","assignUsers",":crmType"],"variable":[{"key":"crmType","value":null}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 11663,\r\n            \"sfUserId\": \"0052w000009FZNSAA4\",\r\n            \"name\": \"BaseApp Test  Manager\",\r\n            \"userType\": null,\r\n            \"loginName\": \"praveenkumar49@aol.com\",\r\n            \"email\": \"asoundar@koncert.com\",\r\n            \"userLicense\": \"TD,PD,CD,TC\",\r\n            \"startUpPageShowFlag\": \"Y\",\r\n            \"reportFolder\": \" \",\r\n            \"talkerSessionMode\": \"macro\",\r\n            \"timeZone\": \"America/New_York\",\r\n            \"talkerAgentType\": \"Level 1\",\r\n            \"talkerPhoneType\": \"SIP\",\r\n            \"transferPacingPerHour\": 7,\r\n            \"prioritizationDelayMinutes\": 15,\r\n            \"transferUrl\": null,\r\n            \"isManagerUser\": \"Y\",\r\n            \"lastProductType\": \"TD\",\r\n            \"lastProductUrl\": \"https://dev.koncert.com/tddialerserver/dialerserver\",\r\n            \"rcUrl\": null,\r\n            \"bullhornUserType\": \"Sales\",\r\n            \"isSimulatorUser\": \"N\",\r\n            \"allowCallMeJoinConference\": \"Y\",\r\n            \"phoneNumber\": null,\r\n            \"isInternalUser\": \"N\",\r\n            \"isActive\": \"Y\",\r\n            \"callRecordingEnabledByManager\": \"Y\",\r\n            \"callRecordingUserPermission\": \"NYN\",\r\n            \"callRecordingEnabledByUser\": \"Y\",\r\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n            \"enableScheduleCheck\": \"N\",\r\n            \"isAdminUser\": \"Y\",\r\n            \"allowAdaptilytics\": \"N\",\r\n            \"allowModifyAdaptilyticsSettings\": \"N\",\r\n            \"allowDataEnrichment\": \"N\",\r\n            \"allowModifyDataEnrichmentSettings\": \"N\",\r\n            \"token\": null,\r\n            \"cdPhoneMinutesUsed\": null,\r\n            \"showAccountsBy\": \"MY_ACCOUNT\",\r\n            \"isTrucadenceLeftmenuExpanded\": null,\r\n            \"accessTokenCreatedAt\": null,\r\n            \"accessTokenExpiresIn\": null,\r\n            \"outreachUserId\":null,\r\n            \"gongUserId\": 134532,\r\n            \"lastExecutedDataListIds\": \"13748\",\r\n            \"hasCreateEmailTemplate\": true,\r\n            \"hasCreateCadence\": true,\r\n            \"salesloftUserId\": 16675,\r\n            \"salesloftGuid\":\"3e42cada-ae32-3c78-8b30-6a23d0565dfb\",\r\n            \"showLeadScorePopup\": \"N\",\r\n            \"remoteCoachCallListenUsers\": [],\r\n            \"remoteCoachCallListen\": false,\r\n            \"createdBy\": \"Base-App\",\r\n            \"modifiedBy\": \"cl master\",\r\n            \"createdDate\": \"2022-11-21T12:28:56Z\",\r\n            \"modifiedDate\": \"2022-11-22T04:57:29Z\",\r\n            \"zipwhipSessionKey\": null,\r\n            \"regionId\": \"US_EAST_1\",\r\n            \"firstName\": null,\r\n            \"lastName\": null,\r\n            \"isCreateAddProspect\": true,\r\n            \"defaultActivityFilter\": null,\r\n            \"displayName\": \"BaseApp Test  Manager\",\r\n            \"isEmailPreviewEnabled\": true,\r\n            \"emailFontFace\": \"Arial\",\r\n            \"emailFontSize\": 11,\r\n            \"defaultCadenceWidgets\": null,\r\n            \"openExternalLinksInNewWindow\": false,\r\n            \"hubspotUserId\": null,\r\n            \"apiEnabled\": false,\r\n            \"exportProspects\": false,\r\n            \"isFirstTimeUser\": false,\r\n            \"associations\": {\r\n                \"org\": [\r\n                    {\r\n                        \"id\": 5469\r\n                    }\r\n                ]\r\n            },\r\n            \"signupUser\": null,\r\n            \"allowSwitchingBetweenGeoLocations\": \"false\",\r\n            \"location\": null\r\n        }\r\n    ]\r\n}"}],"_postman_id":"80318611-6ff8-45b4-b275-dcb974ebf9a6"},{"name":"Call Disposition Mapping Banner Notification Copy","id":"f7ad3de7-943b-43c2-af41-deee419abd53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/bannerNotification/:crmType","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["thirdPartyCrm","bannerNotification",":crmType"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"67cce15d-415b-4ce5-8d0f-fbbe598117d9","type":"any","value":null,"key":"crmType"}]}},"response":[{"id":"97123153-a164-4249-a488-4093f9df8745","name":"Salesloft Banner Notification","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/bannerNotification/Salesloft"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"error\",\n    \"errors\": [\n        {\n            \"errorCode\": \"SYSTEM_ERROR\",\n            \"message\": \"One or more dispositions may be deleted or unavailable in SalesLoft. Please contact your Koncert Administrator to map the missing dispositions.\"\n        }\n    ],\n    \"requestId\": \"8ede944a-2f7d-35cb-b4c6-26d78f3e47a6\"\n}"},{"id":"eb8332f2-654d-4be7-b54a-e44a6cc7e31b","name":"Outreach Banner Notification","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/thirdPartyCrm/bannerNotification/Outreach"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"error\",\n    \"errors\": [\n        {\n            \"errorCode\": \"SYSTEM_ERROR\",\n            \"message\": \"One or more dispositions may be deleted or unavailable in Outreach. Please contact your Koncert Administrator to map the missing dispositions.\"\n        }\n    ],\n    \"requestId\": \"8ede944a-2f7d-35cb-b4c6-26d78f3e47a6\"\n}"}],"_postman_id":"f7ad3de7-943b-43c2-af41-deee419abd53"}],"id":"0d197257-b4e3-4cdd-ac79-2325bf0bb388","description":"<p>Integrate third party CRM like SALESLOFT,OUTREACH and GONG CRM's.</p>\n<p>Path variables should be in <strong>Salesloft</strong>, <strong>Outreach</strong>, <strong>Gong.</strong></p>\n","_postman_id":"0d197257-b4e3-4cdd-ac79-2325bf0bb388","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Teams","item":[{"name":"teams","id":"4cd2ba6a-07b5-4b7f-a118-cbdb462bad0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/team","description":"<p>Get all the teams from org.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>Long</code></td>\n<td>unique value of the data.</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>name of the team.</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>createdDate  <br /><code>timestamp</code></td>\n<td>team created datetime</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>modifiedDate  <br /><code>timestamp</code></td>\n<td>team edited datetime</td>\n<td><code>Filterable   Sortable</code></td>\n</tr>\n<tr>\n<td>user</td>\n<td>assigned users under team</td>\n<td><code>IncludeAssociation</code></td>\n</tr>\n<tr>\n<td>manager</td>\n<td>managers of created team</td>\n<td><code>IncludeAssociation</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["team"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"35d0cf7b-f37e-4a06-b2e1-8a2e9827f482","name":"teams","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/team"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 10537,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10545,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10541,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10534,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 9597\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10538,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 9597\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10542,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 9597\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10546,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 9597\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10536,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 10306\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10544,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 10306\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10548,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 10306\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10540,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 10306\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10535,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7431\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10547,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7432\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10543,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7844\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 10539,\r\n            \"name\": \"MG SQUAD 1\",\r\n            \"createdDate\": \"2022-05-10T07:20:09Z\",\r\n            \"modifiedDate\": \"2022-09-05T12:51:31Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ],\r\n    \"includedAssociations\": {\r\n        \"user\": [\r\n            {\r\n                \"id\": 7424,\r\n                \"sfUserId\": \"STD-7881\",\r\n                \"name\": \"API Client Manager\",\r\n                \"userType\": null,\r\n                \"loginName\": \"apiclientmanager\",\r\n                \"email\": \"asoundar@connectleader.com\",\r\n                \"userLicense\": \"AIDML,AIDSL,TC,PD\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"Connect Leader\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"America/New_York\",\r\n                \"talkerAgentType\": \"Level 1\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 0,\r\n                \"transferUrl\": \"\",\r\n                \"lastProductType\": \"PD\",\r\n                \"lastProductUrl\": \"https://developmentds.koncert.com/pddialerserver/dialerserver\",\r\n                \"rcUrl\": \"https://devds.koncert.com/remotecoach/rcserver\",\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"Y\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"phoneNumber\": \"917667881192\",\r\n                \"isInternalUser\": \"N\",\r\n                \"callRecordingEnabledByManager\": \"N\",\r\n                \"callRecordingUserPermission\": \"NYN\",\r\n                \"callRecordingEnabledByUser\": \"Y\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"allowAdaptilytics\": \"Y\",\r\n                \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"token\": null,\r\n                \"cdPhoneMinutesUsed\": 0,\r\n                \"showAccountsBy\": null,\r\n                \"purchaseCustomCallerIds\": false,\r\n                \"isTrucadenceLeftmenuExpanded\": false,\r\n                \"accessTokenCreatedAt\": null,\r\n                \"accessTokenExpiresIn\": null,\r\n                \"outreachUserId\": null,\r\n                \"gongUserId\": null,\r\n                \"lastExecutedDataListIds\": null,\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"salesloftUserId\": null,\r\n                \"salesloftGuid\": null,\r\n                \"showLeadScorePopup\": \"Y\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"cl master\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2020-06-01T22:50:09Z\",\r\n                \"modifiedDate\": \"2023-04-03T01:37:46Z\",\r\n                \"zipwhipSessionKey\": null,\r\n                \"firstName\": null,\r\n                \"lastName\": null,\r\n                \"isCreateAddProspect\": true,\r\n                \"defaultActivityFilter\": \"all\",\r\n                \"displayName\": \"API Client Manager\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Arial\",\r\n                \"emailFontSize\": 12,\r\n                \"defaultCadenceWidgets\": null,\r\n                \"openExternalLinksInNewWindow\": false,\r\n                \"hubspotUserId\": 26158336,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": true,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 2355\r\n                        }\r\n                    ]\r\n                },\r\n                \"signupUser\": null,\r\n                \"allowSwitchingBetweenGeoLocations\": null,\r\n                \"location\": null,\r\n                \"allowMultiEmailAccounts\": null,\r\n                \"salesloftVerifiedFlag\": true,\r\n                \"outreachVerifiedFlag\": false,\r\n                \"defaultManager\": -1,\r\n                \"crmtemplateLoadingPage\": \"remotecoach\",\r\n                \"enableCrmEmailIcon\": false,\r\n                \"workEndHour\": null,\r\n                \"fallthroughPendingCalls\": false,\r\n                \"sendEmailOnSessionStart\": false,\r\n                \"allowUserToeditListUploadedByManager\": \"Y\",\r\n                \"workStartHour\": null,\r\n                \"fallthroughTodo\": true,\r\n                \"region\": \"US_EAST_1\",\r\n                \"admin\": \"Y\",\r\n                \"active\": \"Y\",\r\n                \"manager\": \"Y\"\r\n            },\r\n            {\r\n                \"id\": 7844,\r\n                \"sfUserId\": \"STD-12333\",\r\n                \"name\": \"apiclientmanager2\",\r\n                \"userType\": null,\r\n                \"loginName\": \"apiclientmanager2\",\r\n                \"email\": \"apiclientmanager2\",\r\n                \"userLicense\": \"TC\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"Connect Leader\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"America/Fort_Wayne\",\r\n                \"talkerAgentType\": \"Level 1\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 0,\r\n                \"transferUrl\": \"\",\r\n                \"lastProductType\": \"TD\",\r\n                \"lastProductUrl\": \"http://10.5.3.77:80/dialerserver/dialerserver\",\r\n                \"rcUrl\": null,\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"N\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"phoneNumber\": \"\",\r\n                \"isInternalUser\": \"N\",\r\n                \"callRecordingEnabledByManager\": \"Y\",\r\n                \"callRecordingUserPermission\": \"YYY\",\r\n                \"callRecordingEnabledByUser\": \"Y\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"allowAdaptilytics\": \"Y\",\r\n                \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"token\": null,\r\n                \"cdPhoneMinutesUsed\": 0,\r\n                \"showAccountsBy\": null,\r\n                \"purchaseCustomCallerIds\": true,\r\n                \"isTrucadenceLeftmenuExpanded\": true,\r\n                \"accessTokenCreatedAt\": null,\r\n                \"accessTokenExpiresIn\": null,\r\n                \"outreachUserId\": null,\r\n                \"gongUserId\": null,\r\n                \"lastExecutedDataListIds\": null,\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"salesloftUserId\": null,\r\n                \"salesloftGuid\": null,\r\n                \"showLeadScorePopup\": \"Y\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"cl master\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2020-09-29T07:53:00Z\",\r\n                \"modifiedDate\": \"2023-04-03T01:37:46Z\",\r\n                \"zipwhipSessionKey\": null,\r\n                \"firstName\": null,\r\n                \"lastName\": null,\r\n                \"isCreateAddProspect\": false,\r\n                \"defaultActivityFilter\": null,\r\n                \"displayName\": \"apiclientmanager2\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Arial\",\r\n                \"emailFontSize\": 11,\r\n                \"defaultCadenceWidgets\": null,\r\n                \"openExternalLinksInNewWindow\": true,\r\n                \"hubspotUserId\": null,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": true,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 2355\r\n                        }\r\n                    ]\r\n                },\r\n                \"signupUser\": null,\r\n                \"allowSwitchingBetweenGeoLocations\": null,\r\n                \"location\": null,\r\n                \"allowMultiEmailAccounts\": null,\r\n                \"salesloftVerifiedFlag\": false,\r\n                \"outreachVerifiedFlag\": false,\r\n                \"defaultManager\": -1,\r\n                \"crmtemplateLoadingPage\": \"managelist\",\r\n                \"enableCrmEmailIcon\": false,\r\n                \"workEndHour\": null,\r\n                \"fallthroughPendingCalls\": false,\r\n                \"sendEmailOnSessionStart\": false,\r\n                \"allowUserToeditListUploadedByManager\": \"N\",\r\n                \"workStartHour\": null,\r\n                \"fallthroughTodo\": true,\r\n                \"region\": \"US_EAST_1\",\r\n                \"admin\": \"N\",\r\n                \"active\": \"Y\",\r\n                \"manager\": \"Y\"\r\n            },\r\n            {\r\n                \"id\": 7432,\r\n                \"sfUserId\": \"STD-8081\",\r\n                \"name\": \"API Client User\",\r\n                \"userType\": null,\r\n                \"loginName\": \"apiclientuser\",\r\n                \"email\": \"vgovarathanam@gembrill.com\",\r\n                \"userLicense\": \"TD,PD,CD\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"Connect Leader\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"America/New_York\",\r\n                \"talkerAgentType\": \"Level 1\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 0,\r\n                \"transferUrl\": \"\",\r\n                \"lastProductType\": \"PD\",\r\n                \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\r\n                \"rcUrl\": null,\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"N\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"phoneNumber\": \"919087836567\",\r\n                \"isInternalUser\": \"N\",\r\n                \"callRecordingEnabledByManager\": \"Y\",\r\n                \"callRecordingUserPermission\": \"YYY\",\r\n                \"callRecordingEnabledByUser\": \"Y\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"allowAdaptilytics\": \"Y\",\r\n                \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"token\": null,\r\n                \"cdPhoneMinutesUsed\": 0,\r\n                \"showAccountsBy\": null,\r\n                \"purchaseCustomCallerIds\": false,\r\n                \"isTrucadenceLeftmenuExpanded\": true,\r\n                \"accessTokenCreatedAt\": null,\r\n                \"accessTokenExpiresIn\": null,\r\n                \"outreachUserId\": null,\r\n                \"gongUserId\": null,\r\n                \"lastExecutedDataListIds\": null,\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"salesloftUserId\": null,\r\n                \"salesloftGuid\": null,\r\n                \"showLeadScorePopup\": \"Y\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"cl master\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2020-06-03T04:29:38Z\",\r\n                \"modifiedDate\": \"2023-04-03T01:37:46Z\",\r\n                \"zipwhipSessionKey\": null,\r\n                \"firstName\": null,\r\n                \"lastName\": null,\r\n                \"isCreateAddProspect\": true,\r\n                \"defaultActivityFilter\": \"all\",\r\n                \"displayName\": \"API Client User\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Impact\",\r\n                \"emailFontSize\": 36,\r\n                \"defaultCadenceWidgets\": null,\r\n                \"openExternalLinksInNewWindow\": true,\r\n                \"hubspotUserId\": null,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": true,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 2355\r\n                        }\r\n                    ]\r\n                },\r\n                \"signupUser\": null,\r\n                \"allowSwitchingBetweenGeoLocations\": null,\r\n                \"location\": null,\r\n                \"allowMultiEmailAccounts\": null,\r\n                \"salesloftVerifiedFlag\": false,\r\n                \"outreachVerifiedFlag\": false,\r\n                \"defaultManager\": -1,\r\n                \"crmtemplateLoadingPage\": \"\",\r\n                \"enableCrmEmailIcon\": false,\r\n                \"workEndHour\": null,\r\n                \"fallthroughPendingCalls\": false,\r\n                \"sendEmailOnSessionStart\": false,\r\n                \"allowUserToeditListUploadedByManager\": \"Y\",\r\n                \"workStartHour\": null,\r\n                \"fallthroughTodo\": false,\r\n                \"region\": \"US_EAST_1\",\r\n                \"admin\": \"N\",\r\n                \"active\": \"Y\",\r\n                \"manager\": \"N\"\r\n            },\r\n            {\r\n                \"id\": 7431,\r\n                \"sfUserId\": \"STD-8079\",\r\n                \"name\": \"API Client\",\r\n                \"userType\": null,\r\n                \"loginName\": \"apiclientadmin\",\r\n                \"email\": \"asoundar@connectleader.com\",\r\n                \"userLicense\": \"\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"Pacific/Niue\",\r\n                \"talkerAgentType\": \"Level 1\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 0,\r\n                \"transferUrl\": \"\",\r\n                \"lastProductType\": \"CD\",\r\n                \"lastProductUrl\": \"https://dev.koncert.com/clcti/ctiservice/\",\r\n                \"rcUrl\": null,\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"N\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"phoneNumber\": \"\",\r\n                \"isInternalUser\": \"N\",\r\n                \"callRecordingEnabledByManager\": \"Y\",\r\n                \"callRecordingUserPermission\": \"NYN\",\r\n                \"callRecordingEnabledByUser\": \"Y\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"allowAdaptilytics\": \"Y\",\r\n                \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"token\": null,\r\n                \"cdPhoneMinutesUsed\": 0,\r\n                \"showAccountsBy\": null,\r\n                \"purchaseCustomCallerIds\": false,\r\n                \"isTrucadenceLeftmenuExpanded\": true,\r\n                \"accessTokenCreatedAt\": null,\r\n                \"accessTokenExpiresIn\": null,\r\n                \"outreachUserId\": null,\r\n                \"gongUserId\": null,\r\n                \"lastExecutedDataListIds\": null,\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"salesloftUserId\": 62691,\r\n                \"salesloftGuid\": \"3605ba06-4e59-43c5-919c-330dbb92b83c\",\r\n                \"showLeadScorePopup\": \"Y\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"cl master\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2020-06-03T04:25:12Z\",\r\n                \"modifiedDate\": \"2023-04-03T01:37:46Z\",\r\n                \"zipwhipSessionKey\": null,\r\n                \"firstName\": null,\r\n                \"lastName\": null,\r\n                \"isCreateAddProspect\": true,\r\n                \"defaultActivityFilter\": null,\r\n                \"displayName\": \"API Client\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Arial\",\r\n                \"emailFontSize\": 11,\r\n                \"defaultCadenceWidgets\": null,\r\n                \"openExternalLinksInNewWindow\": true,\r\n                \"hubspotUserId\": null,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": true,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 2355\r\n                        }\r\n                    ]\r\n                },\r\n                \"signupUser\": null,\r\n                \"allowSwitchingBetweenGeoLocations\": null,\r\n                \"location\": null,\r\n                \"allowMultiEmailAccounts\": null,\r\n                \"salesloftVerifiedFlag\": true,\r\n                \"outreachVerifiedFlag\": false,\r\n                \"defaultManager\": -1,\r\n                \"crmtemplateLoadingPage\": \"reports\",\r\n                \"enableCrmEmailIcon\": false,\r\n                \"workEndHour\": null,\r\n                \"fallthroughPendingCalls\": false,\r\n                \"sendEmailOnSessionStart\": false,\r\n                \"allowUserToeditListUploadedByManager\": \"N\",\r\n                \"workStartHour\": null,\r\n                \"fallthroughTodo\": false,\r\n                \"region\": \"US_EAST_1\",\r\n                \"admin\": \"N\",\r\n                \"active\": \"Y\",\r\n                \"manager\": \"Y\"\r\n            }\r\n        ],\r\n        \"manager\": [\r\n            {\r\n                \"id\": 7424,\r\n                \"sfUserId\": \"STD-7881\",\r\n                \"name\": \"API Client Manager\",\r\n                \"userType\": null,\r\n                \"loginName\": \"apiclientmanager\",\r\n                \"email\": \"asoundar@connectleader.com\",\r\n                \"userLicense\": \"AIDML,AIDSL,TC,PD\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"Connect Leader\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"America/New_York\",\r\n                \"talkerAgentType\": \"Level 1\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 0,\r\n                \"transferUrl\": \"\",\r\n                \"lastProductType\": \"PD\",\r\n                \"lastProductUrl\": \"https://developmentds.koncert.com/pddialerserver/dialerserver\",\r\n                \"rcUrl\": \"https://devds.koncert.com/remotecoach/rcserver\",\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"Y\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"phoneNumber\": \"917667881192\",\r\n                \"isInternalUser\": \"N\",\r\n                \"callRecordingEnabledByManager\": \"N\",\r\n                \"callRecordingUserPermission\": \"NYN\",\r\n                \"callRecordingEnabledByUser\": \"Y\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"allowAdaptilytics\": \"Y\",\r\n                \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"token\": null,\r\n                \"cdPhoneMinutesUsed\": 0,\r\n                \"showAccountsBy\": null,\r\n                \"purchaseCustomCallerIds\": false,\r\n                \"isTrucadenceLeftmenuExpanded\": false,\r\n                \"accessTokenCreatedAt\": null,\r\n                \"accessTokenExpiresIn\": null,\r\n                \"outreachUserId\": null,\r\n                \"gongUserId\": null,\r\n                \"lastExecutedDataListIds\": null,\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"salesloftUserId\": null,\r\n                \"salesloftGuid\": null,\r\n                \"showLeadScorePopup\": \"Y\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"cl master\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2020-06-01T22:50:09Z\",\r\n                \"modifiedDate\": \"2023-04-03T01:37:46Z\",\r\n                \"zipwhipSessionKey\": null,\r\n                \"firstName\": null,\r\n                \"lastName\": null,\r\n                \"isCreateAddProspect\": true,\r\n                \"defaultActivityFilter\": \"all\",\r\n                \"displayName\": \"API Client Manager\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Arial\",\r\n                \"emailFontSize\": 12,\r\n                \"defaultCadenceWidgets\": null,\r\n                \"openExternalLinksInNewWindow\": false,\r\n                \"hubspotUserId\": 26158336,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": true,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 2355\r\n                        }\r\n                    ]\r\n                },\r\n                \"signupUser\": null,\r\n                \"allowSwitchingBetweenGeoLocations\": null,\r\n                \"location\": null,\r\n                \"allowMultiEmailAccounts\": null,\r\n                \"salesloftVerifiedFlag\": true,\r\n                \"outreachVerifiedFlag\": false,\r\n                \"defaultManager\": -1,\r\n                \"crmtemplateLoadingPage\": \"remotecoach\",\r\n                \"enableCrmEmailIcon\": false,\r\n                \"workEndHour\": null,\r\n                \"fallthroughPendingCalls\": false,\r\n                \"sendEmailOnSessionStart\": false,\r\n                \"allowUserToeditListUploadedByManager\": \"Y\",\r\n                \"workStartHour\": null,\r\n                \"fallthroughTodo\": true,\r\n                \"region\": \"US_EAST_1\",\r\n                \"admin\": \"Y\",\r\n                \"active\": \"Y\",\r\n                \"manager\": \"Y\"\r\n            },\r\n            {\r\n                \"id\": 10958,\r\n                \"sfUserId\": \"STD-28253\",\r\n                \"name\": \"Manimegalai\",\r\n                \"userType\": null,\r\n                \"loginName\": \"apiuser24\",\r\n                \"email\": \"manimegalaieeesjce@outlook.com\",\r\n                \"userLicense\": \"TD,PD,CD,TC,AIDML,AIDSL\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"Connect Leader\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"America/New_York\",\r\n                \"talkerAgentType\": \"Level 1\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 0,\r\n                \"transferUrl\": \"\",\r\n                \"lastProductType\": \"TD\",\r\n                \"lastProductUrl\": \"https://developmentds.koncert.com/tddialerserver/dialerserver\",\r\n                \"rcUrl\": \"https://dev.koncert.com/remotecoach/rcserver\",\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"N\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"phoneNumber\": \"\",\r\n                \"isInternalUser\": \"N\",\r\n                \"callRecordingEnabledByManager\": \"Y\",\r\n                \"callRecordingUserPermission\": \"NYN\",\r\n                \"callRecordingEnabledByUser\": \"Y\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"allowAdaptilytics\": \"Y\",\r\n                \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"token\": null,\r\n                \"cdPhoneMinutesUsed\": 0,\r\n                \"showAccountsBy\": null,\r\n                \"purchaseCustomCallerIds\": true,\r\n                \"isTrucadenceLeftmenuExpanded\": true,\r\n                \"accessTokenCreatedAt\": null,\r\n                \"accessTokenExpiresIn\": null,\r\n                \"outreachUserId\": null,\r\n                \"gongUserId\": null,\r\n                \"lastExecutedDataListIds\": null,\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"salesloftUserId\": null,\r\n                \"salesloftGuid\": null,\r\n                \"showLeadScorePopup\": \"Y\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"cl master\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2022-08-18T03:52:59Z\",\r\n                \"modifiedDate\": \"2023-04-03T01:37:46Z\",\r\n                \"zipwhipSessionKey\": null,\r\n                \"firstName\": null,\r\n                \"lastName\": null,\r\n                \"isCreateAddProspect\": true,\r\n                \"defaultActivityFilter\": \"all\",\r\n                \"displayName\": \"Manimegalai\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Arial\",\r\n                \"emailFontSize\": 14,\r\n                \"defaultCadenceWidgets\": null,\r\n                \"openExternalLinksInNewWindow\": true,\r\n                \"hubspotUserId\": null,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": false,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 2355\r\n                        }\r\n                    ]\r\n                },\r\n                \"signupUser\": null,\r\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\r\n                \"location\": null,\r\n                \"allowMultiEmailAccounts\": null,\r\n                \"salesloftVerifiedFlag\": false,\r\n                \"outreachVerifiedFlag\": false,\r\n                \"defaultManager\": -1,\r\n                \"crmtemplateLoadingPage\": \"mysession\",\r\n                \"enableCrmEmailIcon\": false,\r\n                \"workEndHour\": null,\r\n                \"fallthroughPendingCalls\": false,\r\n                \"sendEmailOnSessionStart\": false,\r\n                \"allowUserToeditListUploadedByManager\": \"Y\",\r\n                \"workStartHour\": null,\r\n                \"fallthroughTodo\": true,\r\n                \"region\": \"US_EAST_1\",\r\n                \"admin\": \"Y\",\r\n                \"active\": \"Y\",\r\n                \"manager\": \"N\"\r\n            },\r\n            {\r\n                \"id\": 9597,\r\n                \"sfUserId\": \"STD-22398\",\r\n                \"name\": \"hikehikenew\",\r\n                \"userType\": null,\r\n                \"loginName\": \"hike\",\r\n                \"email\": \"hike@gmail.com\",\r\n                \"userLicense\": \"\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"Connect Leader\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"America/Nome\",\r\n                \"talkerAgentType\": \"Level 1\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 15,\r\n                \"transferUrl\": \"\",\r\n                \"lastProductType\": \"TD\",\r\n                \"lastProductUrl\": null,\r\n                \"rcUrl\": null,\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"N\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"phoneNumber\": null,\r\n                \"isInternalUser\": \"N\",\r\n                \"callRecordingEnabledByManager\": \"N\",\r\n                \"callRecordingUserPermission\": \"NNN\",\r\n                \"callRecordingEnabledByUser\": \"N\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"allowAdaptilytics\": \"Y\",\r\n                \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"token\": null,\r\n                \"cdPhoneMinutesUsed\": 0,\r\n                \"showAccountsBy\": \"MY_ACCOUNT\",\r\n                \"purchaseCustomCallerIds\": false,\r\n                \"isTrucadenceLeftmenuExpanded\": true,\r\n                \"accessTokenCreatedAt\": null,\r\n                \"accessTokenExpiresIn\": null,\r\n                \"outreachUserId\": null,\r\n                \"gongUserId\": null,\r\n                \"lastExecutedDataListIds\": null,\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"salesloftUserId\": null,\r\n                \"salesloftGuid\": null,\r\n                \"showLeadScorePopup\": \"Y\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"cl master\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2022-01-26T04:23:50Z\",\r\n                \"modifiedDate\": \"2023-04-03T01:37:46Z\",\r\n                \"zipwhipSessionKey\": null,\r\n                \"firstName\": null,\r\n                \"lastName\": null,\r\n                \"isCreateAddProspect\": false,\r\n                \"defaultActivityFilter\": null,\r\n                \"displayName\": \"hikehikenew\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Arial\",\r\n                \"emailFontSize\": 11,\r\n                \"defaultCadenceWidgets\": null,\r\n                \"openExternalLinksInNewWindow\": true,\r\n                \"hubspotUserId\": null,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": false,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 2355\r\n                        }\r\n                    ]\r\n                },\r\n                \"signupUser\": null,\r\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\r\n                \"location\": null,\r\n                \"allowMultiEmailAccounts\": null,\r\n                \"salesloftVerifiedFlag\": false,\r\n                \"outreachVerifiedFlag\": false,\r\n                \"defaultManager\": -1,\r\n                \"crmtemplateLoadingPage\": \"managelist\",\r\n                \"enableCrmEmailIcon\": false,\r\n                \"workEndHour\": null,\r\n                \"fallthroughPendingCalls\": false,\r\n                \"sendEmailOnSessionStart\": false,\r\n                \"allowUserToeditListUploadedByManager\": \"Y\",\r\n                \"workStartHour\": null,\r\n                \"fallthroughTodo\": true,\r\n                \"region\": \"US_EAST_1\",\r\n                \"admin\": \"N\",\r\n                \"active\": \"Y\",\r\n                \"manager\": \"N\"\r\n            },\r\n            {\r\n                \"id\": 10306,\r\n                \"sfUserId\": \"STD-24611\",\r\n                \"name\": \"Rajesh_Dev\",\r\n                \"userType\": null,\r\n                \"loginName\": \"Rajesh_Dev\",\r\n                \"email\": \"dialer650@yahoo.com\",\r\n                \"userLicense\": \"PD,CD,TC\",\r\n                \"startUpPageShowFlag\": \"Y\",\r\n                \"reportFolder\": \"Connect Leader\",\r\n                \"talkerSessionMode\": \"macro\",\r\n                \"timeZone\": \"America/New_York\",\r\n                \"talkerAgentType\": \"Level 1\",\r\n                \"talkerPhoneType\": \"SIP\",\r\n                \"transferPacingPerHour\": 7,\r\n                \"prioritizationDelayMinutes\": 0,\r\n                \"transferUrl\": \"\",\r\n                \"lastProductType\": \"PD\",\r\n                \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\r\n                \"rcUrl\": null,\r\n                \"bullhornUserType\": \"Sales\",\r\n                \"isSimulatorUser\": \"N\",\r\n                \"allowCallMeJoinConference\": \"Y\",\r\n                \"phoneNumber\": \"\",\r\n                \"isInternalUser\": \"N\",\r\n                \"callRecordingEnabledByManager\": \"N\",\r\n                \"callRecordingUserPermission\": \"NNN\",\r\n                \"callRecordingEnabledByUser\": \"N\",\r\n                \"callRecordingDisabledForTwoPartyConsent\": \"N\",\r\n                \"enableScheduleCheck\": \"N\",\r\n                \"allowAdaptilytics\": \"Y\",\r\n                \"allowModifyAdaptilyticsSettings\": \"Y\",\r\n                \"allowDataEnrichment\": \"N\",\r\n                \"allowModifyDataEnrichmentSettings\": \"N\",\r\n                \"token\": null,\r\n                \"cdPhoneMinutesUsed\": 0,\r\n                \"showAccountsBy\": null,\r\n                \"purchaseCustomCallerIds\": false,\r\n                \"isTrucadenceLeftmenuExpanded\": true,\r\n                \"accessTokenCreatedAt\": null,\r\n                \"accessTokenExpiresIn\": null,\r\n                \"outreachUserId\": null,\r\n                \"gongUserId\": null,\r\n                \"lastExecutedDataListIds\": null,\r\n                \"hasCreateEmailTemplate\": true,\r\n                \"hasCreateCadence\": true,\r\n                \"salesloftUserId\": null,\r\n                \"salesloftGuid\": null,\r\n                \"showLeadScorePopup\": \"Y\",\r\n                \"remoteCoachCallListenUsers\": [],\r\n                \"remoteCoachCallListen\": false,\r\n                \"createdBy\": \"cl master\",\r\n                \"modifiedBy\": \"cl master\",\r\n                \"createdDate\": \"2022-04-28T05:28:44Z\",\r\n                \"modifiedDate\": \"2023-04-03T01:37:46Z\",\r\n                \"zipwhipSessionKey\": null,\r\n                \"firstName\": null,\r\n                \"lastName\": null,\r\n                \"isCreateAddProspect\": true,\r\n                \"defaultActivityFilter\": null,\r\n                \"displayName\": \"Rajesh_Dev\",\r\n                \"isEmailPreviewEnabled\": true,\r\n                \"emailFontFace\": \"Arial\",\r\n                \"emailFontSize\": 11,\r\n                \"defaultCadenceWidgets\": null,\r\n                \"openExternalLinksInNewWindow\": false,\r\n                \"hubspotUserId\": null,\r\n                \"apiEnabled\": false,\r\n                \"exportProspects\": false,\r\n                \"isFirstTimeUser\": false,\r\n                \"associations\": {\r\n                    \"org\": [\r\n                        {\r\n                            \"id\": 2355\r\n                        }\r\n                    ]\r\n                },\r\n                \"signupUser\": null,\r\n                \"allowSwitchingBetweenGeoLocations\": \"false\",\r\n                \"location\": null,\r\n                \"allowMultiEmailAccounts\": null,\r\n                \"salesloftVerifiedFlag\": false,\r\n                \"outreachVerifiedFlag\": false,\r\n                \"defaultManager\": -1,\r\n                \"crmtemplateLoadingPage\": \"mysession\",\r\n                \"enableCrmEmailIcon\": false,\r\n                \"workEndHour\": null,\r\n                \"fallthroughPendingCalls\": false,\r\n                \"sendEmailOnSessionStart\": false,\r\n                \"allowUserToeditListUploadedByManager\": \"Y\",\r\n                \"workStartHour\": null,\r\n                \"fallthroughTodo\": true,\r\n                \"region\": \"US_EAST_1\",\r\n                \"admin\": \"N\",\r\n                \"active\": \"Y\",\r\n                \"manager\": \"Y\"\r\n            }\r\n        ]\r\n    },\r\n    \"paging\": {\r\n        \"totalCount\": 15,\r\n        \"limit\": 25,\r\n        \"offset\": 0\r\n    }\r\n}"}],"_postman_id":"4cd2ba6a-07b5-4b7f-a118-cbdb462bad0c"},{"name":"team","id":"e244af6b-d145-4273-b098-bf89a0f010ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/team/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["team",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"7a8c7141-58ed-41e8-a963-27967776d399","type":"any","value":"768","key":"id"}]}},"response":[{"id":"2c267791-5adf-4364-9ee2-734ea4b192bf","name":"team","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/team/:id","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["team",":id"],"variable":[{"key":"id","value":"11715"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 11715,\r\n            \"name\": \"test 42\",\r\n            \"createdDate\": \"2023-04-05T06:02:42Z\",\r\n            \"modifiedDate\": \"2023-04-05T06:02:43Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"e244af6b-d145-4273-b098-bf89a0f010ba"},{"name":"team","id":"41314071-19ba-4892-992c-5f2f35cd4b6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"test  1\",\r\n    \"user\": [\r\n        {\r\n            \"id\": 10958\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ],\r\n    \"manager\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7661\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/team","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["team"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"d87ffbc7-c5f0-4552-a23a-1745ba3b3b8c","name":"team","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"test  1\",\r\n    \"user\": [\r\n        {\r\n            \"id\": 10958\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ],\r\n    \"manager\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7661\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/team"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 11679,\r\n            \"name\": \"test  1\",\r\n            \"createdDate\": \"2023-04-04T16:16:42Z\",\r\n            \"modifiedDate\": \"2023-04-04T16:16:42Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 11680,\r\n            \"name\": \"test  1\",\r\n            \"createdDate\": \"2023-04-04T16:16:42Z\",\r\n            \"modifiedDate\": \"2023-04-04T16:16:42Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 11681,\r\n            \"name\": \"test  1\",\r\n            \"createdDate\": \"2023-04-04T16:16:42Z\",\r\n            \"modifiedDate\": \"2023-04-04T16:16:42Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 11682,\r\n            \"name\": \"test  1\",\r\n            \"createdDate\": \"2023-04-04T16:16:42Z\",\r\n            \"modifiedDate\": \"2023-04-04T16:16:42Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"41314071-19ba-4892-992c-5f2f35cd4b6f"},{"name":"team","id":"7e55a0f2-1203-4b78-aacf-c0065cdd1e3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"test  1\",\r\n    \"user\": [\r\n        {\r\n            \"id\": 10958\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ],\r\n    \"manager\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7661\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/team/:name","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["team",":name"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"e2494bbb-9e90-400d-bb5e-4e051cb4bd5c","type":"any","value":"test 1","key":"name"}]}},"response":[{"id":"ae122d8d-e69c-4934-ac79-c0ec06655866","name":"team","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"MG\",\r\n    \"user\": [\r\n        {\r\n            \"id\": 10958\r\n        },\r\n        {\r\n            \"id\": 7660\r\n        }\r\n    ],\r\n    \"manager\": [\r\n        {\r\n            \"id\": 7424\r\n        },\r\n        {\r\n            \"id\": 7661\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{koncert_dialers_api}}/team/:name","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["team",":name"],"variable":[{"key":"name","value":"test 1"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"id\": 11779,\r\n            \"name\": \"MG\",\r\n            \"createdDate\": \"2023-04-05T08:20:45Z\",\r\n            \"modifiedDate\": \"2023-04-05T08:20:45Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 11780,\r\n            \"name\": \"MG\",\r\n            \"createdDate\": \"2023-04-05T08:20:45Z\",\r\n            \"modifiedDate\": \"2023-04-05T08:20:45Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 10958\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 11781,\r\n            \"name\": \"MG\",\r\n            \"createdDate\": \"2023-04-05T08:20:45Z\",\r\n            \"modifiedDate\": \"2023-04-05T08:20:45Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7424\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        {\r\n            \"id\": 11782,\r\n            \"name\": \"MG\",\r\n            \"createdDate\": \"2023-04-05T08:20:45Z\",\r\n            \"modifiedDate\": \"2023-04-05T08:20:45Z\",\r\n            \"associations\": {\r\n                \"user\": [\r\n                    {\r\n                        \"id\": 7660\r\n                    }\r\n                ],\r\n                \"manager\": [\r\n                    {\r\n                        \"id\": 7661\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"7e55a0f2-1203-4b78-aacf-c0065cdd1e3a"},{"name":"team","id":"e599490b-e639-4ec5-96cc-278bdf9fafb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{koncert_dialers_api}}/team/:name","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["team",":name"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"8d9f38c5-9427-4375-92b2-796f8bc292be","type":"any","value":null,"key":"name"}]}},"response":[{"id":"a53d7234-5688-4ba6-9696-f2ce06076416","name":"team","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/team/:name","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["team",":name"],"variable":[{"key":"name","value":"test"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\"response\":\"success\"}"}],"_postman_id":"e599490b-e639-4ec5-96cc-278bdf9fafb9"},{"name":"all teams","id":"1f365d6a-10f9-4972-9071-dbc98d74bc02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/team/all","urlObject":{"protocol":"https","path":["team","all"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"af4a513e-ec15-4e8b-9545-9a7e9c0ad4c1","name":"all teams","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/team/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"Default\",\n            \"associations\": {\n                \"user\": [\n                    {\n                        \"Id\": 14649\n                    },\n                    {\n                        \"Id\": 14654\n                    },\n                    {\n                        \"Id\": 14655\n                    }\n                ],\n                \"manager\": [\n                    {\n                        \"Id\": 14525\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"1f365d6a-10f9-4972-9071-dbc98d74bc02"}],"id":"50b5fbbe-d636-4b4f-9f0c-7925aa26025e","description":"<p>Teams contains managers and users. it will perform based on teams assigned under that koncert operations.</p>\n","_postman_id":"50b5fbbe-d636-4b4f-9f0c-7925aa26025e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"User","item":[{"name":"User Settings","item":[{"name":"Get All User Settings","id":"41511446-55b0-4937-82ea-6948aed66269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/users/settings?filter[user][id]=:[24047,24081,24079,26226,25017,25014,25043,24074,24701]&page[limit]=500","description":"<p>Retrieve all user settings with optional filters, pagination, and sorting</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users","settings"],"host":["{{koncert_dialers_api}}"],"query":[{"description":{"content":"<p>Filter by user IDs</p>\n","type":"text/plain"},"key":"filter[user][id]","value":":[24047,24081,24079,26226,25017,25014,25043,24074,24701]"},{"description":{"content":"<p>Pagination limit</p>\n","type":"text/plain"},"key":"page[limit]","value":"500"},{"disabled":true,"description":{"content":"<p>Pagination offset</p>\n","type":"text/plain"},"key":"page[offset]","value":"0"},{"disabled":true,"description":{"content":"<p>Sort by id</p>\n","type":"text/plain"},"key":"sort[id]","value":"asc"}],"variable":[]}},"response":[{"id":"c094b68e-33a1-48eb-af40-9d444f5f9990","name":"Success Response","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/users/settings?filter[user][id]=:[24047,24081,24079,26226,25017,25014,25043,24074,24701]&page[limit]=500","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["users","settings"],"query":[{"key":"filter[user][id]","value":":[24047,24081,24079,26226,25017,25014,25043,24074,24701]"},{"key":"page[limit]","value":"500"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"paging\": {\n        \"totalCount\": 69,\n        \"limit\": 500,\n        \"offset\": 0\n    },\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 3598,\n            \"group\": \"aiSummary\",\n            \"name\": \"autoGenerateAISummary\",\n            \"value\": \"true\",\n            \"active\": true,\n            \"code\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24701\n                }\n            }\n        },\n        {\n            \"id\": 2042,\n            \"group\": \"transcription\",\n            \"name\": \"transcriptionForEachDial\",\n            \"value\": \"true\",\n            \"active\": true,\n            \"code\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24047\n                }\n            }\n        },\n        {\n            \"id\": 2034,\n            \"group\": \"personalCallerIds\",\n            \"name\": \"countryCode\",\n            \"value\": \"228\",\n            \"active\": true,\n            \"code\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24047\n                }\n            }\n        },\n        {\n            \"id\": 2927,\n            \"group\": \"viewPermission\",\n            \"name\": \"administration\",\n            \"value\": \"true\",\n            \"active\": true,\n            \"code\": null,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24081\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"41511446-55b0-4937-82ea-6948aed66269"},{"name":"Create User Setting","id":"436fd143-1c17-4605-b21b-cc89a7e02124","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"user\": 24079,\n    \"value\": \"true\",\n    \"group\": \"viewPermission\",\n    \"name\": \"administration\",\n    \"active\": true\n}"},"url":"https://{{koncert_dialers_api}}/users/settings","description":"<p>Create a new user setting</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users","settings"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"7690e989-116c-4c3b-bba5-5bbf49bb6652","name":"Success Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"user\": 24079,\n    \"value\": \"true\",\n    \"group\": \"viewPermission\",\n    \"name\": \"administration\",\n    \"active\": true\n}"},"url":"https://{{koncert_dialers_api}}/users/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 9369,\n            \"group\": \"viewPermission\",\n            \"name\": \"administration\",\n            \"value\": \"true\",\n            \"active\": true,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24079\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"436fd143-1c17-4605-b21b-cc89a7e02124"},{"name":"Update User Setting","id":"9333abc6-6b76-4f37-aab1-1cf2d3ccb4c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"value\": \"false\",\n    \"group\": \"viewPermission\",\n    \"name\": \"administration\",\n    \"active\": true\n}"},"url":"https://{{koncert_dialers_api}}/users/settings/:userId/:id","description":"<p>Update an existing user setting</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users","settings",":userId",":id"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[{"id":"8ed9969e-2df7-493b-98a0-9fc2f2e6fa29","description":{"content":"<p>User ID</p>\n","type":"text/plain"},"type":"any","value":"24079","key":"userId"},{"id":"620400a5-15ab-4c56-af95-75d746174113","description":{"content":"<p>User Setting ID</p>\n","type":"text/plain"},"type":"any","value":"9369","key":"id"}]}},"response":[{"id":"ba28ece8-1dea-4fe4-940e-8e4bf614c9aa","name":"Success Response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"value\": \"false\",\n    \"group\": \"viewPermission\",\n    \"name\": \"administration\",\n    \"active\": true\n}"},"url":"https://{{koncert_dialers_api}}/users/settings/24079/9369"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 9369,\n            \"group\": \"viewPermission\",\n            \"name\": \"administration\",\n            \"value\": \"false\",\n            \"active\": true,\n            \"associations\": {\n                \"user\": {\n                    \"id\": 24079\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"9333abc6-6b76-4f37-aab1-1cf2d3ccb4c7"}],"id":"7ae417e8-3126-41b5-ba1e-078df628ec81","_postman_id":"7ae417e8-3126-41b5-ba1e-078df628ec81","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Users List","id":"66ced77b-606f-4060-beb6-317a24d34d89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/users","description":"<p>Get Users list</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"0c96c44c-35d9-431a-8142-c5a22dd4d9b5","name":"Users List","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:08:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6724,\n            \"sfUserId\": \"STD-32647\",\n            \"name\": \"Joy\",\n            \"userType\": null,\n            \"loginName\": \"v11admin2\",\n            \"email\": \"mtccadence3@yahoo.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"PD\",\n            \"lastProductUrl\": \"https://kcdapids.clclient.com/pds84/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"918667593212\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:16:55Z\",\n            \"modifiedDate\": \"2020-12-22T19:59:49Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Joy\",\n            \"associations\": {}\n        },\n        {\n            \"id\": 6716,\n            \"sfUserId\": \"Connector2575\",\n            \"name\": \"Connector Admin\",\n            \"userType\": null,\n            \"loginName\": \"admin2575\",\n            \"email\": \"connectoradmin2575@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": null,\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": null,\n            \"isInternalUser\": \"Y\",\n            \"isActive\": \"N\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:08:22Z\",\n            \"modifiedDate\": \"2020-12-22T19:59:49Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Connector Admin\",\n            \"associations\": {}\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 8,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"66ced77b-606f-4060-beb6-317a24d34d89"},{"name":"Self User","id":"4e5e73c0-a1f0-413e-be56-7e727ffdd47f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/users/me","description":"<p>Get user details associated with current access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users","me"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"39ba5da5-9578-4251-a4aa-fd01c3e7d860","name":"Self User","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/users/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:23:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 6717,\n            \"sfUserId\": \"STD-32621\",\n            \"name\": \"Edwin Antony\",\n            \"userType\": null,\n            \"loginName\": \"v11admin1\",\n            \"email\": \"mtccadence8@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"CD\",\n            \"lastProductUrl\": \"https://kcdapids.clclient.com/clcti/ctiservice/\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"918667593212\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"N\",\n            \"allowModifyAdaptilyticsSettings\": \"N\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 22.5,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-12-01T16:10:01Z\",\n            \"modifiedDate\": \"2020-12-30T17:11:18Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Edwin Antony\",\n            \"associations\": {}\n        }\n    ]\n}"}],"_postman_id":"4e5e73c0-a1f0-413e-be56-7e727ffdd47f"},{"name":"Team Users","id":"0391866f-7da1-471a-b64d-0110e6e07ee2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/users/team","description":"<p>Get team users details associated with current access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users","team"],"host":["{{koncert_dialers_api}}"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"a76b189b-b88e-429f-b81e-b71a945d89cb","name":"Team Users","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/team","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["team"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:45:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": 7424,\n            \"sfUserId\": \"STD-7881\",\n            \"name\": \"API Client Manager\",\n            \"userType\": null,\n            \"loginName\": \"apiclientmanager\",\n            \"email\": \"na400testing@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC,AIDSL,AIDML\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"CD\",\n            \"lastProductUrl\": \"https://dev.koncert.com/clcti/ctiservice/\",\n            \"rcUrl\": \"https://dev.koncert.com/remotecoach/rcserver\",\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"919087836567\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"Y\",\n            \"callRecordingUserPermission\": \"YYY\",\n            \"callRecordingEnabledByUser\": \"Y\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 83.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-06-02T08:20:09Z\",\n            \"modifiedDate\": \"2022-08-19T09:04:37Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": true,\n            \"defaultActivityFilter\": \"all\",\n            \"displayName\": \"API Client Manager\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": false,\n            \"hubspotUserId\": 26158336,\n            \"apiEnabled\": false,\n            \"exportProspects\": true,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 7431,\n            \"sfUserId\": \"STD-8079\",\n            \"name\": \"API Client\",\n            \"userType\": null,\n            \"loginName\": \"apiclientadmin\",\n            \"email\": \"rajeshkumar.arulappan@yahoo.com\",\n            \"userLicense\": \"TD,PD,CD,TC,CO,AIDSL,AIDML\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"Pacific/Niue\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"CD\",\n            \"lastProductUrl\": \"https://dev.koncert.com/clcti/ctiservice/\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"Y\",\n            \"callRecordingUserPermission\": \"YYY\",\n            \"callRecordingEnabledByUser\": \"Y\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-06-03T13:55:12Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": true,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"API Client\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 7432,\n            \"sfUserId\": \"STD-8081\",\n            \"name\": \"API Client User\",\n            \"userType\": null,\n            \"loginName\": \"apiclientuser\",\n            \"email\": \"test@gembrill.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"PD\",\n            \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"919600827949\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"Y\",\n            \"callRecordingUserPermission\": \"YYY\",\n            \"callRecordingEnabledByUser\": \"Y\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 5.50,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-06-03T13:59:38Z\",\n            \"modifiedDate\": \"2022-08-22T13:44:42Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": true,\n            \"defaultActivityFilter\": \"all\",\n            \"displayName\": \"API Client User\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Impact\",\n            \"emailFontSize\": 36,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 7660,\n            \"sfUserId\": \"STD-10091\",\n            \"name\": \"API Client Manager 1\",\n            \"userType\": null,\n            \"loginName\": \"apiclientmanager1\",\n            \"email\": \"apiclientmanager1@email.com\",\n            \"userLicense\": \"TD,PD,CD,TC,AIDSL,AIDML\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": \"https://dev.koncert.com/tddialerserver/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"919087836567\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"Y\",\n            \"callRecordingUserPermission\": \"NYN\",\n            \"callRecordingEnabledByUser\": \"Y\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-07-23T14:07:00Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": true,\n            \"defaultActivityFilter\": \"call\",\n            \"displayName\": \"API Client Manager 1\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 12,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": true,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 7661,\n            \"sfUserId\": \"STD-10093\",\n            \"name\": \"API Client Admin 12\",\n            \"userType\": null,\n            \"loginName\": \"apiclientadmin1\",\n            \"email\": \"apiclientadmin1@email.com\",\n            \"userLicense\": \"TD,PD,CD,TC,AIDSL\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"Pacific/Pago_Pago\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": \"http://10.5.3.77:80/dialerserver/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"Y\",\n            \"callRecordingUserPermission\": \"NYN\",\n            \"callRecordingEnabledByUser\": \"Y\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-07-23T14:08:10Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"API Client Admin 12\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": true,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 7662,\n            \"sfUserId\": \"STD-10095\",\n            \"name\": \"API Client User 1\",\n            \"userType\": null,\n            \"loginName\": \"apiclientuser1\",\n            \"email\": \"apiclientuser1@email.com\",\n            \"userLicense\": \"TD,PD,CD\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"CD\",\n            \"lastProductUrl\": \"https://dev.koncert.com/clcti/ctiservice/\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"Y\",\n            \"callRecordingUserPermission\": \"YYY\",\n            \"callRecordingEnabledByUser\": \"Y\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-07-23T14:09:18Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"API Client User 1\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 7844,\n            \"sfUserId\": \"STD-12333\",\n            \"name\": \"apiclientmanager2\",\n            \"userType\": null,\n            \"loginName\": \"apiclientmanager2\",\n            \"email\": \"apiclientmanager2\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/Fort_Wayne\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": \"http://10.5.3.77:80/dialerserver/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"Y\",\n            \"callRecordingUserPermission\": \"YYY\",\n            \"callRecordingEnabledByUser\": \"Y\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-09-29T17:23:00Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"apiclientmanager2\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 7910,\n            \"sfUserId\": \"STD-12743\",\n            \"name\": \"API Manager 3\",\n            \"userType\": null,\n            \"loginName\": \"apiclientmanager3\",\n            \"email\": \"stevenvicky2021@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/New_York\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": \"http://10.5.3.77:80/dialerserver/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-10-19T15:12:58Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": true,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"API Manager 3\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 7951,\n            \"sfUserId\": \"STD-12955\",\n            \"name\": \"api client user 11\",\n            \"userType\": null,\n            \"loginName\": \"apiclientuser100\",\n            \"email\": \"APICLIENTUSER10@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/Indiana/Tell_City\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"PD\",\n            \"lastProductUrl\": \"https://devds.koncert.com/pddialerserver/dialerserver\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2020-11-10T16:42:50Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"api client user 11\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 8276,\n            \"sfUserId\": \"STD-15963\",\n            \"name\": \"apiclientmanager10\",\n            \"userType\": null,\n            \"loginName\": \"apiclientmanager10\",\n            \"email\": \"test2@gmail.com\",\n            \"userLicense\": \"TD,PD,CD,TC\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"America/Panama\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"CD\",\n            \"lastProductUrl\": \"https://dev.koncert.com/clcti/ctiservice/\",\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"Y\",\n            \"callRecordingUserPermission\": \"YYY\",\n            \"callRecordingEnabledByUser\": \"Y\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"Y\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2021-04-05T17:58:57Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": true,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"apiclientmanager10\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": null,\n            \"location\": null\n        },\n        {\n            \"id\": 9479,\n            \"sfUserId\": \"STD-21773\",\n            \"name\": \"Vicky's\",\n            \"userType\": null,\n            \"loginName\": \"Vignesh\",\n            \"email\": \"vicky@gmail.com\",\n            \"userLicense\": \"TD,PD,CD\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"Europe/Zaporozhye\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 15,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"N\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": null,\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": null,\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"Y\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": \"MY_ACCOUNT\",\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2021-12-13T17:50:48Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Vicky's\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": \"false\",\n            \"location\": null\n        },\n        {\n            \"id\": 9593,\n            \"sfUserId\": \"STD-22387\",\n            \"name\": \"Pinkpanther\",\n            \"userType\": null,\n            \"loginName\": \"VickyFlip\",\n            \"email\": \"pinky@gmail.com\",\n            \"userLicense\": \"TD,PD,CD\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"Asia/Omsk\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": null,\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2022-01-26T00:11:30Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": false,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"Pinkpanther\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": true,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": \"false\",\n            \"location\": null\n        },\n        {\n            \"id\": 10958,\n            \"sfUserId\": \"STD-28253\",\n            \"name\": \"apiuser24\",\n            \"userType\": null,\n            \"loginName\": \"apiuser24\",\n            \"email\": \"manimegalaieeesjce@outlook.com\",\n            \"userLicense\": \"TD,PD,CD,TC,AIDSL,AIDML\",\n            \"startUpPageShowFlag\": \"Y\",\n            \"reportFolder\": \"Connect Leader\",\n            \"talkerSessionMode\": \"macro\",\n            \"timeZone\": \"Pacific/Samoa\",\n            \"talkerAgentType\": \"Level 1\",\n            \"talkerPhoneType\": \"SIP\",\n            \"transferPacingPerHour\": 7,\n            \"prioritizationDelayMinutes\": 0,\n            \"transferUrl\": \"\",\n            \"isManagerUser\": \"Y\",\n            \"lastProductType\": \"TD\",\n            \"lastProductUrl\": null,\n            \"rcUrl\": null,\n            \"bullhornUserType\": \"Sales\",\n            \"isSimulatorUser\": \"N\",\n            \"allowCallMeJoinConference\": \"Y\",\n            \"phoneNumber\": \"\",\n            \"isInternalUser\": \"N\",\n            \"isActive\": \"Y\",\n            \"callRecordingEnabledByManager\": \"N\",\n            \"callRecordingUserPermission\": \"NNN\",\n            \"callRecordingEnabledByUser\": \"N\",\n            \"callRecordingDisabledForTwoPartyConsent\": \"N\",\n            \"enableScheduleCheck\": \"Y\",\n            \"isAdminUser\": \"N\",\n            \"allowAdaptilytics\": \"Y\",\n            \"allowModifyAdaptilyticsSettings\": \"Y\",\n            \"allowDataEnrichment\": \"N\",\n            \"allowModifyDataEnrichmentSettings\": \"N\",\n            \"token\": null,\n            \"cdPhoneMinutesUsed\": 0.00,\n            \"showAccountsBy\": null,\n            \"isTrucadenceLeftmenuExpanded\": true,\n            \"accessTokenCreatedAt\": null,\n            \"accessTokenExpiresIn\": null,\n            \"outreachUserId\": null,\n            \"lastExecutedDataListIds\": null,\n            \"hasCreateEmailTemplate\": true,\n            \"hasCreateCadence\": true,\n            \"salesloftUserId\": null,\n            \"salesloftGuid\": null,\n            \"showLeadScorePopup\": \"Y\",\n            \"remoteCoachCallListenUsers\": [],\n            \"remoteCoachCallListen\": false,\n            \"createdBy\": \"cl master\",\n            \"modifiedBy\": \"cl master\",\n            \"createdDate\": \"2022-08-18T13:22:59Z\",\n            \"modifiedDate\": \"2022-08-18T19:39:14Z\",\n            \"zipwhipSessionKey\": null,\n            \"regionId\": \"US_EAST_1\",\n            \"firstName\": null,\n            \"lastName\": null,\n            \"isCreateAddProspect\": true,\n            \"defaultActivityFilter\": null,\n            \"displayName\": \"apiuser24\",\n            \"isEmailPreviewEnabled\": true,\n            \"emailFontFace\": \"Arial\",\n            \"emailFontSize\": 11,\n            \"openExternalLinksInNewWindow\": false,\n            \"hubspotUserId\": null,\n            \"apiEnabled\": false,\n            \"exportProspects\": false,\n            \"isFirstTimeUser\": false,\n            \"associations\": {\n                \"org\": [\n                    {\n                        \"id\": 2355\n                    }\n                ]\n            },\n            \"signupUser\": null,\n            \"allowSwitchingBetweenGeoLocations\": \"false\",\n            \"location\": null\n        }\n    ],\n    \"paging\": {\n        \"totalCount\": 13,\n        \"limit\": 25,\n        \"offset\": 0\n    }\n}"}],"_postman_id":"0391866f-7da1-471a-b64d-0110e6e07ee2"},{"name":"Group","id":"3ee35499-96ad-4ecd-bd41-c98e6dfe3dc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/users/group","description":"<p>Get user group details associated with current access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["users","group"],"host":["{{koncert_dialers_api}}"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"cab61be7-c585-4562-a793-800fda7dcfe7","name":"Group","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{koncert_dialers_api}}/users/group","protocol":"https","host":["{{koncert_dialers_api}}"],"path":["users","group"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:45:13 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"group\": \"API Test Team - edited\",\n            \"reportsToUserId\": \"7424\"\n        },\n        {\n            \"group\": \"MG SQUAD\",\n            \"reportsToUserId\": \"7424\"\n        },\n        {\n            \"group\": \"MG SQUAD 1\",\n            \"reportsToUserId\": \"7424,9597,10958,10306\"\n        },\n        {\n            \"group\": \"TEam R\",\n            \"reportsToUserId\": \"7424\"\n        },\n        {\n            \"group\": \"Team Berry\",\n            \"reportsToUserId\": \"7660\"\n        },\n        {\n            \"group\": \"Team Conn\",\n            \"reportsToUserId\": \"7660\"\n        },\n        {\n            \"group\": \"Team Connect\",\n            \"reportsToUserId\": \"7424\"\n        },\n        {\n            \"group\": \"Team b\",\n            \"reportsToUserId\": \"7424\"\n        },\n        {\n            \"group\": \"Team c\",\n            \"reportsToUserId\": \"7424,7660\"\n        },\n        {\n            \"group\": \"Team k\",\n            \"reportsToUserId\": \"8276\"\n        },\n        {\n            \"group\": \"Team o\",\n            \"reportsToUserId\": \"7844\"\n        }\n    ]\n}"}],"_postman_id":"3ee35499-96ad-4ecd-bd41-c98e6dfe3dc1"}],"id":"5873036f-c22a-4925-939e-c38ef5d20df9","description":"<p>Individual of an application</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdDate  <br /><code>date time</code></td>\n<td>The date and time when user is created</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>email  <br /><code>String</code></td>\n<td>Email of user</td>\n<td></td>\n</tr>\n<tr>\n<td>firstName  <br /><code>String</code></td>\n<td>First name of user</td>\n<td></td>\n</tr>\n<tr>\n<td>hasCreateCadence  <br /><code>boolean</code></td>\n<td>Whether user has permission to create Cadence or not</td>\n<td></td>\n</tr>\n<tr>\n<td>hasCreateEmailTemplate  <br /><code>boolean</code></td>\n<td>Whether user has permission to create Email Template or not</td>\n<td></td>\n</tr>\n<tr>\n<td>isActive  <br /><code>character</code></td>\n<td>Whether user is active or in-active</td>\n<td></td>\n</tr>\n<tr>\n<td>isAdminUser  <br /><code>character</code></td>\n<td>Whether user is admin</td>\n<td></td>\n</tr>\n<tr>\n<td>isCreateAddProspect  <br /><code>boolean</code></td>\n<td>Whether user has permission to add Prospects</td>\n<td></td>\n</tr>\n<tr>\n<td>isEmailPreviewEnabled  <br /><code>boolean</code></td>\n<td>Whether Email preview is enabled</td>\n<td></td>\n</tr>\n<tr>\n<td>isManagerUser  <br /><code>boolean</code></td>\n<td>Whether user is manager</td>\n<td></td>\n</tr>\n<tr>\n<td>name  <br /><code>string</code></td>\n<td>Name of user</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>id  <br /><code>integer</code></td>\n<td>Id of user</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>sfUserId  <br /><code>string</code></td>\n<td>Id of user which is associated with SF account</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>userType  <br /><code>string</code></td>\n<td>User type shows whether user is talker or not. If user is talker then value could be TKR</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>loginName  <br /><code>string</code></td>\n<td>Login name of the user</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>userLicense  <br /><code>string</code></td>\n<td>License which was acquired by the user. Like TD, PD, CD, TC</td>\n<td><code>Filterable</code>  <br /><code>Sortable</code></td>\n</tr>\n<tr>\n<td>reportFolder  <br /><code>string</code></td>\n<td>Report folder name of SF account</td>\n<td></td>\n</tr>\n<tr>\n<td>timeZone  <br /><code>string</code></td>\n<td>Timezone of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>talkerAgentType  <br /><code>string</code></td>\n<td>Talker agent type of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>talkerPhoneType  <br /><code>string</code></td>\n<td>Talker phone type of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>lastProductType  <br /><code>string</code></td>\n<td>Last product used by the user</td>\n<td></td>\n</tr>\n<tr>\n<td>lastProductUrl  <br /><code>string</code></td>\n<td>Last product url used by the user</td>\n<td></td>\n</tr>\n<tr>\n<td>rcUrl  <br /><code>string</code></td>\n<td>Remote coach url used by the user</td>\n<td></td>\n</tr>\n<tr>\n<td>allowCallMeJoinConference  <br /><code>string</code></td>\n<td>Whether user is allowed for Call me to join or not</td>\n<td></td>\n</tr>\n<tr>\n<td>phoneNumber  <br /><code>string</code></td>\n<td>Phone number of the user</td>\n<td></td>\n</tr>\n<tr>\n<td>isInternalUser  <br /><code>string</code></td>\n<td>Whether the user is internal user or not</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingEnabledByManager  <br /><code>string</code></td>\n<td>Whether the user has Call recording enabled by manager or not</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingUserPermission  <br /><code>string</code></td>\n<td>Permissions of the Call recording</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingEnabledByUser  <br /><code>string</code></td>\n<td>Whether the user has Call recording enabled by himslf or not</td>\n<td></td>\n</tr>\n<tr>\n<td>callRecordingDisabledForTwoPartyConsent  <br /><code>string</code></td>\n<td>Whether the user has Call recording enabled for twoo party consent or not</td>\n<td></td>\n</tr>\n<tr>\n<td>enableScheduleCheck  <br /><code>string</code></td>\n<td>Whether the user has scheduler enabled or not</td>\n<td></td>\n</tr>\n<tr>\n<td>cdPhoneMinutesUsed  <br /><code>double</code></td>\n<td>Total click dialer minutes used</td>\n<td></td>\n</tr>\n<tr>\n<td>modifiedDate  <br /><code>date time</code></td>\n<td>The date and time when user is modified</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>lastName  <br /><code>String</code></td>\n<td>Last name of user</td>\n<td></td>\n</tr>\n<tr>\n<td>displayName  <br /><code>String</code></td>\n<td>Display name of user</td>\n<td><code>Sortable</code></td>\n</tr>\n<tr>\n<td>apiEnabled  <br /><code>boolean</code></td>\n<td>Whether Salesforce API enabled for the user or not</td>\n<td></td>\n</tr>\n<tr>\n<td>exportProspects  <br /><code>boolean</code></td>\n<td><code>true</code> if user can able to export prospects else <code>false</code></td>\n<td><code>Filterable</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5873036f-c22a-4925-939e-c38ef5d20df9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Upload","item":[{"name":"Upload","id":"bc454e59-5cab-40fb-8cad-055a6847f7e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"eaajfi1h0/only4.csv"}]},"url":"https://{{koncert_dialers_api}}/upload","description":"<p>To Upload CSV File</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["upload"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"aebfed53-14a6-4112-bcd7-189b968f1a29","name":"Upload","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"ktwgH1Ymv/only4.csv"}]},"url":"https://{{koncert_dialers_api}}/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Date","value":"Wed, 30 Dec 2020 13:23:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"VM1WTAYK6pQCDDdUgwTYmi3vlXERwvYX-2022-8-24-1661337269688\",\n            \"name\": \"only4.csv\",\n            \"headerContents\": [\n                \"First Name\",\n                \"Last Name\",\n                \"Email\",\n                \"Phone\",\n                \"City\",\n                \"State\"\n            ],\n            \"csvRecords\": [\n                {\n                    \"Email\": \"James23@hep.com\",\n                    \"Phone\": \"11001202004 X 365\",\n                    \"State\": \"yaaho\",\n                    \"First Name\": \"PTransfer\",\n                    \"City\": \"Chennai\",\n                    \"Last Name\": \"tcott\"\n                },\n                {\n                    \"Email\": \"2James23@gemb.com\",\n                    \"Phone\": \"891142449404 EXT 123\",\n                    \"State\": \"tN\",\n                    \"First Name\": \"PTransfer\",\n                    \"City\": \"Chennai\",\n                    \"Last Name\": \"Petert\"\n                },\n                {\n                    \"Email\": \"3James23@hep.com\",\n                    \"Phone\": \"911422449404 ext 543\",\n                    \"State\": \"tN\",\n                    \"First Name\": \"PTransfer\",\n                    \"City\": \"Chennai\",\n                    \"Last Name\": \"tcott\"\n                }\n            ],\n            \"associations\": {\n                \"user\": {\n                    \"id\": 7424\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"bc454e59-5cab-40fb-8cad-055a6847f7e7"}],"id":"79300d02-22e4-4c65-bdce-87b4b1d45938","description":"<p>Upload File Information</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id  <br /><code>String</code></td>\n<td>File Id</td>\n<td><code>Readonly</code></td>\n</tr>\n<tr>\n<td>name  <br /><code>String</code></td>\n<td>File name</td>\n<td></td>\n</tr>\n<tr>\n<td>headerContents  <br /><code>String Array</code></td>\n<td>File headers</td>\n<td></td>\n</tr>\n<tr>\n<td>csvRecords  <br /><code>List Map</code></td>\n<td>File contents</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>User  <br /><code>Array of Objects</code></td>\n<td>Owner of the File</td>\n<td><code>Filterable</code>  <br /><code>Sortable IncludeAssociations</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"79300d02-22e4-4c65-bdce-87b4b1d45938","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Workflow","item":[{"name":"List","id":"c9f33e74-8e93-4441-8a3d-df65662df942","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/workflow","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["workflow"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9f33e74-8e93-4441-8a3d-df65662df942"},{"name":"Workflow","id":"a5bf7ead-81f1-408b-9e9e-6b34e813d4b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"crmType\": \"CRM\",\r\n        \"dispositionValue\": \"Qualified Lead\",\r\n        \"ruleInput\": \"TKR_CD\",\r\n        \"ruleOutput\": \"wf_complete_activity\",\r\n        \"type\": true\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://{{koncert_dialers_api}}/workflow","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}},"urlObject":{"protocol":"https","path":["workflow"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5bf7ead-81f1-408b-9e9e-6b34e813d4b5"},{"name":"Get Worklow Dispositions","id":"f913b649-5f3a-4ced-bcb7-cdbc81e07d09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/workflow/dispositions","urlObject":{"protocol":"https","path":["workflow","dispositions"],"host":["{{koncert_dialers_api}}"],"query":[],"variable":[]}},"response":[{"id":"abc5abdd-9879-483d-89a8-999c82c02ba1","name":"Get Worklow Dispositions","originalRequest":{"method":"GET","header":[],"url":"https://{{koncert_dialers_api}}/workflow/dispositions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\r\n    \"response\": \"success\",\r\n    \"data\": [\r\n        {\r\n            \"dispositionId\": 72972,\r\n            \"dispositionName\": \"Not Interested - No reason given\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72973,\r\n            \"dispositionName\": \"Not a fit\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72974,\r\n            \"dispositionName\": \"Do Not Contact\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72957,\r\n            \"dispositionName\": \"Transferred to VM/IVR\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72976,\r\n            \"dispositionName\": \"Got Referral\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72952,\r\n            \"dispositionName\": \"Wrong Contact - Referral given\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72978,\r\n            \"dispositionName\": \"Left Voicemail\",\r\n            \"ruleName\": \"wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72979,\r\n            \"dispositionName\": \"Prospect hungup\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72980,\r\n            \"dispositionName\": \"Other\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72981,\r\n            \"dispositionName\": \"Dialed\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72950,\r\n            \"dispositionName\": \"Meeting Scheduled\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc,wf_update_field_talker\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72960,\r\n            \"dispositionName\": \"Gatekeeper/EA/Operator\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72949,\r\n            \"dispositionName\": \"Follow Up2\",\r\n            \"ruleName\": \"wf_update_field_talker\"\r\n        },\r\n        {\r\n            \"dispositionId\": 75730,\r\n            \"dispositionName\": \"new\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 75731,\r\n            \"dispositionName\": \"wegwerg\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 80553,\r\n            \"dispositionName\": \"d\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72962,\r\n            \"dispositionName\": \"Call Issue\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72963,\r\n            \"dispositionName\": \"Not Interested - Uses Competitor\",\r\n            \"ruleName\": \"wf_complete_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72964,\r\n            \"dispositionName\": \"Follow Up - Send Information\",\r\n            \"ruleName\": \"wf_complete_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72965,\r\n            \"dispositionName\": \"Wrong Contact - No longer with company\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72955,\r\n            \"dispositionName\": \"Wrong Contact - No referral\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72956,\r\n            \"dispositionName\": \"Wrong Contact - Bad phone number\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72968,\r\n            \"dispositionName\": \"Company out of business\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72969,\r\n            \"dispositionName\": \"Not Interested - Other\",\r\n            \"ruleName\": \"wf_complete_activity,wf_update_dnc\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72970,\r\n            \"dispositionName\": \"Not Interested - Timing\",\r\n            \"ruleName\": \"\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72971,\r\n            \"dispositionName\": \"Follow Up - Busy, not a good time\",\r\n            \"ruleName\": \"wf_complete_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 80901,\r\n            \"dispositionName\": \"Left VM (AI) - Name Found\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72947,\r\n            \"dispositionName\": \"Reached Gatekeeper - Call not transferred\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72948,\r\n            \"dispositionName\": \"No Answer\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72951,\r\n            \"dispositionName\": \"No Longer with the company\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72953,\r\n            \"dispositionName\": \"Wrong Phone Number\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72954,\r\n            \"dispositionName\": \"Talker Busy Call Not Transferred\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72958,\r\n            \"dispositionName\": \"Call Attempted\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity,wf_update_call_counter\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72959,\r\n            \"dispositionName\": \"Left VM (By DA)\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72961,\r\n            \"dispositionName\": \"Call Disconnected\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72966,\r\n            \"dispositionName\": \"Went to voice mail\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72967,\r\n            \"dispositionName\": \"Line Busy - Call Back Later\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72975,\r\n            \"dispositionName\": \"IVR - Name not on the directory\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72977,\r\n            \"dispositionName\": \"Do Not Call\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72982,\r\n            \"dispositionName\": \"Talker busy - Unanswered call cancelled\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72983,\r\n            \"dispositionName\": \"Phone Tree\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72984,\r\n            \"dispositionName\": \"Left VM (AI)\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 80895,\r\n            \"dispositionName\": \"Busy\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 80896,\r\n            \"dispositionName\": \"Failed\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 80897,\r\n            \"dispositionName\": \"Phone Tree - Name Found\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 80898,\r\n            \"dispositionName\": \"Phone Tree - Name Not Found\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 80899,\r\n            \"dispositionName\": \"Phone Tree - No Company Directory\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 80900,\r\n            \"dispositionName\": \"Went to Voicemail - Name Found\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        },\r\n        {\r\n            \"dispositionId\": 72946,\r\n            \"dispositionName\": \"OPR - Name not on the directory\",\r\n            \"ruleName\": \"wf_complete_activity,wf_create_activity\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"f913b649-5f3a-4ced-bcb7-cdbc81e07d09"}],"id":"300ecf1c-8061-4523-8d7f-549fc9f619e9","_postman_id":"300ecf1c-8061-4523-8d7f-549fc9f619e9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}}],"id":"9680468d-5bf3-4b09-af17-d0e4f7e63d41","description":"<p>Power Up Your Sales with Koncert’s Suite of Dialers.</p>\n","_postman_id":"9680468d-5bf3-4b09-af17-d0e4f7e63d41","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]},"isInherited":true,"source":{"_postman_id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","id":"cbb5a43f-1c22-4bbc-8297-cc2a135b89cb","name":"Koncert","type":"collection"}}},{"name":"Webhooks","item":[{"name":"Sample Webhook Request","id":"beb50024-9902-4261-ae0e-7b67be430d11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"<value>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"callInfo\": {\r\n        \"sfPk\": \"crmgenkey_2e624406-ce38-3e0c-b9f6-6f1b9deacda6\",\r\n        \"callDuration\": 5,\r\n        \"callerId\": \"+17178959236\",\r\n        \"phone\": \"+16039522500\",\r\n        \"phoneType\": \"Phone\",\r\n        \"listName\": \"Prospect List\",\r\n        \"callDisposition\": \"Follow Up - Busy, not a good time\",\r\n        \"callComments\": \"\",\r\n        \"callStartTime\": \"2024-11-11T09:35:30.449\",\r\n        \"callEndTime\": \"2024-11-11T09:35:35.449\",\r\n        \"product\": \"Agent Assisted Dialer\",\r\n        \"callDisposedBy\": \"USER\",\r\n        \"callRecordingUrl\": \"https://ncrs.koncert.com/callrecordingsv11/v2/crservice?rt=gcr&crid=E0544D7912FC7B4B0B667FBBB85E31E7195684D2294B2943324F3CDAE003763EE004B626A9F3667BEB4281D39A7F0C7207A6B82B3024AA55&type=full\"\r\n    },\r\n    \"userInfo\": {\r\n        \"koncertId\": 28763,\r\n        \"emailId\": \"dakaxa1736@degcos.com\",\r\n        \"ExternalUserId\": \"STD-178235\"\r\n    },\r\n    \"recordInfo\": {\r\n        \"State\": \"Salem (NH)\",\r\n        \"Engagement Score\": 0,\r\n        \"DA Call Comments\": \"\",\r\n        \"Sales Rep Call Disposition\": \"Follow Up - Busy, not a good time\",\r\n        \"Modified Date\": \"2024-11-11T09:35:18\",\r\n        \"Optout Flag\": false,\r\n        \"Last Dialed Date\": \"2024-11-11T09:35:27\",\r\n        \"Last Name\": \"Watkins\",\r\n        \"Report Name\": \"Prospect List\",\r\n        \"call_list_records_pk\": 45910123,\r\n        \"Data List id\": 55859,\r\n        \"Title\": \"Director of Freak Tech\",\r\n        \"Linkedin URL\": \"https://in.linkedin.com/in/Suderson-balakrishnan-529006223\",\r\n        \"Account Name\": \"Allyson Admin Prospect Limited\",\r\n        \"Contact Name\": \"Allyson Watkins\",\r\n        \"DA Call Disposition\": \"\",\r\n        \"user_id\": 28763,\r\n        \"CRM Id\": \"crmgenkey_2e624406-ce38-3e0c-b9f6-6f1b9deacda6\",\r\n        \"Timezone\": \"EST\",\r\n        \"First Name\": \"Allyson\",\r\n        \"Email\": \"Lloyd185@testingprospect.com\",\r\n        \"Phone\": \"(603) 952-2500\",\r\n        \"Lead Score\": 0,\r\n        \"City\": \"United States\",\r\n        \"Mobile\": \"(603) 952-2507\",\r\n        \"Direct Phone\": \"(603) 952-2507\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://webhook.site/8dfc5488-483a-47d1-93e5-df46c1a0724e","description":"<p>This sample request is how the webhook call will be made. If the Authorization Header is added, it will be also sent.</p>\n","urlObject":{"protocol":"https","path":["8dfc5488-483a-47d1-93e5-df46c1a0724e"],"host":["webhook","site"],"query":[],"variable":[]}},"response":[],"_postman_id":"beb50024-9902-4261-ae0e-7b67be430d11"}],"id":"0bfe308f-042e-4051-b368-7690fe868789","description":"<p>Koncert sends all the completed dialing events to the third party application with webhooks subscription. To enable the webhooks subscription for your instance of Koncert, it has to requested to Koncert Support with the following information.</p>\n<p><strong>Webhook URL:</strong> This should be https public facing url.</p>\n<p><strong>Authentication Header Key Name:</strong> This is the name of the header to be passed when webooks call is made</p>\n<p><strong>Authentication Header Key Value:</strong> This is the value of the header to be passed when webooks call is made</p>\n<p><strong><code>Note:</code></strong> <code>The Authentication Header and Value is not mandatory.</code></p>\n<h5 id=\"webhook-request-details\"><strong>Webhook Request Details:</strong></h5>\n<p><strong>HTTP Method:</strong> POST</p>\n<p><strong>POST Data Format:</strong> JSON</p>\n<p><strong>Post Data:</strong></p>\n<ul>\n<li><p>callInfo: This contains all the call information made to the prospect</p>\n</li>\n<li><p>userInfo: This contains the user info who made that call</p>\n</li>\n<li><p>recordInfo: This contains the prospect info for whom the call is made.</p>\n</li>\n</ul>\n<p><strong>Products Supported:</strong></p>\n<ul>\n<li><p>Agent Assisted Dialer</p>\n<ul>\n<li><p>User connected calls</p>\n</li>\n<li><p>Dialing Agent calls</p>\n</li>\n</ul>\n</li>\n<li><p>AI Parallel Dialer</p>\n<ul>\n<li><p>User connected calls</p>\n</li>\n<li><p>AI calls</p>\n</li>\n</ul>\n</li>\n<li><p>AI Flow Dialer</p>\n</li>\n<li><p>Click Dialer</p>\n</li>\n</ul>\n<p><strong><code>Note:</code></strong> <code>There is no way to subscribe only for user connected calls as of now.</code></p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"379124a1-2526-45f0-98f2-465f7ae503d2","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"2f2e3f95-c8e9-4de0-bcc2-5712c9b59251","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"0bfe308f-042e-4051-b368-7690fe868789"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{cadence_token}}"}]}},"event":[{"listen":"prerequest","script":{"id":"286eced2-b004-4078-a9e0-56dc0a201798","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"27eba58b-0c59-4c6a-b7bd-65c69d1eff3f","type":"text/javascript","exec":[""]}}]}