{"info":{"_postman_id":"bd67da13-4869-40cb-aede-418d4b081699","name":"Task Management","description":"<html><head></head><body><p>This is a Task Management Application developed using Java Spring Boot. The application supports user authentication using JWT (JSON Web Token), session management with Redis and performs CRUD operations with MongoDB. It also includes role-based access control for user management, integrates JavaMailSender for automated email notifications and utilizes Spring Boot's RESTful API capabilities for seamless task management.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"25504105","collectionId":"bd67da13-4869-40cb-aede-418d4b081699","publishedId":"2sA3XV7Jdu","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-06-20T10:03:21.000Z"},"item":[{"name":"Auth APIs","item":[{"name":"LogIn","id":"b2ae2a55-45ed-42a3-990d-d8a8421eeaa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[],"url":"http://localhost:8080/api/auth/login","description":"<h2 id=\"auth-login\">Auth Login</h2>\n<ul>\n<li><p>This endpoint is used to authenticate a user and obtain a token for accessing protected resources.</p>\n</li>\n<li><p>You can use below credential to login, so that you can run further APIs.</p>\n</li>\n<li><p>You can add one user manually in your DB having <code>ADMIN</code> role, so that you can use all the APIs.</p>\n</li>\n</ul>\n<h2 id=\"request\"><strong>Request</strong></h2>\n<ul>\n<li><p>Method: POST</p>\n</li>\n<li><p>Endpoint: <code>/api/auth/login</code></p>\n</li>\n<li><p>Body:</p>\n<ul>\n<li><p><code>username</code> (text, required): The username of the user.</p>\n</li>\n<li><p><code>password</code> (text, required): The password of the user.</p>\n</li>\n<li><p>It should be provided inside basic auth.</p>\n</li>\n<li><p>User must be present inside database.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"response\"><strong>Response</strong></h2>\n<ul>\n<li><p>Status: 200 OK</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": \"\",\n    \"message\": \"\",\n    \"token\": \"\"\n}\n\n</code></pre>\n<h2 id=\"authentication\"><strong>Authentication</strong></h2>\n<p>This endpoint requires user credentials (username and password) for authentication.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["api","auth","login"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2ae2a55-45ed-42a3-990d-d8a8421eeaa2"},{"name":"LogOut","id":"c677be65-b769-455f-8d8e-9c8a8497a317","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"url":"http://localhost:8080/api/auth/logout","description":"<h2 id=\"auth-logout\">Auth Logout</h2>\n<p>The <code>POST /api/auth/logout</code> endpoint is used to log out the user from the application.</p>\n<h2 id=\"request\"><strong>Request</strong></h2>\n<ul>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Endpoint: <code>/api/auth/logout</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to logout the session.</p>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p>Status: <code>200</code></p>\n</li>\n<li><p>Content-Type: <code>text/plain</code></p>\n</li>\n</ul>\n<p>The response is a text/plain content type with the message \"Logged out successfully.\"</p>\n<p>This response does not contain a JSON schema as it is a plain text message.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["api","auth","logout"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"c677be65-b769-455f-8d8e-9c8a8497a317"}],"id":"923c1c38-8991-49ff-a01f-48f63d8dd557","_postman_id":"923c1c38-8991-49ff-a01f-48f63d8dd557","description":""},{"name":"User APIs","item":[{"name":"Create User","id":"e486e222-930e-4267-b600-83c362681338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Muskan\",\n    \"password\": \"Muskan123\",\n    \"email\": \"muskan@gmail.com\",\n    \"role\": [\n        \"USER\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/users/create-user","description":"<h2 id=\"create-user\">Create User</h2>\n<ul>\n<li><p>This API endpoint is used to create a new user.</p>\n</li>\n<li><p>Only user having role as <code>ADMIN</code> can create it.</p>\n</li>\n<li><p>You can create one user manually in your DB having <code>ADMIN</code> role so that you can use all the APIs.</p>\n</li>\n</ul>\n<h2 id=\"request\">Request</h2>\n<ul>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Endpoint: <code>/users/create-user</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to run further APIs.</p>\n</li>\n</ul>\n<h2 id=\"request-body\">Request Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"name\": \"string\",\n    \"password\": \"string\",\n    \"email\": \"string\",\n    \"role\": [\n        \"string\"\n    ]\n}\n\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n</ul>\n<h2 id=\"response-body\">Response Body</h2>\n<p>The response is in JSON format and represents the details of the newly created user. Below is the JSON schema for the response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"id\": {\n            \"timestamp\": 1718216358,\n            \"date\": \"2024-06-12T18:19:18.000+00:00\"\n        },\n        \"name\": \"string\",\n        \"password\": \"string\",\n        \"email\": \"string\",\n        \"role\": [\n            \"ADMIN\"\n        ],\n        \"tasks\": [],\n        \"reporters\": [],\n        \"team_name\": \"string\",\n        \"reports_to\": \"string\"\n    }\n]\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["users","create-user"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"e486e222-930e-4267-b600-83c362681338"},{"name":"Get All Users","id":"62a8419c-5dd2-4cba-8d85-7a1a3a9769ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"http://localhost:8080/users/get-all-users","description":"<h2 id=\"get-all-users\">Get All Users</h2>\n<p>This endpoint is used to retrieve all users.</p>\n<h2 id=\"request\">Request</h2>\n<ul>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Endpoint: <code>/users/get-all-users</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to run further APIs.</p>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p>Status: <code>200</code></p>\n</li>\n<li><p>Content-Type: <code>application/json</code></p>\n</li>\n</ul>\n<h2 id=\"response-body\">Response Body</h2>\n<p>The response will contain an array of user objects, where each user object includes the <code>user's ID, name, password, email, role, tasks, reporters, team name, and reports to information</code>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"id\": {\n            \"timestamp\": 1718216358,\n            \"date\": \"2024-06-12T18:19:18.000+00:00\"\n        },\n        \"name\": string,\n        \"password\": string,\n        \"email\": string,\n        \"role\": [\n            string\n        ],\n        \"tasks\": [ Tasks ],\n        \"reporters\": [],\n        \"team_name\": string,\n        \"reports_to\": string\n    }\n]\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["users","get-all-users"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"62a8419c-5dd2-4cba-8d85-7a1a3a9769ab"},{"name":"Delete User by ID","id":"0efda8b0-12a1-4994-b8f0-4893117efabf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8080/users/delete-user/6667da6f1f47817ef7d319fc","description":"<h3 id=\"delete-user\">Delete User</h3>\n<p>This endpoint is used to delete a specific user.</p>\n<h2 id=\"request\">Request</h2>\n<ul>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Endpoint: <code>/users/delete-user/{user-id}</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to run further APIs.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Status: <code>200</code></p>\n</li>\n<li><p>Content Type: <code>text/plain</code></p>\n</li>\n<li><p>Body: \"User deleted...\"</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","port":"8080","path":["users","delete-user","6667da6f1f47817ef7d319fc"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"0efda8b0-12a1-4994-b8f0-4893117efabf"}],"id":"0bdb9cb4-4736-4a51-b8d8-f8a9d2daaf1c","_postman_id":"0bdb9cb4-4736-4a51-b8d8-f8a9d2daaf1c","description":""},{"name":"Task APIs","item":[{"name":"Assign Task to User","id":"3ed837f7-7c39-4393-9153-9b5ef4c95cd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"task_id\": \"666869d223df1e4b5a7271c6\",\n    \"name\": \"Animesh\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/tasks/assign-task","description":"<h2 id=\"assign-task\">Assign Task</h2>\n<p>This endpoint allows you to assign a task to a user.</p>\n<h2 id=\"request\">Request</h2>\n<ul>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Endpoint: <code>/tasks/assign-task</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to run further APIs.</p>\n</li>\n</ul>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><p><code>task_id</code> (string) - The ID of the task to be assigned. task_id you can get from Get All Tasks API.</p>\n</li>\n<li><p><code>assigned_to</code> (string) - The username to whom the task is to be assigned.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"task_id\": \"string\",\n    \"assigned_to\": \"string\"\n}\n\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n</ul>\n<h2 id=\"response-body\">Response Body</h2>\n<p>Upon successful assignment, the server will respond with a status code of 200 and a JSON object containing the updated task details, including the assigned user's information.</p>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": {\n    \"timestamp\": 0,\n    \"date\": \"\"\n  },\n  \"name\": \"\",\n  \"password\": \"\",\n  \"email\": \"\",\n  \"role\": [\"\"],\n  \"tasks\": [\n    {\n      \"id\": {\n        \"timestamp\": 0,\n        \"date\": \"\"\n      },\n      \"title\": \"\",\n      \"description\": \"\",\n      \"status\": \"\",\n      \"due_date\": \"\",\n      \"assigned_to\": \"\"\n    }\n  ],\n  \"reporters\": [],\n  \"team_name\": null,\n  \"reports_to\": null\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["tasks","assign-task"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ed837f7-7c39-4393-9153-9b5ef4c95cd1"},{"name":"Create Task","id":"42376bf2-09d8-4045-84d0-d5a37ba34a89","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Navish\",\n    \"password\": \"Navish123\",\n    \"email\": \"navish@tekion.com\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/tasks/create-task","description":"<h2 id=\"create-task\">Create Task</h2>\n<p>This endpoint allows you to create a new task.</p>\n<h2 id=\"request\">Request</h2>\n<ul>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Endpoint: <code>/tasks/create-task</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to run further APIs.</p>\n</li>\n</ul>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><p><code>title</code> (string, required): The title of the task.</p>\n</li>\n<li><p><code>description</code> (string, required): The description of the task.</p>\n</li>\n<li><p><code>due_date</code> (string, required): The due date of the task (dd-MM-yyyy).</p>\n</li>\n<li><p><code>status</code> (string, required): The status of the task.</p>\n</li>\n<li><p><code>assigned_to</code> (string, required): The username assigned to the task.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"title\": \"string\",\n    \"description\": \"string\",\n    \"due_date\": \"dd-MM-yyyy\",\n    \"status\": \"string\",\n    \"assigned_to\": \"string\"\n}\n\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p>Status: <code>200</code></p>\n</li>\n<li><p>Content-Type: <code>application/json</code></p>\n</li>\n</ul>\n<h2 id=\"response-body\">Response Body</h2>\n<p>Upon successful creation, the endpoint returns a JSON object with the following fields:</p>\n<ul>\n<li><p><code>id</code> (object): An object containing timestamp and date information.</p>\n</li>\n<li><p><code>title</code> (string): The title of the created task.</p>\n</li>\n<li><p><code>description</code> (string): The description of the created task.</p>\n</li>\n<li><p><code>status</code> (string): The status of the created task.</p>\n</li>\n<li><p><code>due_date</code> (string): The due date of the created task.</p>\n</li>\n<li><p><code>assigned_to</code> (string): The person assigned to the created task.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": {\n        \"timestamp\": 1718870367,\n        \"date\": \"2024-06-20T07:59:27.000+00:00\"\n    },\n    \"title\": \"string\",\n    \"description\": \"string\",\n    \"status\": \"string\",\n    \"due_date\": \"string(EPOC)\",\n    \"assigned_to\": \"string\"\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["tasks","create-task"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"42376bf2-09d8-4045-84d0-d5a37ba34a89"},{"name":"Get All Tasks","id":"d92b152f-5bce-45b2-88e1-8fdca46848c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/tasks/get-all-tasks","description":"<h1 id=\"get-all-tasks\">Get All Tasks</h1>\n<p>This endpoint makes an HTTP GET request to retrieve all tasks.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Endpoint: <code>/tasks/get-all-tasks</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to run further APIs.</p>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p>Status: <code>200</code></p>\n</li>\n<li><p>Content-Type: <code>application/json</code></p>\n</li>\n</ul>\n<h3 id=\"response-body\">Response Body</h3>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n</ul>\n<p>Example response body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"headers\": {},\n    \"body\": [\n        {\n            \"id\": {\n                \"timestamp\": 0,\n                \"date\": \"\"\n            },\n            \"title\": \"\",\n            \"description\": \"\",\n            \"status\": \"\",\n            \"due_date\": \"\",\n            \"assigned_to\": \"\"\n        }\n    ],\n    \"statusCodeValue\": 0,\n    \"statusCode\": \"\"\n}\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["tasks","get-all-tasks"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"d92b152f-5bce-45b2-88e1-8fdca46848c1"},{"name":"Get Task of a User","id":"47c2516a-14f5-4926-9788-f63a77e119b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/tasks/get-task/Navish","description":"<h1 id=\"get-task-details\">Get Task Details</h1>\n<p>This endpoint retrieves the details of a specific task.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Endpoint: <code>/tasks/get-task/{username}</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to run further APIs.</p>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p>Status: <code>200</code></p>\n</li>\n<li><p>Content-Type: <code>application/json</code></p>\n</li>\n</ul>\n<h3 id=\"response-body\">Response Body</h3>\n<p>The response returns an array of task details, including the task ID, title, description, status, due date, and assigned user. Each task object contains the following keys:</p>\n<ul>\n<li><p><code>id</code> (object) - An object containing timestamp and date properties</p>\n</li>\n<li><p><code>title</code> (string) - The title of the task</p>\n</li>\n<li><p><code>description</code> (string) - The description of the task</p>\n</li>\n<li><p><code>status</code> (string) - The status of the task</p>\n</li>\n<li><p><code>due_date</code> (string) - The due date of the task</p>\n</li>\n<li><p><code>assigned_to</code> (string) - The user assigned to the task</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"id\": {\n            \"timestamp\": 1718195361,\n            \"date\": \"2024-06-12T12:29:21.000+00:00\"\n        },\n        \"title\": \"string\",\n        \"description\": \"string\",\n        \"status\": \"string\",\n        \"due_date\": \"string(EPOC)\",\n        \"assigned_to\": \"string\"\n    }\n]\n\n</code></pre>\n","urlObject":{"protocol":"http","port":"8080","path":["tasks","get-task","Navish"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"47c2516a-14f5-4926-9788-f63a77e119b8"},{"name":"Delete Task By Name","id":"65c3e454-3b2b-43f1-a98e-f4689e1dfb42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8080/tasks/delete-task/Task 2","description":"<h3 id=\"delete-task\">Delete Task</h3>\n<p>This endpoint is used to delete a specific task.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: <code>DELETE</code></p>\n</li>\n<li><p>Endpoint: <code>/tasks/delete-task/{task-name}</code></p>\n</li>\n<li><p>Provide JWT token in the auth section that you got from Login API to run further APIs.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Status: <code>200</code></p>\n</li>\n<li><p>Content Type: <code>text/plain</code></p>\n</li>\n</ul>\n<h4 id=\"response-body\">Response Body</h4>\n<p>The response body for this request is a text/plain content type and it returns \"Task Deleted\" upon successful deletion.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["tasks","delete-task","Task 2"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"65c3e454-3b2b-43f1-a98e-f4689e1dfb42"},{"name":"Update Task","id":"2d0161ff-14b2-4957-beb2-26d9d036bb2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Task 1\",\n    \"description\": \"This is Task 1\",\n    \"assign_to\": \"Navish\",\n    \"due_date\": \"1720195019217\",\n    \"status\": \"In Progress\",\n    \"created_at\": 1718195361,\n    \"priority\": \"Low\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/tasks/update-task/666994a10b1253226ce79fdf","urlObject":{"protocol":"http","port":"8080","path":["tasks","update-task","666994a10b1253226ce79fdf"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d0161ff-14b2-4957-beb2-26d9d036bb2f"}],"id":"4213b03b-a0c0-44be-bd6d-7920dec90ee5","_postman_id":"4213b03b-a0c0-44be-bd6d-7920dec90ee5","description":""},{"name":"http://localhost:8080/extract-data","id":"13a8a332-ee09-49d2-a4aa-e97bd8bb9deb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json, text/plain, */*"},{"key":"Accept-Language","value":"en-GB,en-US;q=0.9,en;q=0.8,hi;q=0.7"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Type","value":"application/json"},{"key":"Origin","value":"http://localhost:3000"},{"key":"Referer","value":"http://localhost:3000/"},{"key":"Sec-Fetch-Dest","value":"empty"},{"key":"Sec-Fetch-Mode","value":"cors"},{"key":"Sec-Fetch-Site","value":"same-site"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"},{"key":"sec-ch-ua","value":"\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""},{"key":"sec-ch-ua-mobile","value":"?0"},{"key":"sec-ch-ua-platform","value":"\"macOS\""}],"body":{"mode":"raw","raw":"{\"file_path\":\"/app/uploads/api-test (3).xlsx\"}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/extract-data","description":"<p>Generated from cURL: curl '<a href=\"http://localhost:8080/extract-data\">http://localhost:8080/extract-data</a>' <br />  -H 'Accept: application/json, text/plain, <em>/</em>' <br />  -H 'Accept-Language: en-GB,en-US;q=0.9,en;q=0.8,hi;q=0.7' <br />  -H 'Connection: keep-alive' <br />  -H 'Content-Type: application/json' <br />  -H 'Origin: <a href=\"http://localhost:3000\">http://localhost:3000</a>' <br />  -H 'Referer: <a href=\"http://localhost:3000/\">http://localhost:3000/</a>' <br />  -H 'Sec-Fetch-Dest: empty' <br />  -H 'Sec-Fetch-Mode: cors' <br />  -H 'Sec-Fetch-Site: same-site' <br />  -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36' <br />  -H 'sec-ch-ua: \"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\"' <br />  -H 'sec-ch-ua-mobile: ?0' <br />  -H 'sec-ch-ua-platform: \"macOS\"' <br />  --data-raw '{\"file_path\":\"/app/uploads/api-test (3).xlsx\"}'</p>\n","urlObject":{"protocol":"http","port":"8080","path":["extract-data"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"13a8a332-ee09-49d2-a4aa-e97bd8bb9deb"},{"name":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/views/es/tickets","id":"393374a6-e226-4d35-895d-31da28183e7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"origin","value":"https://stage-nca-tap-api.tekioncloud.xyz"},{"key":"tap-api-token","value":"eyJraWQiOiJZQ21UNkZsaXBFcXRfOGV1c0o5OUNVb0NhTHl3TGJscm13ZUxZYnVXb3o0IiwiYWxnIjoiUlMyNTYifQ.eyJ2ZXIiOjEsImp0aSI6IkFULm8tNWU1Ukh3NUFTWTNSUWhJZTBqMzA1cV9idXZQVlVESHlfTUx5WTR2NGMiLCJpc3MiOiJodHRwczovL2VtcGxveWVlLnRla2lvbi5jb20vb2F1dGgyL2F1czJtcTFqN2xrV1RlNjhBNHg3IiwiYXVkIjoiYXBpOi8vZGVmYXVsdCIsImlhdCI6MTcyMzQ0MzEwOCwiZXhwIjoxNzIzNDcxOTA4LCJjaWQiOiIwb2ExaTAwbjlyWU9ZcWx3STR4NyIsInVpZCI6IjAwdTJoazBvMTFtQVpuV0k5NHg3Iiwic2NwIjpbIm9wZW5pZCIsImVtYWlsIiwicHJvZmlsZSJdLCJhdXRoX3RpbWUiOjE3MjM0NDMxMDQsInN1YiI6InNlbGVuaXVtdGVzdDFAdGVraW9uLmNvbSJ9.ivdypYZwejdbsRD4rAa4IETSV0zKHlmT0uK4GSfH1Yo4gP-0G_0SfREU61bR39gWGETxEvEAKpSUt9o5MGclq8pnoqdTuM5WhUJMvtff3vRElS79isRHAGlm5yk3qd0Y41mtkF3rMU86gkMLHVHD7N3kiqMIk8L2Oh5rITPpymlqIs_VSgZf4QCAvPNBc58prgWTowUmOQ6sj_qxmHgrjYX-qbLQdYRsH1eoNTThKrl-2cmz1zTUpt6n9UQxi73bLZyjafnWq3JGCpzydHZmaurvtXX6nP6znqgFZcfFL8E3_V5rlqDgHY2ngXvnDJ1kblmJClaMbY7fju5bG-bV2w"},{"key":"content-type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"view_id\" : \"clgysnlwa00ow07qm3sdqfisi\",\n  \"page_info\" : {\n    \"start\" : 0,\n    \"rows\" : 1000\n  },\n  \"currentEpoch\" : null,\n  \"filters\" : [ {\n    \"field\" : \"source\",\n    \"operator\" : \"In\",\n    \"values\" : [ \"voip\" ],\n    \"data_type\" : \"string\"\n  } ]\n}","options":{"raw":{"language":"json"}}},"url":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/views/es/tickets","description":"<p>Generated from cURL: curl -X POST <br />-H 'origin: <a href=\"https://stage-nca-tap-api.tekioncloud.xyz\">https://stage-nca-tap-api.tekioncloud.xyz</a>' <br />-H 'tap-api-token: eyJraWQiOiJZQ21UNkZsaXBFcXRfOGV1c0o5OUNVb0NhTHl3TGJscm13ZUxZYnVXb3o0IiwiYWxnIjoiUlMyNTYifQ.eyJ2ZXIiOjEsImp0aSI6IkFULm8tNWU1Ukh3NUFTWTNSUWhJZTBqMzA1cV9idXZQVlVESHlfTUx5WTR2NGMiLCJpc3MiOiJodHRwczovL2VtcGxveWVlLnRla2lvbi5jb20vb2F1dGgyL2F1czJtcTFqN2xrV1RlNjhBNHg3IiwiYXVkIjoiYXBpOi8vZGVmYXVsdCIsImlhdCI6MTcyMzQ0MzEwOCwiZXhwIjoxNzIzNDcxOTA4LCJjaWQiOiIwb2ExaTAwbjlyWU9ZcWx3STR4NyIsInVpZCI6IjAwdTJoazBvMTFtQVpuV0k5NHg3Iiwic2NwIjpbIm9wZW5pZCIsImVtYWlsIiwicHJvZmlsZSJdLCJhdXRoX3RpbWUiOjE3MjM0NDMxMDQsInN1YiI6InNlbGVuaXVtdGVzdDFAdGVraW9uLmNvbSJ9.ivdypYZwejdbsRD4rAa4IETSV0zKHlmT0uK4GSfH1Yo4gP-0G_0SfREU61bR39gWGETxEvEAKpSUt9o5MGclq8pnoqdTuM5WhUJMvtff3vRElS79isRHAGlm5yk3qd0Y41mtkF3rMU86gkMLHVHD7N3kiqMIk8L2Oh5rITPpymlqIs_VSgZf4QCAvPNBc58prgWTowUmOQ6sj_qxmHgrjYX-qbLQdYRsH1eoNTThKrl-2cmz1zTUpt6n9UQxi73bLZyjafnWq3JGCpzydHZmaurvtXX6nP6znqgFZcfFL8E3_V5rlqDgHY2ngXvnDJ1kblmJClaMbY7fju5bG-bV2w' <br />-H 'content-type: application/json' <br />-d '{\n  \"view_id\" : \"clgysnlwa00ow07qm3sdqfisi\",\n  \"page_info\" : {\n    \"start\" : 0,\n    \"rows\" : 1000\n  },\n  \"currentEpoch\" : null,\n  \"filters\" : [ {\n    \"field\" : \"source\",\n    \"operator\" : \"In\",\n    \"values\" : [ \"voip\" ],\n    \"data_type\" : \"string\"\n  } ]\n}' <br />'<a href=\"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/views/es/tickets\">https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/views/es/tickets</a>' </p>\n","urlObject":{"protocol":"https","path":["tapapi","helpdesk","v1","public","views","es","tickets"],"host":["stage-nca-tap-api","tekioncloud","xyz"],"query":[],"variable":[]}},"response":[],"_postman_id":"393374a6-e226-4d35-895d-31da28183e7e"},{"name":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/workflow/v1/public/projects/ckn91nzjk00002i52xkd2pmay/fields","id":"fd5029a8-14a7-4bed-9d73-ec472f10a5e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-language","value":"en-GB,en;q=0.9"},{"key":"email","value":"seleniumtest1@tekion.com"},{"key":"locale","value":"en_US"},{"key":"origin","value":"https://stagetap.tekioncloud.xyz"},{"key":"priority","value":"u=1, i"},{"key":"referer","value":"https://stagetap.tekioncloud.xyz/"},{"key":"sec-ch-ua","value":"\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""},{"key":"sec-ch-ua-mobile","value":"?0"},{"key":"sec-ch-ua-platform","value":"\"macOS\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"same-site"},{"key":"tap-api-token","value":"eyJraWQiOiJZQ21UNkZsaXBFcXRfOGV1c0o5OUNVb0NhTHl3TGJscm13ZUxZYnVXb3o0IiwiYWxnIjoiUlMyNTYifQ.eyJ2ZXIiOjEsImp0aSI6IkFULlZWNHhUMWRGUEZMUVlfTV9xNFFwaGZTWWJodXE1LW03R0p5Z1dhcV9uLU0iLCJpc3MiOiJodHRwczovL2VtcGxveWVlLnRla2lvbi5jb20vb2F1dGgyL2F1czJtcTFqN2xrV1RlNjhBNHg3IiwiYXVkIjoiYXBpOi8vZGVmYXVsdCIsImlhdCI6MTcyMzQ0MzU2NCwiZXhwIjoxNzIzNDcyMzY0LCJjaWQiOiIwb2ExaTAwbjlyWU9ZcWx3STR4NyIsInVpZCI6IjAwdTJoazBvMTFtQVpuV0k5NHg3Iiwic2NwIjpbInByb2ZpbGUiLCJvcGVuaWQiLCJlbWFpbCJdLCJhdXRoX3RpbWUiOjE3MjM0NDM1NjAsInN1YiI6InNlbGVuaXVtdGVzdDFAdGVraW9uLmNvbSJ9.dXxM5zGvS9k4Fm0MHCDY9r_C6Tv4RJTmIEmZYN-Z2hs4YX4HGZ1S2OG4TPKtAfdWgFZ8tJFwt_mW2Bn0-tUE_-qcVYEvrzTPwaunxm02hGnMkAu_UOMRw3HaECNIVVGBPHn4E31bIdtOX9khI6iOAi5I3aZY_5lHkHxdzKwL6TeFQzBEcCn77kticih5gBJ15bHAn1agxz5iY7rIKSnc7f1Cj8K8gCvsC5wO-xUflZyqg_fYdX6vEInNxczUYAxse3fN0KwTtr1IoS6P6bDUX90VpCT8WSijJh_78rs5eIPXnbnlBzTZrGJkJMmVd9Y8NTJQyMrOyOQ4-992VUdT5A"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"}],"url":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/workflow/v1/public/projects/ckn91nzjk00002i52xkd2pmay/fields","description":"<p>Generated from cURL: curl '<a href=\"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/workflow/v1/public/projects/ckn91nzjk00002i52xkd2pmay/fields\">https://stage-nca-tap-api.tekioncloud.xyz/tapapi/workflow/v1/public/projects/ckn91nzjk00002i52xkd2pmay/fields</a>' <br />  -H 'accept: application/json, text/plain, <em>/</em>' <br />  -H 'accept-language: en-GB,en;q=0.9' <br />  -H 'email: <a href=\"mailto:seleniumtest1@tekion.com\">seleniumtest1@tekion.com</a>' <br />  -H 'locale: en_US' <br />  -H 'origin: <a href=\"https://stagetap.tekioncloud.xyz\">https://stagetap.tekioncloud.xyz</a>' <br />  -H 'priority: u=1, i' <br />  -H 'referer: <a href=\"https://stagetap.tekioncloud.xyz/\">https://stagetap.tekioncloud.xyz/</a>' <br />  -H 'sec-ch-ua: \"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\"' <br />  -H 'sec-ch-ua-mobile: ?0' <br />  -H 'sec-ch-ua-platform: \"macOS\"' <br />  -H 'sec-fetch-dest: empty' <br />  -H 'sec-fetch-mode: cors' <br />  -H 'sec-fetch-site: same-site' <br />  -H 'tap-api-token: eyJraWQiOiJZQ21UNkZsaXBFcXRfOGV1c0o5OUNVb0NhTHl3TGJscm13ZUxZYnVXb3o0IiwiYWxnIjoiUlMyNTYifQ.eyJ2ZXIiOjEsImp0aSI6IkFULlZWNHhUMWRGUEZMUVlfTV9xNFFwaGZTWWJodXE1LW03R0p5Z1dhcV9uLU0iLCJpc3MiOiJodHRwczovL2VtcGxveWVlLnRla2lvbi5jb20vb2F1dGgyL2F1czJtcTFqN2xrV1RlNjhBNHg3IiwiYXVkIjoiYXBpOi8vZGVmYXVsdCIsImlhdCI6MTcyMzQ0MzU2NCwiZXhwIjoxNzIzNDcyMzY0LCJjaWQiOiIwb2ExaTAwbjlyWU9ZcWx3STR4NyIsInVpZCI6IjAwdTJoazBvMTFtQVpuV0k5NHg3Iiwic2NwIjpbInByb2ZpbGUiLCJvcGVuaWQiLCJlbWFpbCJdLCJhdXRoX3RpbWUiOjE3MjM0NDM1NjAsInN1YiI6InNlbGVuaXVtdGVzdDFAdGVraW9uLmNvbSJ9.dXxM5zGvS9k4Fm0MHCDY9r_C6Tv4RJTmIEmZYN-Z2hs4YX4HGZ1S2OG4TPKtAfdWgFZ8tJFwt_mW2Bn0-tUE_-qcVYEvrzTPwaunxm02hGnMkAu_UOMRw3HaECNIVVGBPHn4E31bIdtOX9khI6iOAi5I3aZY_5lHkHxdzKwL6TeFQzBEcCn77kticih5gBJ15bHAn1agxz5iY7rIKSnc7f1Cj8K8gCvsC5wO-xUflZyqg_fYdX6vEInNxczUYAxse3fN0KwTtr1IoS6P6bDUX90VpCT8WSijJh_78rs5eIPXnbnlBzTZrGJkJMmVd9Y8NTJQyMrOyOQ4-992VUdT5A' <br />  -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36'</p>\n","urlObject":{"protocol":"https","path":["tapapi","workflow","v1","public","projects","ckn91nzjk00002i52xkd2pmay","fields"],"host":["stage-nca-tap-api","tekioncloud","xyz"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd5029a8-14a7-4bed-9d73-ec472f10a5e6"},{"name":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/builders?users=true","id":"3f4fd656-5a4b-448e-a988-fd2313e0d7df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"tap-api-token","value":"eyJraWQiOiJZQ21UNkZsaXBFcXRfOGV1c0o5OUNVb0NhTHl3TGJscm13ZUxZYnVXb3o0IiwiYWxnIjoiUlMyNTYifQ.eyJ2ZXIiOjEsImp0aSI6IkFULm9JMDB0TjEyeTd2QWNBNUF1WnNrMnVoeWxLaUNuazZLdmtZUTVob19zdmciLCJpc3MiOiJodHRwczovL2VtcGxveWVlLnRla2lvbi5jb20vb2F1dGgyL2F1czJtcTFqN2xrV1RlNjhBNHg3IiwiYXVkIjoiYXBpOi8vZGVmYXVsdCIsImlhdCI6MTcyMzQ1MzgyOSwiZXhwIjoxNzIzNDgyNjI5LCJjaWQiOiIwb2ExaTAwbjlyWU9ZcWx3STR4NyIsInVpZCI6IjAwdTJoazBvMTFtQVpuV0k5NHg3Iiwic2NwIjpbImVtYWlsIiwib3BlbmlkIiwicHJvZmlsZSJdLCJhdXRoX3RpbWUiOjE3MjM0NTM4MjUsInN1YiI6InNlbGVuaXVtdGVzdDFAdGVraW9uLmNvbSJ9.Pa1lnnqdscB3sgNrZEsy5bQeTgz0JeoBs2-wDJvobtzgAoKu3lW59gkAUV53-eXYp6ozOL3RrE4pnPrJCpkHfNNuLqOrI5rAKcRN2Erf9DY1ejO66wGTd3m_7f7BcxipIzmSoOYrXC93PVOuDZ0oFgG90qGTYc4X9bPzzOFmCeqQXFTtMPISz-F8D7rG2QyXPxcimxk1XgLpH-5uGCengys1tzGaJdUVkTaGp94OAvlJWlDFI0aN1bdfHDPDI8lvMJ1n2VPNnREQhUQJN17xdQDzGr_F26fQgybrKplOLYRswlJ-C_qtHb5_P-8w-hxOSmXIeeTJrJ4Wq6iWPCKPsw"},{"key":"content-type","value":"application/json"}],"url":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/builders?users=true","description":"<p>Generated from cURL: curl -X GET <br />-H 'tap-api-token: eyJraWQiOiJZQ21UNkZsaXBFcXRfOGV1c0o5OUNVb0NhTHl3TGJscm13ZUxZYnVXb3o0IiwiYWxnIjoiUlMyNTYifQ.eyJ2ZXIiOjEsImp0aSI6IkFULm9JMDB0TjEyeTd2QWNBNUF1WnNrMnVoeWxLaUNuazZLdmtZUTVob19zdmciLCJpc3MiOiJodHRwczovL2VtcGxveWVlLnRla2lvbi5jb20vb2F1dGgyL2F1czJtcTFqN2xrV1RlNjhBNHg3IiwiYXVkIjoiYXBpOi8vZGVmYXVsdCIsImlhdCI6MTcyMzQ1MzgyOSwiZXhwIjoxNzIzNDgyNjI5LCJjaWQiOiIwb2ExaTAwbjlyWU9ZcWx3STR4NyIsInVpZCI6IjAwdTJoazBvMTFtQVpuV0k5NHg3Iiwic2NwIjpbImVtYWlsIiwib3BlbmlkIiwicHJvZmlsZSJdLCJhdXRoX3RpbWUiOjE3MjM0NTM4MjUsInN1YiI6InNlbGVuaXVtdGVzdDFAdGVraW9uLmNvbSJ9.Pa1lnnqdscB3sgNrZEsy5bQeTgz0JeoBs2-wDJvobtzgAoKu3lW59gkAUV53-eXYp6ozOL3RrE4pnPrJCpkHfNNuLqOrI5rAKcRN2Erf9DY1ejO66wGTd3m_7f7BcxipIzmSoOYrXC93PVOuDZ0oFgG90qGTYc4X9bPzzOFmCeqQXFTtMPISz-F8D7rG2QyXPxcimxk1XgLpH-5uGCengys1tzGaJdUVkTaGp94OAvlJWlDFI0aN1bdfHDPDI8lvMJ1n2VPNnREQhUQJN17xdQDzGr_F26fQgybrKplOLYRswlJ-C_qtHb5_P-8w-hxOSmXIeeTJrJ4Wq6iWPCKPsw' <br />-H 'content-type: application/json' <br />'<a href=\"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/builders?users=true\">https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/builders?users=true</a>' </p>\n","urlObject":{"protocol":"https","path":["tapapi","helpdesk","v1","public","builders"],"host":["stage-nca-tap-api","tekioncloud","xyz"],"query":[{"key":"users","value":"true"}],"variable":[]}},"response":[],"_postman_id":"3f4fd656-5a4b-448e-a988-fd2313e0d7df"},{"name":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/offline_message","id":"67bd4c14-e307-488f-a70a-9cff1e914ded","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IiIsImVtYWlsIjoic2VsZW5pdW10ZXN0MUB0ZWtpb24uY29tIiwidGVuYW50IjoidGFwIiwiZGVhbGVyIjoidGFwIiwiY3VzdG9tZXJfcG9ydGFsIjp7ImZlYXR1cmVzIjpmYWxzZSwiaXNzdWVzIjpmYWxzZSwiY28tYnJvd3NpbmciOmZhbHNlfSwiYnJhbmRfaWQiOiIiLCJrZXlfdHlwZSI6ImFjY2VzcyIsImV4cCI6MTczMjAwOTgzNiwiaWF0IjoxNzMyMDA4MDM2LCJpc3MiOiJ0YXAuand0LnByb3ZpZGVyLnNlcnZpY2UifQ.uU38PflNC3JcFPQhT1gaXCarsjKlWUZkUxj9kWfWnZc"},{"key":"content-type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"attachments\" : [ ],\n  \"phone\" : \"1234567890\",\n  \"subject\" : \"Winter is coming. - Double Edged Sword\",\n  \"session\" : \"\",\n  \"form_id\" : null,\n  \"description\" : \"Do the dead frighten you? - Courage of the Colossus\",\n  \"from\" : \"seleniumtest1@tekion.com\",\n  \"source\" : \"offline_message\",\n  \"brand_id\" : \"clvo6oe22000008iia4h6fyq6\",\n  \"tags\" : [ ]\n}","options":{"raw":{"language":"json"}}},"url":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/offline_message","description":"<p>Generated from cURL: curl -X POST <br />-H 'access_token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IiIsImVtYWlsIjoic2VsZW5pdW10ZXN0MUB0ZWtpb24uY29tIiwidGVuYW50IjoidGFwIiwiZGVhbGVyIjoidGFwIiwiY3VzdG9tZXJfcG9ydGFsIjp7ImZlYXR1cmVzIjpmYWxzZSwiaXNzdWVzIjpmYWxzZSwiY28tYnJvd3NpbmciOmZhbHNlfSwiYnJhbmRfaWQiOiIiLCJrZXlfdHlwZSI6ImFjY2VzcyIsImV4cCI6MTczMjAwOTgzNiwiaWF0IjoxNzMyMDA4MDM2LCJpc3MiOiJ0YXAuand0LnByb3ZpZGVyLnNlcnZpY2UifQ.uU38PflNC3JcFPQhT1gaXCarsjKlWUZkUxj9kWfWnZc' <br />-H 'content-type: application/json' <br />-d '{\n  \"attachments\" : [ ],\n  \"phone\" : \"1234567890\",\n  \"subject\" : \"Winter is coming. - Double Edged Sword\",\n  \"session\" : \"\",\n  \"form_id\" : null,\n  \"description\" : \"Do the dead frighten you? - Courage of the Colossus\",\n  \"from\" : \"<a href=\"mailto:seleniumtest1@tekion.com\">seleniumtest1@tekion.com</a>\",\n  \"source\" : \"offline_message\",\n  \"brand_id\" : \"clvo6oe22000008iia4h6fyq6\",\n  \"tags\" : [ ]\n}' <br />'<a href=\"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/offline_message\">https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/offline_message</a>'</p>\n","urlObject":{"protocol":"https","path":["tapapi","helpdesk","v1","public","offline_message"],"host":["stage-nca-tap-api","tekioncloud","xyz"],"query":[],"variable":[]}},"response":[],"_postman_id":"67bd4c14-e307-488f-a70a-9cff1e914ded"},{"name":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/clone","id":"001a37f1-5436-4aa4-8116-1ee52bf4dc1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-language","value":"en-GB,en-US;q=0.9,en;q=0.8,hi;q=0.7"},{"key":"content-type","value":"application/json"},{"key":"email","value":"navishk@tekion.com"},{"key":"locale","value":"en_US"},{"key":"origin","value":"https://stagetap.tekioncloud.xyz"},{"key":"priority","value":"u=1, i"},{"key":"referer","value":"https://stagetap.tekioncloud.xyz/"},{"key":"sec-ch-ua","value":"\"Google Chrome\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\""},{"key":"sec-ch-ua-mobile","value":"?0"},{"key":"sec-ch-ua-platform","value":"\"macOS\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"same-site"},{"key":"tap-duo-api-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhcGk6Ly90YXBfcHVibGljIiwiZXhwIjoxNzM3OTg0NTQwLCJmaXJzdE5hbWUiOiJOYXZpc2giLCJpYXQiOjE3Mzc5NTU3NDAsImlzcyI6InRhcF9kdW9fc2FtbF9hdXRoIiwibGFzdE5hbWUiOiJLdW1hciIsInNjb3BlIjoiYWNjZXNzIiwic3ViIjoibmF2aXNoa0B0ZWtpb24uY29tIn0.ywhx4kPLAh3f9g-ykuryYYQM_l0R7raaYl3MDbb18CE"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36"}],"body":{"mode":"raw","raw":"{\"ticket_id\":1011175,\"clone_comments\":true,\"from_tap\":true,\"ticket\":{\"formId\":\"\",\"fields\":[],\"comments\":[{\"id\":\"cm6epdx67004307qbbmzhufrv\",\"source_comment_id\":\"\",\"ticket_unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"ticket_id\":1011175,\"created_by\":\"tapnotification-dev@tekion.com\",\"created_at\":1737961470511,\"updated_at\":1737961470511,\"updated_by\":\"\",\"body\":\"\",\"body_html\":\"<!DOCTYPE html><html lang=\\\"en\\\"><body>    <p>Dear all,</p>    <p>For the below dealer, Bob Johnson Chevrolet West activation is still In-progress state, please reach out to relevant folks and help us activate the dealer.</p>    <p>Dealer name: Bob Johnson Chevrolet West</p>    <p>IM URL: <a href=\\\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\\\" target=\\\"_blank\\\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules</a></p>    <p>Sku status: scheduled</p>    <br/></body></html>\",\"body_formatted\":\"\",\"message_args\":null,\"type\":\"public\",\"attachments\":[],\"source\":\"email\",\"email_fields\":{\"message_id\":\"<01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com>\",\"in_reply_to\":\"\",\"references\":\",<01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com>\",\"event_key\":\"email/ckknsr0nw0000tyd2nd9njcfs/1usa7mm5qnbri6tncl8nt3635v76cjon9j9k0vg1\"},\"mentions\":null,\"hidden\":false,\"edited\":false,\"bot_comment\":false,\"self_assigned\":false,\"slack_fields\":null}],\"initLinks\":[],\"jira\":\"\",\"ticketLinks\":{\"unsavedLinks\":[],\"savedLinks\":[],\"deleteLinkIds\":[]},\"audits\":[{\"id\":\"cm6epdx8v004407qb8po5pcsk\",\"source\":\"email\",\"ticket_id\":1011175,\"ticket_unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"events\":[{\"resource_type\":\"comment\",\"operation\":\"create\",\"resource_id\":\"cm6epdx67004307qbbmzhufrv\",\"old_value\":{\"id\":\"cm6epdx67004307qbbmzhufrv\",\"source_comment_id\":\"\",\"ticket_unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"ticket_id\":1011175,\"created_by\":\"tapnotification-dev@tekion.com\",\"created_at\":1737961470511,\"updated_at\":1737961470511,\"updated_by\":\"\",\"body\":\"\",\"body_html\":\"<!DOCTYPE html><html lang=\\\"en\\\"><body>    <p>Dear all,</p>    <p>For the below dealer, Bob Johnson Chevrolet West activation is still In-progress state, please reach out to relevant folks and help us activate the dealer.</p>    <p>Dealer name: Bob Johnson Chevrolet West</p>    <p>IM URL: <a href=\\\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\\\" target=\\\"_blank\\\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules</a></p>    <p>Sku status: scheduled</p>    <br/></body></html>\",\"body_formatted\":\"\",\"message_args\":null,\"type\":\"public\",\"attachments\":[],\"source\":\"email\",\"email_fields\":{\"message_id\":\"<01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com>\",\"in_reply_to\":\"\",\"references\":\",<01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com>\",\"event_key\":\"email/ckknsr0nw0000tyd2nd9njcfs/1usa7mm5qnbri6tncl8nt3635v76cjon9j9k0vg1\"},\"mentions\":null,\"hidden\":false,\"edited\":false,\"bot_comment\":false,\"self_assigned\":false,\"slack_fields\":null},\"new_value\":null},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqr06dnylv2jkj5mblq\",\"old_value\":\"90024852-853 | Tekion Pay activation is not through | P0\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"cksuah434000007mffsr66z0y\",\"old_value\":\"email\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckj8jmlxx000390v2717clzai\",\"old_value\":\"tapnotification-dev@tekion.com\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckvhqypmj0000bzu9dxdi4usi\",\"old_value\":\"internal\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckrm5t15e00000al48uax8eo2\",\"old_value\":\"tapnotification-dev@tekion.com\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckk9n0wn1000001if6bvud7ik\",\"old_value\":[\"kumaranc@tekion.com\",\"numasankar@tekion.com\",\"esaravanan@tekion.com\"],\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckvck6hl200004hu9s5oz92fa\",\"old_value\":[],\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqs06ecylv2ty42h40q\",\"old_value\":\"\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckwd2y8gl0000kcu9pc756g15\",\"old_value\":\"ckwbm8h6a0000978941namqrb\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqr06dpylv2fe4asnpa\",\"old_value\":\"new\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjg2cqb80000uwv2knqgn8v1\",\"old_value\":\"ckknsr0nw0000tyd2nd9njcfs\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjg2eei20001uwv23o4saicv\",\"old_value\":\"ckojt5eao005b0875x7aq4erj\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqr06dzylv2bqwa96h2\",\"old_value\":\"normal\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckky0a93d0004tyd24y2ocwsg\",\"old_value\":\"\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckoe2nz4b000001mi43p4dfyc\",\"old_value\":[],\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckoy5i09d0000m5d2hewsxf9l\",\"old_value\":[],\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckxehaciv000007ky1su6714v\",\"old_value\":\"\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"cl0hxtd9u000209mr72449umk\",\"old_value\":\"\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwr607a9ylv25ddmorbz\",\"old_value\":\"p0\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"clcubb20i071d08qrdmde3pxy\",\"old_value\":null,\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"cm04v7pbr002q07ogxs8xzul4\",\"old_value\":null,\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqr06duylv2iwqfvb06\",\"old_value\":\"incident\",\"new_value\":\"\"}],\"timestamp\":1737961470485,\"user_id\":\"tapnotification-dev@tekion.com\",\"email_notifications\":[\"tapnotification-dev@tekion.com\",\"amuruganantham@tekion.com\",\"kumaranc@tekion.com\",\"numasankar@tekion.com\",\"esaravanan@tekion.com\"],\"slack_notifications\":null}],\"commentsHash\":[[\"cm6epdx67004307qbbmzhufrv\",{\"id\":\"cm6epdx67004307qbbmzhufrv\",\"source_comment_id\":\"\",\"ticket_unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"ticket_id\":1011175,\"created_by\":\"tapnotification-dev@tekion.com\",\"created_at\":1737961470511,\"updated_at\":1737961470511,\"updated_by\":\"\",\"body\":\"\",\"body_html\":\"<!DOCTYPE html><html lang=\\\"en\\\"><body>    <p>Dear all,</p>    <p>For the below dealer, Bob Johnson Chevrolet West activation is still In-progress state, please reach out to relevant folks and help us activate the dealer.</p>    <p>Dealer name: Bob Johnson Chevrolet West</p>    <p>IM URL: <a href=\\\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\\\" target=\\\"_blank\\\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules</a></p>    <p>Sku status: scheduled</p>    <br/></body></html>\",\"body_formatted\":\"\",\"message_args\":null,\"type\":\"public\",\"attachments\":[],\"source\":\"email\",\"email_fields\":{\"message_id\":\"<01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com>\",\"in_reply_to\":\"\",\"references\":\",<01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com>\",\"event_key\":\"email/ckknsr0nw0000tyd2nd9njcfs/1usa7mm5qnbri6tncl8nt3635v76cjon9j9k0vg1\"},\"mentions\":null,\"hidden\":false,\"edited\":false,\"bot_comment\":false,\"self_assigned\":false,\"slack_fields\":null}]],\"dependentCallBackParams\":[],\"escalations\":[],\"id\":1011175,\"unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"conversation_id\":\"caa5018f-1295-43da-b315-ce827106a0e5\",\"call_id\":[\"f0330293-1a50-4746-ace2-cffe9822d1d4\"],\"subject\":\"90024852-853 | Tekion Pay activation is not through | P0\",\"search_text\":\"1011175|90024852-853 | Tekion Pay activation is not through | P0\",\"description\":\"\",\"submitter\":\"tapnotification-dev@tekion.com\",\"requester\":\"tapnotification-dev@tekion.com\",\"tenant\":\"\",\"cc\":[\"kumaranc@tekion.com\",\"numasankar@tekion.com\",\"esaravanan@tekion.com\"],\"watchers\":[],\"assignee\":\"\",\"user_group\":\"ckwbm8h6a0000978941namqrb\",\"status\":\"new\",\"brand_id\":\"ckknsr0nw0000tyd2nd9njcfs\",\"form_id\":\"ckojt5eao005b0875x7aq4erj\",\"ticket_user_type\":\"internal\",\"created_at\":1737961470485,\"updated_at\":1737962086735,\"updated_by\":\"tapnotification-dev@tekion.com\",\"type\":\"incident\",\"priority\":\"normal\",\"problem_ticket\":0,\"incident_tickets\":[],\"plugins\":{\"jira\":{},\"crm\":{\"dealer\":{},\"impacted_dealers\":[]},\"requester\":{},\"feature_id\":[],\"kb_articles\":[]},\"tasks\":[],\"system_fields\":null,\"custom_fields\":[{\"id\":\"cli55bbny01oa07pra115w5ce\",\"value\":\"\"},{\"id\":\"ckqotd2bt01gf35d271ctni4k\",\"value\":\"\"},{\"id\":\"ckojyh0g0004h082370x8djkz\",\"value\":\"\"},{\"id\":\"ckojt0w9c004y0875lf0angdz\",\"value\":\"\"},{\"id\":\"clkgpvc3g0jzy07o7y5qrnqd9\",\"value\":\"\"},{\"id\":\"ckojt7lrs005c0875526sjb8i\",\"value\":\"\"},{\"id\":\"clbq8bftj0dh708mehnh0r11y\",\"value\":\"\"},{\"id\":\"clofusz7y06ch06nzrz7q9h9c\",\"value\":\"\"},{\"id\":\"clcubb20i071d08qrdmde3pxy\",\"value\":\"\"},{\"id\":\"clbsca869008o08laglk9mnjq\",\"value\":\"\"},{\"id\":\"cm04v7pbr002q07ogxs8xzul4\",\"value\":\"\"},{\"id\":\"cm0usb9n300cs07mkeg1uo2kg\",\"value\":\"\"},{\"id\":\"ckjfymwqv06m9ylv2vo96prgx\",\"value\":\"\"}],\"source\":\"email\",\"tags\":[],\"custom_tags\":[],\"csat\":null,\"csat_send_date\":0,\"email_reference_id\":\"<cm6epdx5h004107qbo4iv1iwq@tekion.com>\",\"metric\":{\"status_updated_at\":1737961470485,\"status_split\":{},\"reopen_count\":0,\"comments_count\":1,\"last_comment_at\":1737961470511,\"first_solved_at\":0,\"last_solved_at\":0,\"ticket_time\":0,\"resolution_time\":0,\"resolved_by\":\"\",\"chat_missed\":false,\"call_missed\":false,\"total_calls_missed\":0,\"chat_messages_count\":0,\"chat_total_time\":0,\"call_total_time\":0,\"call_started_at\":0,\"call_started_by\":\"\",\"first_chat_picked_at\":0,\"first_chat_picked_by\":\"\",\"chat_live_assist_count\":0,\"chat_co_browser_end_user_requested\":false,\"first_response_time\":0,\"average_message_response_time\":0,\"first_public_response_time\":0,\"last_public_response_time\":0,\"public_comments_count\":1,\"private_comments_count\":0,\"chat_bidirectional\":false,\"first_chat_assignee\":\"\",\"current_chat_assignee\":\"\",\"chat_auto_assigned\":false,\"time_taken_to_define_first_sla\":0,\"total_sla_count\":1,\"frt_met_count\":0,\"eta_met_count\":0,\"resolution_met_count\":0,\"resolution_met\":\"\",\"total_sla_pause_duration\":0,\"total_sla_resolution_time\":0},\"spam\":false,\"unread_comment_count\":1,\"last_comment_unread_at\":1737961470523,\"last_comment_acknowledged_at\":0,\"last_comment_acknowledged_by\":\"\",\"co_browser_url\":\"\",\"co_browser_live_url\":\"\",\"escalation\":{\"total_escalated_count\":0,\"customer_escalation_count\":0,\"system_escalation_count\":0,\"psm_escalation_count\":0,\"active_customer_escalation_count\":0,\"active_system_escalation_count\":0,\"active_psm_escalation_count\":0,\"psm_escalation_status\":\"\",\"psm_escalation_triggered_at\":0,\"psm_escalation_triggered_by\":\"\",\"customer_escalation_status\":\"\"},\"resolution\":{\"kb_resolution_type\":\"\",\"kb_resolution_submitted\":false,\"kb_submitted_by\":\"\",\"kb_service_now_api_status\":\"\",\"kb_article_availability\":\"\",\"kb_article_status\":\"\",\"tara_response_for_first_user_query\":\"\",\"kb_articles\":null},\"from_mail_id\":\"tapsupport@tekioncloud.xyz\",\"brand_history\":null,\"merged_ticket_ids\":null,\"request_to_close\":\"request_to_close_no\",\"is_lus_linked\":false,\"chat_status\":\"\",\"call_status\":false,\"is_chat_v2\":false,\"no_com_count\":0,\"current_no_com_count\":0,\"is_l2_raised\":false,\"l1_ticket_id\":0,\"key\":\"\",\"sla\":{\"id\":\"cm6epdx5i004207qbkoegpulc\",\"sla_config_id\":\"cm3pje91g00dq07ntpuj3o2y1\",\"status\":\"in_progress\",\"sla_started_at\":1737961470485,\"eta_sla_met\":\"sla_not_met\",\"eta_sla_time\":0,\"eta_sla_breach_in\":1737961770485,\"eta_updated_at\":0,\"resolution_sla_met\":\"sla_NA\",\"resolution_sla_time\":0,\"resolution_sla_breach_in\":1737962070485,\"resolved_at\":0,\"sla_paused_at\":0,\"sla_paused_time\":0,\"elapsed_time\":0,\"planned_eta_sla_time\":300000,\"planned_resolution_time\":600000,\"planned_frt\":300000,\"first_response_sla_met\":\"sla_not_met\",\"first_response_sla_time\":0,\"first_response_sla_breach_in\":1737961770485,\"first_response_updated_at\":0,\"frt_breach_pre_notify_at\":1737961695485,\"eta_breach_pre_notify_at\":1737961695485,\"resolution_pre_notify_at\":1737961920485,\"reset_count\":0,\"notification_status\":{\"eta_yet_to_breach_notification_sent\":\"notification_not_sent\",\"eta_breached_notification_sent\":\"notification_triggered\",\"frt_yet_to_breach_notification_sent\":\"notification_triggered\",\"frt_breached_notification_sent\":\"notification_triggered\",\"resolution_yet_to_breach_notification_sent\":\"notification_triggered\",\"resolution_breached_notification_sent\":\"notification_not_sent\"}},\"due_date\":0,\"sla_priority\":\"p0\",\"sla_enabled\":true,\"lastRefreshedAt\":1737963837529,\"isPlayMode\":false}}","options":{"raw":{"language":"json"}}},"url":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/clone","description":"<p>Generated from cURL: curl '<a href=\"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/clone\">https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/clone</a>' <br />  -H 'accept: application/json, text/plain, <em>/</em>' <br />  -H 'accept-language: en-GB,en-US;q=0.9,en;q=0.8,hi;q=0.7' <br />  -H 'content-type: application/json' <br />  -H 'email: <a href=\"mailto:navishk@tekion.com\">navishk@tekion.com</a>' <br />  -H 'locale: en_US' <br />  -H 'origin: <a href=\"https://stagetap.tekioncloud.xyz\">https://stagetap.tekioncloud.xyz</a>' <br />  -H 'priority: u=1, i' <br />  -H 'referer: <a href=\"https://stagetap.tekioncloud.xyz/\">https://stagetap.tekioncloud.xyz/</a>' <br />  -H 'sec-ch-ua: \"Google Chrome\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"' <br />  -H 'sec-ch-ua-mobile: ?0' <br />  -H 'sec-ch-ua-platform: \"macOS\"' <br />  -H 'sec-fetch-dest: empty' <br />  -H 'sec-fetch-mode: cors' <br />  -H 'sec-fetch-site: same-site' <br />  -H 'tap-duo-api-token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhcGk6Ly90YXBfcHVibGljIiwiZXhwIjoxNzM3OTg0NTQwLCJmaXJzdE5hbWUiOiJOYXZpc2giLCJpYXQiOjE3Mzc5NTU3NDAsImlzcyI6InRhcF9kdW9fc2FtbF9hdXRoIiwibGFzdE5hbWUiOiJLdW1hciIsInNjb3BlIjoiYWNjZXNzIiwic3ViIjoibmF2aXNoa0B0ZWtpb24uY29tIn0.ywhx4kPLAh3f9g-ykuryYYQM_l0R7raaYl3MDbb18CE' <br />  -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36' <br />  --data-raw $'{\"ticket_id\":1011175,\"clone_comments\":true,\"from_tap\":true,\"ticket\":{\"formId\":\"\",\"fields\":[],\"comments\":[{\"id\":\"cm6epdx67004307qbbmzhufrv\",\"source_comment_id\":\"\",\"ticket_unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"ticket_id\":1011175,\"created_by\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"created_at\":1737961470511,\"updated_at\":1737961470511,\"updated_by\":\"\",\"body\":\"\",\"body_html\":\"&lt;\\u0021DOCTYPE html&gt;&lt;html lang=\\\"en\\\"&gt;    <p>Dear all,</p>    <p>For the below dealer, Bob Johnson Chevrolet West activation is still In-progress state, please reach out to relevant folks and help us activate the dealer.</p>    <p>Dealer name: Bob Johnson Chevrolet West</p>    <p>IM URL: &lt;a href=\\\"<a href=\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules%5C%5C\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\\\\</a>\" target=\\\"_blank\\\"&gt;<a href=\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules</a></p>    <p>Sku status: scheduled</p>    <br />\",\"body_formatted\":\"\",\"message_args\":null,\"type\":\"public\",\"attachments\":[],\"source\":\"email\",\"email_fields\":{\"message_id\":\"<a href=\"mailto:01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com\">01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com</a>\",\"in_reply_to\":\"\",\"references\":\",<a href=\"mailto:01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com\">01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com</a>\",\"event_key\":\"email/ckknsr0nw0000tyd2nd9njcfs/1usa7mm5qnbri6tncl8nt3635v76cjon9j9k0vg1\"},\"mentions\":null,\"hidden\":false,\"edited\":false,\"bot_comment\":false,\"self_assigned\":false,\"slack_fields\":null}],\"initLinks\":[],\"jira\":\"\",\"ticketLinks\":{\"unsavedLinks\":[],\"savedLinks\":[],\"deleteLinkIds\":[]},\"audits\":[{\"id\":\"cm6epdx8v004407qb8po5pcsk\",\"source\":\"email\",\"ticket_id\":1011175,\"ticket_unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"events\":[{\"resource_type\":\"comment\",\"operation\":\"create\",\"resource_id\":\"cm6epdx67004307qbbmzhufrv\",\"old_value\":{\"id\":\"cm6epdx67004307qbbmzhufrv\",\"source_comment_id\":\"\",\"ticket_unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"ticket_id\":1011175,\"created_by\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"created_at\":1737961470511,\"updated_at\":1737961470511,\"updated_by\":\"\",\"body\":\"\",\"body_html\":\"&lt;\\u0021DOCTYPE html&gt;&lt;html lang=\\\"en\\\"&gt;    <p>Dear all,</p>    <p>For the below dealer, Bob Johnson Chevrolet West activation is still In-progress state, please reach out to relevant folks and help us activate the dealer.</p>    <p>Dealer name: Bob Johnson Chevrolet West</p>    <p>IM URL: &lt;a href=\\\"<a href=\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules%5C%5C\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\\\\</a>\" target=\\\"_blank\\\"&gt;<a href=\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules</a></p>    <p>Sku status: scheduled</p>    <br />\",\"body_formatted\":\"\",\"message_args\":null,\"type\":\"public\",\"attachments\":[],\"source\":\"email\",\"email_fields\":{\"message_id\":\"<a href=\"mailto:01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com\">01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com</a>\",\"in_reply_to\":\"\",\"references\":\",<a href=\"mailto:01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com\">01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com</a>\",\"event_key\":\"email/ckknsr0nw0000tyd2nd9njcfs/1usa7mm5qnbri6tncl8nt3635v76cjon9j9k0vg1\"},\"mentions\":null,\"hidden\":false,\"edited\":false,\"bot_comment\":false,\"self_assigned\":false,\"slack_fields\":null},\"new_value\":null},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqr06dnylv2jkj5mblq\",\"old_value\":\"90024852-853 | Tekion Pay activation is not through | P0\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"cksuah434000007mffsr66z0y\",\"old_value\":\"email\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckj8jmlxx000390v2717clzai\",\"old_value\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckvhqypmj0000bzu9dxdi4usi\",\"old_value\":\"internal\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckrm5t15e00000al48uax8eo2\",\"old_value\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckk9n0wn1000001if6bvud7ik\",\"old_value\":[\"<a href=\"mailto:kumaranc@tekion.com\">kumaranc@tekion.com</a>\",\"<a href=\"mailto:numasankar@tekion.com\">numasankar@tekion.com</a>\",\"<a href=\"mailto:esaravanan@tekion.com\">esaravanan@tekion.com</a>\"],\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckvck6hl200004hu9s5oz92fa\",\"old_value\":[],\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqs06ecylv2ty42h40q\",\"old_value\":\"\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckwd2y8gl0000kcu9pc756g15\",\"old_value\":\"ckwbm8h6a0000978941namqrb\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqr06dpylv2fe4asnpa\",\"old_value\":\"new\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjg2cqb80000uwv2knqgn8v1\",\"old_value\":\"ckknsr0nw0000tyd2nd9njcfs\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjg2eei20001uwv23o4saicv\",\"old_value\":\"ckojt5eao005b0875x7aq4erj\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqr06dzylv2bqwa96h2\",\"old_value\":\"normal\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckky0a93d0004tyd24y2ocwsg\",\"old_value\":\"\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckoe2nz4b000001mi43p4dfyc\",\"old_value\":[],\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckoy5i09d0000m5d2hewsxf9l\",\"old_value\":[],\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckxehaciv000007ky1su6714v\",\"old_value\":\"\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"cl0hxtd9u000209mr72449umk\",\"old_value\":\"\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwr607a9ylv25ddmorbz\",\"old_value\":\"p0\",\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"clcubb20i071d08qrdmde3pxy\",\"old_value\":null,\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"cm04v7pbr002q07ogxs8xzul4\",\"old_value\":null,\"new_value\":\"\"},{\"resource_type\":\"field\",\"operation\":\"create\",\"resource_id\":\"ckjfymwqr06duylv2iwqfvb06\",\"old_value\":\"incident\",\"new_value\":\"\"}],\"timestamp\":1737961470485,\"user_id\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"email_notifications\":[\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"<a href=\"mailto:amuruganantham@tekion.com\">amuruganantham@tekion.com</a>\",\"<a href=\"mailto:kumaranc@tekion.com\">kumaranc@tekion.com</a>\",\"<a href=\"mailto:numasankar@tekion.com\">numasankar@tekion.com</a>\",\"<a href=\"mailto:esaravanan@tekion.com\">esaravanan@tekion.com</a>\"],\"slack_notifications\":null}],\"commentsHash\":[[\"cm6epdx67004307qbbmzhufrv\",{\"id\":\"cm6epdx67004307qbbmzhufrv\",\"source_comment_id\":\"\",\"ticket_unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"ticket_id\":1011175,\"created_by\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"created_at\":1737961470511,\"updated_at\":1737961470511,\"updated_by\":\"\",\"body\":\"\",\"body_html\":\"&lt;\\u0021DOCTYPE html&gt;&lt;html lang=\\\"en\\\"&gt;    <p>Dear all,</p>    <p>For the below dealer, Bob Johnson Chevrolet West activation is still In-progress state, please reach out to relevant folks and help us activate the dealer.</p>    <p>Dealer name: Bob Johnson Chevrolet West</p>    <p>IM URL: &lt;a href=\\\"<a href=\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules%5C%5C\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\\\\</a>\" target=\\\"_blank\\\"&gt;<a href=\"https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules\">https://stagetap.tekioncloud.xyz/scheduling/implementation/details/90024852/schedules</a></p>    <p>Sku status: scheduled</p>    <br />\",\"body_formatted\":\"\",\"message_args\":null,\"type\":\"public\",\"attachments\":[],\"source\":\"email\",\"email_fields\":{\"message_id\":\"<a href=\"mailto:01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com\">01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com</a>\",\"in_reply_to\":\"\",\"references\":\",<a href=\"mailto:01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com\">01010194a6934ad5-e61d051d-1a48-45b2-83a6-8d6d576e7146-000000@us-west-2.amazonses.com</a>\",\"event_key\":\"email/ckknsr0nw0000tyd2nd9njcfs/1usa7mm5qnbri6tncl8nt3635v76cjon9j9k0vg1\"},\"mentions\":null,\"hidden\":false,\"edited\":false,\"bot_comment\":false,\"self_assigned\":false,\"slack_fields\":null}]],\"dependentCallBackParams\":[],\"escalations\":[],\"id\":1011175,\"unique_id\":\"cm6epdx5h004007qb9bh1ej3e\",\"conversation_id\":\"caa5018f-1295-43da-b315-ce827106a0e5\",\"call_id\":[\"f0330293-1a50-4746-ace2-cffe9822d1d4\"],\"subject\":\"90024852-853 | Tekion Pay activation is not through | P0\",\"search_text\":\"1011175|90024852-853 | Tekion Pay activation is not through | P0\",\"description\":\"\",\"submitter\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"requester\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"tenant\":\"\",\"cc\":[\"<a href=\"mailto:kumaranc@tekion.com\">kumaranc@tekion.com</a>\",\"<a href=\"mailto:numasankar@tekion.com\">numasankar@tekion.com</a>\",\"<a href=\"mailto:esaravanan@tekion.com\">esaravanan@tekion.com</a>\"],\"watchers\":[],\"assignee\":\"\",\"user_group\":\"ckwbm8h6a0000978941namqrb\",\"status\":\"new\",\"brand_id\":\"ckknsr0nw0000tyd2nd9njcfs\",\"form_id\":\"ckojt5eao005b0875x7aq4erj\",\"ticket_user_type\":\"internal\",\"created_at\":1737961470485,\"updated_at\":1737962086735,\"updated_by\":\"<a href=\"mailto:tapnotification-dev@tekion.com\">tapnotification-dev@tekion.com</a>\",\"type\":\"incident\",\"priority\":\"normal\",\"problem_ticket\":0,\"incident_tickets\":[],\"plugins\":{\"jira\":{},\"crm\":{\"dealer\":{},\"impacted_dealers\":[]},\"requester\":{},\"feature_id\":[],\"kb_articles\":[]},\"tasks\":[],\"system_fields\":null,\"custom_fields\":[{\"id\":\"cli55bbny01oa07pra115w5ce\",\"value\":\"\"},{\"id\":\"ckqotd2bt01gf35d271ctni4k\",\"value\":\"\"},{\"id\":\"ckojyh0g0004h082370x8djkz\",\"value\":\"\"},{\"id\":\"ckojt0w9c004y0875lf0angdz\",\"value\":\"\"},{\"id\":\"clkgpvc3g0jzy07o7y5qrnqd9\",\"value\":\"\"},{\"id\":\"ckojt7lrs005c0875526sjb8i\",\"value\":\"\"},{\"id\":\"clbq8bftj0dh708mehnh0r11y\",\"value\":\"\"},{\"id\":\"clofusz7y06ch06nzrz7q9h9c\",\"value\":\"\"},{\"id\":\"clcubb20i071d08qrdmde3pxy\",\"value\":\"\"},{\"id\":\"clbsca869008o08laglk9mnjq\",\"value\":\"\"},{\"id\":\"cm04v7pbr002q07ogxs8xzul4\",\"value\":\"\"},{\"id\":\"cm0usb9n300cs07mkeg1uo2kg\",\"value\":\"\"},{\"id\":\"ckjfymwqv06m9ylv2vo96prgx\",\"value\":\"\"}],\"source\":\"email\",\"tags\":[],\"custom_tags\":[],\"csat\":null,\"csat_send_date\":0,\"email_reference_id\":\"<a href=\"mailto:cm6epdx5h004107qbo4iv1iwq@tekion.com\">cm6epdx5h004107qbo4iv1iwq@tekion.com</a>\",\"metric\":{\"status_updated_at\":1737961470485,\"status_split\":{},\"reopen_count\":0,\"comments_count\":1,\"last_comment_at\":1737961470511,\"first_solved_at\":0,\"last_solved_at\":0,\"ticket_time\":0,\"resolution_time\":0,\"resolved_by\":\"\",\"chat_missed\":false,\"call_missed\":false,\"total_calls_missed\":0,\"chat_messages_count\":0,\"chat_total_time\":0,\"call_total_time\":0,\"call_started_at\":0,\"call_started_by\":\"\",\"first_chat_picked_at\":0,\"first_chat_picked_by\":\"\",\"chat_live_assist_count\":0,\"chat_co_browser_end_user_requested\":false,\"first_response_time\":0,\"average_message_response_time\":0,\"first_public_response_time\":0,\"last_public_response_time\":0,\"public_comments_count\":1,\"private_comments_count\":0,\"chat_bidirectional\":false,\"first_chat_assignee\":\"\",\"current_chat_assignee\":\"\",\"chat_auto_assigned\":false,\"time_taken_to_define_first_sla\":0,\"total_sla_count\":1,\"frt_met_count\":0,\"eta_met_count\":0,\"resolution_met_count\":0,\"resolution_met\":\"\",\"total_sla_pause_duration\":0,\"total_sla_resolution_time\":0},\"spam\":false,\"unread_comment_count\":1,\"last_comment_unread_at\":1737961470523,\"last_comment_acknowledged_at\":0,\"last_comment_acknowledged_by\":\"\",\"co_browser_url\":\"\",\"co_browser_live_url\":\"\",\"escalation\":{\"total_escalated_count\":0,\"customer_escalation_count\":0,\"system_escalation_count\":0,\"psm_escalation_count\":0,\"active_customer_escalation_count\":0,\"active_system_escalation_count\":0,\"active_psm_escalation_count\":0,\"psm_escalation_status\":\"\",\"psm_escalation_triggered_at\":0,\"psm_escalation_triggered_by\":\"\",\"customer_escalation_status\":\"\"},\"resolution\":{\"kb_resolution_type\":\"\",\"kb_resolution_submitted\":false,\"kb_submitted_by\":\"\",\"kb_service_now_api_status\":\"\",\"kb_article_availability\":\"\",\"kb_article_status\":\"\",\"tara_response_for_first_user_query\":\"\",\"kb_articles\":null},\"from_mail_id\":\"<a href=\"mailto:tapsupport@tekioncloud.xyz\">tapsupport@tekioncloud.xyz</a>\",\"brand_history\":null,\"merged_ticket_ids\":null,\"request_to_close\":\"request_to_close_no\",\"is_lus_linked\":false,\"chat_status\":\"\",\"call_status\":false,\"is_chat_v2\":false,\"no_com_count\":0,\"current_no_com_count\":0,\"is_l2_raised\":false,\"l1_ticket_id\":0,\"key\":\"\",\"sla\":{\"id\":\"cm6epdx5i004207qbkoegpulc\",\"sla_config_id\":\"cm3pje91g00dq07ntpuj3o2y1\",\"status\":\"in_progress\",\"sla_started_at\":1737961470485,\"eta_sla_met\":\"sla_not_met\",\"eta_sla_time\":0,\"eta_sla_breach_in\":1737961770485,\"eta_updated_at\":0,\"resolution_sla_met\":\"sla_NA\",\"resolution_sla_time\":0,\"resolution_sla_breach_in\":1737962070485,\"resolved_at\":0,\"sla_paused_at\":0,\"sla_paused_time\":0,\"elapsed_time\":0,\"planned_eta_sla_time\":300000,\"planned_resolution_time\":600000,\"planned_frt\":300000,\"first_response_sla_met\":\"sla_not_met\",\"first_response_sla_time\":0,\"first_response_sla_breach_in\":1737961770485,\"first_response_updated_at\":0,\"frt_breach_pre_notify_at\":1737961695485,\"eta_breach_pre_notify_at\":1737961695485,\"resolution_pre_notify_at\":1737961920485,\"reset_count\":0,\"notification_status\":{\"eta_yet_to_breach_notification_sent\":\"notification_not_sent\",\"eta_breached_notification_sent\":\"notification_triggered\",\"frt_yet_to_breach_notification_sent\":\"notification_triggered\",\"frt_breached_notification_sent\":\"notification_triggered\",\"resolution_yet_to_breach_notification_sent\":\"notification_triggered\",\"resolution_breached_notification_sent\":\"notification_not_sent\"}},\"due_date\":0,\"sla_priority\":\"p0\",\"sla_enabled\":true,\"lastRefreshedAt\":1737963837529,\"isPlayMode\":false}}'</p>\n","urlObject":{"protocol":"https","path":["tapapi","helpdesk","v1","public","tickets","clone"],"host":["stage-nca-tap-api","tekioncloud","xyz"],"query":[],"variable":[]}},"response":[],"_postman_id":"001a37f1-5436-4aa4-8116-1ee52bf4dc1e"},{"name":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/1011179","id":"650af0e1-b78b-46f3-be48-5fe2d0e95649","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-language","value":"en-GB,en-US;q=0.9,en;q=0.8,hi;q=0.7"},{"key":"email","value":"navishk@tekion.com"},{"key":"locale","value":"en_US"},{"key":"origin","value":"https://stagetap.tekioncloud.xyz"},{"key":"priority","value":"u=1, i"},{"key":"referer","value":"https://stagetap.tekioncloud.xyz/"},{"key":"sec-ch-ua","value":"\"Google Chrome\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\""},{"key":"sec-ch-ua-mobile","value":"?0"},{"key":"sec-ch-ua-platform","value":"\"macOS\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"same-site"},{"key":"tap-duo-api-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhcGk6Ly90YXBfcHVibGljIiwiZXhwIjoxNzM3OTg0NTQwLCJmaXJzdE5hbWUiOiJOYXZpc2giLCJpYXQiOjE3Mzc5NTU3NDAsImlzcyI6InRhcF9kdW9fc2FtbF9hdXRoIiwibGFzdE5hbWUiOiJLdW1hciIsInNjb3BlIjoiYWNjZXNzIiwic3ViIjoibmF2aXNoa0B0ZWtpb24uY29tIn0.ywhx4kPLAh3f9g-ykuryYYQM_l0R7raaYl3MDbb18CE"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36"}],"url":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/1011179","description":"<p>Generated from cURL: curl '<a href=\"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/1011179\">https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/1011179</a>' <br />  -H 'accept: application/json, text/plain, <em>/</em>' <br />  -H 'accept-language: en-GB,en-US;q=0.9,en;q=0.8,hi;q=0.7' <br />  -H 'email: <a href=\"mailto:navishk@tekion.com\">navishk@tekion.com</a>' <br />  -H 'locale: en_US' <br />  -H 'origin: <a href=\"https://stagetap.tekioncloud.xyz\">https://stagetap.tekioncloud.xyz</a>' <br />  -H 'priority: u=1, i' <br />  -H 'referer: <a href=\"https://stagetap.tekioncloud.xyz/\">https://stagetap.tekioncloud.xyz/</a>' <br />  -H 'sec-ch-ua: \"Google Chrome\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"' <br />  -H 'sec-ch-ua-mobile: ?0' <br />  -H 'sec-ch-ua-platform: \"macOS\"' <br />  -H 'sec-fetch-dest: empty' <br />  -H 'sec-fetch-mode: cors' <br />  -H 'sec-fetch-site: same-site' <br />  -H 'tap-duo-api-token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhcGk6Ly90YXBfcHVibGljIiwiZXhwIjoxNzM3OTg0NTQwLCJmaXJzdE5hbWUiOiJOYXZpc2giLCJpYXQiOjE3Mzc5NTU3NDAsImlzcyI6InRhcF9kdW9fc2FtbF9hdXRoIiwibGFzdE5hbWUiOiJLdW1hciIsInNjb3BlIjoiYWNjZXNzIiwic3ViIjoibmF2aXNoa0B0ZWtpb24uY29tIn0.ywhx4kPLAh3f9g-ykuryYYQM_l0R7raaYl3MDbb18CE' <br />  -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36'</p>\n","urlObject":{"protocol":"https","path":["tapapi","helpdesk","v1","public","tickets","1011179"],"host":["stage-nca-tap-api","tekioncloud","xyz"],"query":[],"variable":[]}},"response":[],"_postman_id":"650af0e1-b78b-46f3-be48-5fe2d0e95649"},{"name":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/1011179/comments","id":"a45f6b3b-bb89-428c-908a-c388af3ef1f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-language","value":"en-GB,en-US;q=0.9,en;q=0.8,hi;q=0.7"},{"key":"email","value":"navishk@tekion.com"},{"key":"locale","value":"en_US"},{"key":"origin","value":"https://stagetap.tekioncloud.xyz"},{"key":"priority","value":"u=1, i"},{"key":"referer","value":"https://stagetap.tekioncloud.xyz/"},{"key":"sec-ch-ua","value":"\"Google Chrome\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\""},{"key":"sec-ch-ua-mobile","value":"?0"},{"key":"sec-ch-ua-platform","value":"\"macOS\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"same-site"},{"key":"tap-duo-api-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhcGk6Ly90YXBfcHVibGljIiwiZXhwIjoxNzM3OTg0NTQwLCJmaXJzdE5hbWUiOiJOYXZpc2giLCJpYXQiOjE3Mzc5NTU3NDAsImlzcyI6InRhcF9kdW9fc2FtbF9hdXRoIiwibGFzdE5hbWUiOiJLdW1hciIsInNjb3BlIjoiYWNjZXNzIiwic3ViIjoibmF2aXNoa0B0ZWtpb24uY29tIn0.ywhx4kPLAh3f9g-ykuryYYQM_l0R7raaYl3MDbb18CE"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36"}],"url":"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/1011179/comments","description":"<p>Generated from cURL: curl '<a href=\"https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/1011179/comments\">https://stage-nca-tap-api.tekioncloud.xyz/tapapi/helpdesk/v1/public/tickets/1011179/comments</a>' <br />  -H 'accept: application/json, text/plain, <em>/</em>' <br />  -H 'accept-language: en-GB,en-US;q=0.9,en;q=0.8,hi;q=0.7' <br />  -H 'email: <a href=\"mailto:navishk@tekion.com\">navishk@tekion.com</a>' <br />  -H 'locale: en_US' <br />  -H 'origin: <a href=\"https://stagetap.tekioncloud.xyz\">https://stagetap.tekioncloud.xyz</a>' <br />  -H 'priority: u=1, i' <br />  -H 'referer: <a href=\"https://stagetap.tekioncloud.xyz/\">https://stagetap.tekioncloud.xyz/</a>' <br />  -H 'sec-ch-ua: \"Google Chrome\";v=\"131\", \"Chromium\";v=\"131\", \"Not_A Brand\";v=\"24\"' <br />  -H 'sec-ch-ua-mobile: ?0' <br />  -H 'sec-ch-ua-platform: \"macOS\"' <br />  -H 'sec-fetch-dest: empty' <br />  -H 'sec-fetch-mode: cors' <br />  -H 'sec-fetch-site: same-site' <br />  -H 'tap-duo-api-token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhcGk6Ly90YXBfcHVibGljIiwiZXhwIjoxNzM3OTg0NTQwLCJmaXJzdE5hbWUiOiJOYXZpc2giLCJpYXQiOjE3Mzc5NTU3NDAsImlzcyI6InRhcF9kdW9fc2FtbF9hdXRoIiwibGFzdE5hbWUiOiJLdW1hciIsInNjb3BlIjoiYWNjZXNzIiwic3ViIjoibmF2aXNoa0B0ZWtpb24uY29tIn0.ywhx4kPLAh3f9g-ykuryYYQM_l0R7raaYl3MDbb18CE' <br />  -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36'</p>\n","urlObject":{"protocol":"https","path":["tapapi","helpdesk","v1","public","tickets","1011179","comments"],"host":["stage-nca-tap-api","tekioncloud","xyz"],"query":[],"variable":[]}},"response":[],"_postman_id":"a45f6b3b-bb89-428c-908a-c388af3ef1f6"}]}