{"info":{"_postman_id":"c23c7b9b-8924-4856-ad2a-c37da8841af0","name":"Pulse API","description":"<html><head></head><body><p>The Pulse API allows you to programmatically access the data stored in your Pulse account with ease.</p>\n<h1 id=\"overview\">Overview</h1>\n\n<ol>\n<li><p>You just need a valid API Key to send requests to the API endpoints. You can get your key from the Admin &gt; Setup &gt; API section.</p>\n</li>\n\n<li><p>The response to every request is sent in <a href=\"https://en.wikipedia.org/wiki/JSON\">JSON format</a>. If the API request results in an error, it is represented by an <code>\"error\": {}</code> key in the JSON response.</p>\n</li>\n<li><p>The request method (verb) determines the nature of action that you intend to perform. A request made by using the <code>GET</code> method implies that you want to fetch something. Similarly, a request made by using the <code>POST</code> method implies you want to save something new to Pulse.</p>\n</li>\n<li><p>The API calls will respond with appropriate <a href=\"https://en.wikipedia.org/wiki/List_of_HTTP_status_codes\">HTTP status codes</a> for all requests. A <code>200 OK</code> indicates that the response was successfully sent, while <code>4XX</code> or <code>5XX</code> response codes indicate an error from the requesting client or our API servers respectively.</p>\n</li>\n</ol>\n<h1 id=\"authentication\">Authentication</h1>\n<hr>\n<h2 id=\"APIKeyAuthentication\">API Key-based Authentication</h2>\n<br>\nAn API Key is required to be sent as part of every request to the Pulse API. All the APIs use API Key to authenticate the requests and identify your account.\n<br>\n<br>\n<blockquote>\nIf you do not have an API Key, you can easily generate one by going to Admin &gt; Setup &gt; API section. \n</blockquote>\n\n<p>To hit Pulse APIs, you must pass the <b>api_key</b> (that you obtained from the Admin Panel) as <b>Authorization</b> header in the following format:\n<br>\n<br></p>\n<blockquote>\nApi-key {{api_key}} \n</blockquote>\n\n<p>An API Key tells our API server that the request it received came from you. Everything that you have access to in Pulse is accessible with an API Key that is generated by you.</p>\n<p>API keys should be kept confidential and only stored on your own servers. Your account’s API key can perform any API request to Pulse without restriction. Its is suggested to rotate API Keys at regular interval.</p>\n<h2 id=\"TokenAuthentication\">Token-based Authentication</h2>\n<br>\nWe currently don't support Token-based Authentication. Please check back later. \n<br>\n<br>\n\n<h1 id=\"support\">Support</h1>\n<hr>\n<br>\nIf you require any help related to accessing the Pulse API, reach out to us at <a href=\"mailto:support@pulsepro.ai\">support@pulsepro.ai</a>.\n<br>\n<br>\nIf you receive a 503 response from our servers, it implies that we have hit an unexpected spike in API access traffic and would usually be operational within the next 5 minutes. If the outage persists or if you receive any other form of 5XX error, do let us know.\n\n<h1 id=\"rate-limits\">Rate Limits</h1>\nPulse uses Rate Limits to ensure faster API response times and to maintain overall stability. If we receive a large quantity of API call requests within a small period, those requests may be throttled. <br><br>\n\n<p>If the Rate Limit feature is enabled for your organization, here is a sample of the response headers that are displayed when only the organization (account)-level limit is defined:</p>\n<h2 id=\"rate-limit-response-headers\">Rate Limit Response Headers</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Organization-RateLimit-Limit</td>\n<td>60;w=60;b=60</td>\n</tr>\n<tr>\n<td>RateLimit-Remaining</td>\n<td>48</td>\n</tr>\n<tr>\n<td>RateLimit-Reset</td>\n<td>50</td>\n</tr>\n</tbody>\n</table>\n</div><p>The interpretation of the Rate Limit response headers is as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response Header</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Organization-RateLimit-Limit</td>\n<td>60;w=60;b=60<br> This indicates that the refill rate is <b>60 calls per 60 seconds</b> (where, <b>w=60 sec</b>). After every 1 minute, 60 calls will be added to the bucket.<br> <br><b>b=60</b> indicates that the maximum number of calls that can get accumulated over time is 60. In other words, even if you do not make any API call for 2 hours, a maximum of 60 calls will get accumulated. No more call accumulation can occur beyond this value, because 60 is the maximum capacity of the bucket.</td>\n</tr>\n<tr>\n<td>RateLimit-Remaining</td>\n<td>The value of this response header indicates the number of remaining API calls that you can make within that particular 48 seconds. This value continuously gets updated after every API call you make and is refreshed after the end of every 48 seconds.</td>\n</tr>\n<tr>\n<td>RateLimit-Reset</td>\n<td>The value of this response header indicates the time in seconds for the next refill of API calls. If the value is 50, it means that the rate limit will be refreshed to the maximum value of 60 after 50 seconds.</td>\n</tr>\n</tbody>\n</table>\n</div><p>For a detailed explanation on the use cases of different request policies and the interpretation of the respective values of the Rate Limit Response Headers, refer to <a href=\"http://help.Pulse.com/en/articles/4774922-rate-limit-response-headers\">this Help article</a>.</p>\n<blockquote>\n<p><b>The standard applicable rate limit is 60 calls per minute.</b> To opt for a higher-volume API rate limit, reach out to your Pulse account manager and the relevant team will share the available add-on options with you.</p>\n</blockquote>\n<h4 id=\"strategies-to-effectively-manage-rate-limits\">Strategies to Effectively Manage Rate Limits</h4>\n<p>To avoid reaching your rate limits, you must make only the essential requests that you require.\nHere are a few strategies that can help you to reduce the number of requests and avoid getting rate limit exception responses.<br></p>\n<ul>\n<li><b>Eliminate unnecessary API calls</b>.<br>\nAre some of your requests receiving data items that are not used in your application? You can optimize your code to only fetch the data that your app requires.<br></li>\n<li><b>Cache frequently used data</b>.<br>\nYou can cache data on the server or on the client by using DOM storage. You can also save relatively static information in a database or serialize it in a file.<br>\nFor example, you can cache the list of services, therapists performing the services, and their pricing details for a service booking workflow.<br></li>\n<li><b>Use Retry Logic</b>.<br>\nYou can implement Retry logic after a certain amount of time if you receive an API rate limit exception as a response.<br>\nFor instance, Pulse recommends that you verify the API responses after each API call you make. If you get an API rate limit exception, you must implement the Sleep option for some time and then try again.<br>\nYou should include code that catches errors. If you ignore such API rate limit exception errors and continue to make requests, your app will not be able to recover in a graceful manner.<br>\nYou can use the Retry-After header if you receive a 429 response for the back-off time. Alternatively, you can use metadata (included with all API responses) for your app’s API usage to dynamically control the app’s behavior.<br></li>\n<li><b>Queue API requests.</b><br>\nTo queue your API requests for effectively managing API rate limits, use any one of several cloud applications that are available in the market. Here are a few such cloud applications that you can try out: \n <a href=\"https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html\">Amazon Simple Queue Service</a>, \n <a href=\"http://activemq.apache.org/restful-queue.html\">Apache ActiveMQ</a>, and <a href=\"https://developer.rackspace.com/docs/cloud-queues/v1/\">Rackspace Cloud Queues API 1.0</a>.</li>\n</ul>\n<h1 id=\"api-reference\">API Reference</h1>\nThis section explains in detail about the various API categories and their respective API endpoints in Pulse.</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Support","slug":"support"},{"content":"Rate Limits","slug":"rate-limits"},{"content":"API Reference","slug":"api-reference"}],"owner":"10216348","collectionId":"c23c7b9b-8924-4856-ad2a-c37da8841af0","publishedId":"Tz5wVDgm","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-03-23T08:18:04.000Z"},"item":[{"name":"Locations","item":[{"name":"List all Locations.","id":"958b0fc7-0e83-4af3-978c-cea8e6689a14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>Access token generated from the token API.</p>\n","key":"Authorization","type":"text","value":"Api-key {{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","description":"<p>An offset for filtering on locations.</p>\n","type":"text"},{"key":"limit","value":"{{limit}}","description":"<p>Total number of locations to be returned in response.</p>\n","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/locations/","description":"<p>This API helps you to retrieve the list of active locations of a customer.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>offset</td>\n<td>string</td>\n<td><code>Optonal</code><br /> An offset for filtering on locations.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td><code>Optonal</code><br /> Total number of locations to be returned in response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>guid</td>\n<td>Unique identifier of the location.</td>\n</tr>\n<tr>\n<td>location_code</td>\n<td>string</td>\n<td>Unique code given to the location.</td>\n</tr>\n<tr>\n<td>location_name</td>\n<td>string</td>\n<td>Name of the location.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>Details of the country in which the location is located.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>string</td>\n<td>Details of the location's state.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>double</td>\n<td>Geometric latitude of the location.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>double</td>\n<td>Geometric longitude of the location.</td>\n</tr>\n<tr>\n<td>address_field1</td>\n<td>string</td>\n<td>Primary address of the location.</td>\n</tr>\n<tr>\n<td>address_field2</td>\n<td>string</td>\n<td>Secondary address of the location.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>City name of the location.</td>\n</tr>\n<tr>\n<td>pincode</td>\n<td>string</td>\n<td>Zip code of the location.</td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>integer</td>\n<td>Mobile number of the location.</td>\n</tr>\n<tr>\n<td>map_link</td>\n<td>string</td>\n<td>Map link of the location.</td>\n</tr>\n<tr>\n<td>to_email</td>\n<td>string</td>\n<td>To email of the location.</td>\n</tr>\n<tr>\n<td>cc_email</td>\n<td>string</td>\n<td>Cc email of the location.</td>\n</tr>\n<tr>\n<td>location_number</td>\n<td>string</td>\n<td>Location Number of the location.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","locations",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"90a61a80-5d54-4c0a-9272-49fb9d633616","name":"List all Locations.","originalRequest":{"method":"GET","header":[{"description":"Access token generated from the token API.","key":"Authorization","type":"text","value":"Api-key {{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","type":"text"},{"key":"limit","value":"{{limit}}","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/locations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 07:42:27 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"POST, OPTIONS, GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"2116"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"locations\": [\n        {\n            \"id\": 5529,\n            \"location_name\": \"Demo location 12\",\n            \"address_field1\": \"Times Square\",\n            \"address_field2\": \"Manhattan\",\n            \"city\": \"Manhattan\",\n            \"state\": \"New York\",\n            \"pincode\": \"10036\",\n            \"mobile\": \"8447588904\",\n            \"customer\": 122,\n            \"latitude\": 0,\n            \"longitude\": 0,\n            \"map_link\": \"https://www.google.com/maps/search/?api=1&query=0,0\",\n            \"location_number\": \"123\",\n            \"location_code\": \"FFSPU055\",\n            \"to_email\": \"demo.user@gmail.com\",\n            \"cc_email\": \"demo.user@gmail.com\",\n            \"country\": \"United States\"\n        },\n        {\n            \"id\": 5528,\n            \"location_name\": \"Demo location 11\",\n            \"address_field1\": \"Times Square\",\n            \"address_field2\": \"Manhattan\",\n            \"city\": \"Manhattan\",\n            \"state\": \"New York\",\n            \"pincode\": \"10036\",\n            \"mobile\": \"8447588904\",\n            \"customer\": 122,\n            \"latitude\": 0,\n            \"longitude\": 0,\n            \"map_link\": \"https://www.google.com/maps/search/?api=1&query=0,0\",\n            \"location_number\": \"123\",\n            \"location_code\": \"FFSPU055\",\n            \"to_email\": \"demo.user@gmail.com\",\n            \"cc_email\": \"demo.user@gmail.com\",\n            \"country\": \"United States\"\n        },\n        {\n            \"id\": 5532,\n            \"location_name\": \"Demo location 5\",\n            \"address_field1\": \"Times Square\",\n            \"address_field2\": \"Manhattan\",\n            \"city\": \"Manhattan\",\n            \"state\": \"New York\",\n            \"pincode\": \"10036\",\n            \"mobile\": \"8447588904\",\n            \"customer\": 122,\n            \"latitude\": 0,\n            \"longitude\": 0,\n            \"map_link\": \"https://www.google.com/maps/search/?api=1&query=0,0\",\n            \"location_number\": \"123\",\n            \"location_code\": \"FFSPU055\",\n            \"to_email\": \"demo.user@gmail.com\",\n            \"cc_email\": \"demo.user@gmail.com\",\n            \"country\": \"United States\"\n        },\n        {\n            \"id\": 5531,\n            \"location_name\": \"Demo location 4\",\n            \"address_field1\": \"Times Square\",\n            \"address_field2\": \"Manhattan\",\n            \"city\": \"Manhattan\",\n            \"state\": \"New York\",\n            \"pincode\": \"10036\",\n            \"mobile\": \"8447588904\",\n            \"customer\": 122,\n            \"latitude\": 0,\n            \"longitude\": 0,\n            \"map_link\": \"https://www.google.com/maps/search/?api=1&query=0,0\",\n            \"location_number\": \"123\",\n            \"location_code\": \"FFSPU055\",\n            \"to_email\": \"demo.user@gmail.com\",\n            \"cc_email\": \"demo.user@gmail.com\",\n            \"country\": \"United States\"\n        },\n        {\n            \"id\": 5530,\n            \"location_name\": \"Demo location 3\",\n            \"address_field1\": \"Times Square\",\n            \"address_field2\": \"Manhattan\",\n            \"city\": \"Manhattan\",\n            \"state\": \"New York\",\n            \"pincode\": \"10036\",\n            \"mobile\": \"8447588904\",\n            \"customer\": 122,\n            \"latitude\": 0,\n            \"longitude\": 0,\n            \"map_link\": \"https://www.google.com/maps/search/?api=1&query=0,0\",\n            \"location_number\": \"123\",\n            \"location_code\": \"FFSPU055\",\n            \"to_email\": \"demo.user@gmail.com\",\n            \"cc_email\": \"demo.user@gmail.com\",\n            \"country\": \"United States\"\n        }\n    ],\n    \"total_count\": 5\n}"}],"_postman_id":"958b0fc7-0e83-4af3-978c-cea8e6689a14"},{"name":"Retrieve a location","id":"399d5d08-4398-46b9-a5f2-04e50b078d6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>Access token generated from the token API.</p>\n","key":"Authorization","type":"text","value":"Api-key {{api_key}}"}],"url":"https://api.pulsepro.ai/v1/customer/locations/{{location_id}}","description":"<p>This API helps you to retrieve the details of a location.<br /></p>\n<p>You must specify the unique identifier of the location as <code>location_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>guid</td>\n<td>Unique identifier of the location.</td>\n</tr>\n<tr>\n<td>location_code</td>\n<td>string</td>\n<td>Unique code given to the location.</td>\n</tr>\n<tr>\n<td>location_name</td>\n<td>string</td>\n<td>Name of the location.</td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>Details of the country in which the location is located.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>string</td>\n<td>Details of the location's state.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>double</td>\n<td>Geometric latitude of the location.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>double</td>\n<td>Geometric longitude of the location.</td>\n</tr>\n<tr>\n<td>address_field1</td>\n<td>string</td>\n<td>Primary address of the location.</td>\n</tr>\n<tr>\n<td>address_field2</td>\n<td>string</td>\n<td>Secondary address of the location.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>City name of the location.</td>\n</tr>\n<tr>\n<td>pincode</td>\n<td>string</td>\n<td>Zip code of the location.</td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>integer</td>\n<td>Mobile number of the location.</td>\n</tr>\n<tr>\n<td>map_link</td>\n<td>string</td>\n<td>Map link of the location.</td>\n</tr>\n<tr>\n<td>to_email</td>\n<td>string</td>\n<td>To email of the location.</td>\n</tr>\n<tr>\n<td>cc_email</td>\n<td>string</td>\n<td>Cc email of the location.</td>\n</tr>\n<tr>\n<td>location_number</td>\n<td>string</td>\n<td>Location Number of the location.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","locations","{{location_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"92064746-edcd-4b1f-95a3-ebe46a29a8b1","name":"Retrieve a location","originalRequest":{"method":"GET","header":[{"description":"Access token generated from the token API.","key":"Authorization","type":"text","value":"Api-key {{api_key}}"}],"url":"https://api.pulsepro.ai/v1/customer/locations/{{location_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 10:47:23 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"462"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 5529,\n    \"location_name\": \"Demo location 12\",\n    \"address_field1\": \"Times Square\",\n    \"address_field2\": \"Manhattan\",\n    \"city\": \"Manhattan\",\n    \"state\": \"New York\",\n    \"pincode\": \"10036\",\n    \"mobile\": \"8447588904\",\n    \"customer\": 122,\n    \"latitude\": 0,\n    \"longitude\": 0,\n    \"map_link\": \"https://www.google.com/maps/search/?api=1&query=0,0\",\n    \"location_number\": \"123\",\n    \"location_code\": \"FFSPU055\",\n    \"to_email\": \"demo.user@gmail.com\",\n    \"cc_email\": \"demo.user@gmail.com\",\n    \"country\": \"United States\"\n}"}],"_postman_id":"399d5d08-4398-46b9-a5f2-04e50b078d6c"},{"name":"Update a location","id":"8414b995-cece-4248-aedf-430783dec33e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"location_name","value":"{{location_name}}","description":"<p>Name of the location.</p>\n","type":"text"},{"key":"address_field1","value":"{{address_field1}}","description":"<p>Primary address of the location.</p>\n","type":"text"},{"key":"address_field2","value":"{{address_field2}}","description":"<p>Secondary address of the location.</p>\n","type":"text"},{"key":"city","value":"{{city}}","description":"<p>City name of the location.</p>\n","type":"text"},{"key":"state","value":"{{state}}","description":"<p>Details of the location's state.</p>\n","type":"text"},{"key":"country","value":"{{country}}","description":"<p>Details of the country in which the location is located.</p>\n","type":"text"},{"key":"pincode","value":"{{pincode}}","description":"<p>Zip code of the location.</p>\n","type":"text"},{"key":"lat","value":"{{latitude}}","description":"<p>Geometric latitude of the location.</p>\n","type":"text"},{"key":"lng","value":"{{longitude}}","description":"<p>Geometric longitude of the location.</p>\n","type":"text"},{"key":"location_number","value":"{{location_number}}","description":"<p>Unique identification number given to the location.</p>\n","type":"text","disabled":true},{"key":"location_code","value":"{{location_code}}","description":"<p>Unique code given to the location.</p>\n","type":"text","disabled":true},{"key":"to_email","value":"{{to_email}}","description":"<p>To email of the location.</p>\n","type":"text"},{"key":"cc_email","value":"{{cc_email}}","description":"<p>Cc email of the location.</p>\n","type":"text"},{"key":"mobile","value":"{{mobile}}","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/locations/{{location_id}}","description":"<p>This API helps you to update the details of a location.<br /></p>\n<p>You must specify the unique identifier of the location as <code>location_id</code>.</p>\n","urlObject":{"path":["v1","customer","locations","{{location_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"8414b995-cece-4248-aedf-430783dec33e"},{"name":"Delete a location.","id":"14d83ec8-3ba8-4dc8-bc5b-b9e590467d28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/delete_location/{{location_id}}","description":"<p>This API helps you to delete a location.<br /></p>\n<p>You must specify the unique identifier of the location as <code>location_id</code>.</p>\n","urlObject":{"path":["v1","customer","delete_location","{{location_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"16763bab-bd56-4828-8c15-410a047453f5","name":"Delete a location.","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"url":"https://api.pulsepro.ai/v1/customer/delete_location/{{location_id}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"14d83ec8-3ba8-4dc8-bc5b-b9e590467d28"}],"id":"59bc6369-3586-4f18-9a30-ae4bd9667805","_postman_id":"59bc6369-3586-4f18-9a30-ae4bd9667805","description":""},{"name":"Templates","item":[{"name":"Retrieve a template","id":"6977e592-26e9-4317-b6d0-7df001957f34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/templates/{{template_id}}","description":"<p>This API helps you to retrieve the details of a template.<br /></p>\n<p>You must specify the unique identifier of the template as <code>template_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>meta</td>\n<td>JSon</td>\n<td>Json of the template.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","templates","{{template_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"a809976c-3eb5-409c-a8cf-e73d5371fae1","name":"Retrieve a template","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"url":"https://api.pulsepro.ai/v1/customer/templates/{{template_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 19 Mar 2021 10:20:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"15439"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"}],"cookie":[],"responseTime":null,"body":"{\n    \"meta\": {\n        \"form_sections\": [\n            {\n                \"section\": {\n                    \"id\": 1634,\n                    \"name\": \"Approaches\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26552,\n                            \"hint\": \"\",\n                            \"name\": \"Are there any loose or missing fillings?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26553,\n                            \"hint\": \"\",\n                            \"name\": \"Are any signs damaged?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26554,\n                            \"hint\": \"\",\n                            \"name\": \"Are all signs and delineations clean and easily read?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1635,\n                    \"name\": \"Guardrail\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26555,\n                            \"hint\": \"\",\n                            \"name\": \"Is the guardrail at the correct height and alignment?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26556,\n                            \"hint\": \"\",\n                            \"name\": \"Are any of the fixings loose or missing?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26557,\n                            \"hint\": \"\",\n                            \"name\": \"Is impact damage present?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26558,\n                            \"hint\": \"\",\n                            \"name\": \"Is any material deteriorated (steel corrosion, timber decay etc)?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26559,\n                            \"hint\": \"\",\n                            \"name\": \"Are any spacer blocks damaged or missing?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1636,\n                    \"name\": \"Road Drainage\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26560,\n                            \"hint\": \"\",\n                            \"name\": \"Is debris/vegetation growth present inside drains, channels, inlet/outlet pits and sumps which may obstruct free drainage?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26561,\n                            \"hint\": \"\",\n                            \"name\": \"Are drainage pits/structures leaking?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26562,\n                            \"hint\": \"\",\n                            \"name\": \"Is there any scouring or erosion present at drainage outlets near abutments, foundations, culvet outlets and run off?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1637,\n                    \"name\": \"Wearing Surface\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26563,\n                            \"hint\": \"\",\n                            \"name\": \"Has any settlement occurred in the surface materail?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26564,\n                            \"hint\": \"\",\n                            \"name\": \"Are there any localised  depressions in the surface area?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26565,\n                            \"hint\": \"\",\n                            \"name\": \"Are there any pot holes present?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26566,\n                            \"hint\": \"\",\n                            \"name\": \"Has the surface cracked?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1638,\n                    \"name\": \"Embankments \",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26567,\n                            \"hint\": \"\",\n                            \"name\": \"Are any embankment areas effected by erosion?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26568,\n                            \"hint\": \"\",\n                            \"name\": \"Is scouring present in the embankment?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26569,\n                            \"hint\": \"\",\n                            \"name\": \"Is the embankment slope stable and free from loose material?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1639,\n                    \"name\": \"Vegetation\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26570,\n                            \"hint\": \"\",\n                            \"name\": \"Are all bushes or trees within 2.0 m of abutments and wingwalls?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26571,\n                            \"hint\": \"\",\n                            \"name\": \"Are any bushes or trees within waterway channel?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26572,\n                            \"hint\": \"\",\n                            \"name\": \"Does vegetation affect sight distance onto/across structure?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1640,\n                    \"name\": \"Waterway\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26573,\n                            \"hint\": \"\",\n                            \"name\": \"Has debris accumulated against or adjacent to the waterway?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26574,\n                            \"hint\": \"\",\n                            \"name\": \"Is there any localised scouring adjacent to/beneath the waterway?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26575,\n                            \"hint\": \"\",\n                            \"name\": \"Is there any lateral bank erosion adjacent to/beneath the waterway?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26576,\n                            \"hint\": \"\",\n                            \"name\": \"Is the channel degraded?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1641,\n                    \"name\": \"Appearance\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26577,\n                            \"hint\": \"\",\n                            \"name\": \"Is the whole are free from graffiti or other unauthorised signage?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1642,\n                    \"name\": \"Kerbs (Surface water channels)\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Kerb\",\n                                \"label\": \"Kerb\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Concrete dished\",\n                                \"label\": \"Concrete dished\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Sealed\",\n                                \"label\": \"Sealed\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Asphalt\",\n                                \"label\": \"Asphalt\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Half pipe\",\n                                \"label\": \"Half pipe\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26578,\n                            \"hint\": \"\",\n                            \"name\": \"Specify the type of kerb?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26579,\n                            \"hint\": \"\",\n                            \"name\": \"Are all kerbs free from chipping, cracks or missing sections?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1643,\n                    \"name\": \"Footpaths\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Excellent\",\n                                \"label\": \"Excellent\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Minor defects\",\n                                \"label\": \"Minor defects\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Poor condition\",\n                                \"label\": \"Poor condition\",\n                                \"score\": -1\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26580,\n                            \"hint\": \"\",\n                            \"name\": \"Record the state of wear and tear of all footpaths in the area\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Excellent\",\n                                \"label\": \"Excellent\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"Minor defects\",\n                                \"label\": \"Minor defects\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Poor condition\",\n                                \"label\": \"Poor condition\",\n                                \"score\": -1\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26581,\n                            \"hint\": \"\",\n                            \"name\": \"What is the state of the surface condition?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26582,\n                            \"hint\": \"\",\n                            \"name\": \"Are all footpaths free from trip hazards?Trip hazards\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            },\n            {\n                \"section\": {\n                    \"id\": 1644,\n                    \"name\": \"Street Trees\",\n                    \"guidelines\": null,\n                    \"description\": null\n                },\n                \"visibility\": true,\n                \"form_questions\": [\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26583,\n                            \"hint\": \"\",\n                            \"name\": \"Are all footpaths free from tree root damage?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26584,\n                            \"hint\": \"\",\n                            \"name\": \"Are all private driveway entrances free from tree obstruction?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26585,\n                            \"hint\": \"\",\n                            \"name\": \"Is the minumum tree height clearance of 2.5m above footpaths maintained?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    },\n                    {\n                        \"score\": 0,\n                        \"choices\": [\n                            {\n                                \"name\": \"Yes\",\n                                \"label\": \"Yes\",\n                                \"score\": 1\n                            },\n                            {\n                                \"name\": \"No\",\n                                \"label\": \"No\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"Maintainance Required\",\n                                \"label\": \"Maintainance Required\",\n                                \"score\": 0\n                            },\n                            {\n                                \"name\": \"NA\",\n                                \"label\": \"NA\",\n                                \"score\": 0\n                            }\n                        ],\n                        \"question\": {\n                            \"id\": 26586,\n                            \"hint\": \"\",\n                            \"name\": \"Is the minimum tree height clearance of 4.5m above roadways maintained?\",\n                            \"type\": \"radio\",\n                            \"hint_type\": \"text\",\n                            \"description\": \"\"\n                        },\n                        \"required\": true,\n                        \"visibility\": true\n                    }\n                ],\n                \"form_sub_sections\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"6977e592-26e9-4317-b6d0-7df001957f34"},{"name":"List all templates","id":"228dcca5-0fe2-40f8-8ac1-d172b9871cf3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","description":"<p>An offset for filtering on templates.</p>\n","type":"text"},{"key":"limit","value":"{{limit}}","description":"<p>Total number of templates to be returned in response.</p>\n","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/templates/","description":"<p>This API helps you to retrieve the list of active templates of a customer.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>offset</td>\n<td>string</td>\n<td><code>Optonal</code><br /> An offset for filtering on templates.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td><code>Optonal</code><br /> Total number of templates to be returned in response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>guid</td>\n<td>Unique identifier of the template.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the template.</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>datetime</td>\n<td>The time when this template was created.</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>datetime</td>\n<td>The time when this template was last updated.</td>\n</tr>\n<tr>\n<td>created_by</td>\n<td>double</td>\n<td>User who created the template</td>\n</tr>\n<tr>\n<td>updated_by</td>\n<td>double</td>\n<td>User who last updated the template</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","templates",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"0d018a2e-a0de-4360-9b30-2521c0ec7163","name":"List all templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","description":"An offset for filtering on templates.","type":"text"},{"key":"limit","value":"{{limit}}","description":"Total number of templates to be returned in response.","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 15:41:23 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"GET, OPTIONS, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"5902"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"templates\": [\n        {\n            \"id\": 294,\n            \"name\": \"Demo template 3\",\n            \"created_by\": \"Demo User\",\n            \"updated_by\": \"Demo User\",\n            \"created_at\": \"January 23, 2021\",\n            \"updated_at\": \"January 28, 2021\"\n        },\n        {\n            \"id\": 295,\n            \"name\": \"Demo template 1\",\n            \"created_by\": \"Demo User\",\n            \"updated_by\": \"Demo User\",\n            \"created_at\": \"January 27, 2021\",\n            \"updated_at\": \"January 27, 2021\"\n        },\n        {\n            \"id\": 293,\n            \"name\": \"Demo template 2\",\n            \"created_by\": \"Demo User\",\n            \"updated_by\": \"Demo User\",\n            \"created_at\": \"January 21, 2021\",\n            \"updated_at\": \"January 21, 2021\"\n        }\n    ],\n    \"total_count\": 3\n}"}],"_postman_id":"228dcca5-0fe2-40f8-8ac1-d172b9871cf3"},{"name":"Get all questions","id":"ce7c45d2-0474-4ad5-b904-7af115e59f53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.pulsepro.ai/v1/customer/get_question_list/{{template_id}}","description":"<p>This API helps you to retrieve the questions of a template.<br /></p>\n<p>You must specify the unique identifier of the template as <code>template_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>guid</td>\n<td>id of the question.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>name of the question.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","get_question_list","{{template_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"437380f8-e6a6-4611-964e-2938710eb6fb","name":"Get all questions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.pulsepro.ai/v1/customer/get_question_list/{{template_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Fri, 19 Mar 2021 10:21:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2676"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 26552,\n        \"name\": \"Are there any loose or missing fillings?\"\n    },\n    {\n        \"id\": 26553,\n        \"name\": \"Are any signs damaged?\"\n    },\n    {\n        \"id\": 26554,\n        \"name\": \"Are all signs and delineations clean and easily read?\"\n    },\n    {\n        \"id\": 26555,\n        \"name\": \"Is the guardrail at the correct height and alignment?\"\n    },\n    {\n        \"id\": 26556,\n        \"name\": \"Are any of the fixings loose or missing?\"\n    },\n    {\n        \"id\": 26557,\n        \"name\": \"Is impact damage present?\"\n    },\n    {\n        \"id\": 26558,\n        \"name\": \"Is any material deteriorated (steel corrosion, timber decay etc)?\"\n    },\n    {\n        \"id\": 26559,\n        \"name\": \"Are any spacer blocks damaged or missing?\"\n    },\n    {\n        \"id\": 26560,\n        \"name\": \"Is debris/vegetation growth present inside drains, channels, inlet/outlet pits and sumps which may obstruct free drainage?\"\n    },\n    {\n        \"id\": 26561,\n        \"name\": \"Are drainage pits/structures leaking?\"\n    },\n    {\n        \"id\": 26562,\n        \"name\": \"Is there any scouring or erosion present at drainage outlets near abutments, foundations, culvet outlets and run off?\"\n    },\n    {\n        \"id\": 26563,\n        \"name\": \"Has any settlement occurred in the surface materail?\"\n    },\n    {\n        \"id\": 26564,\n        \"name\": \"Are there any localised  depressions in the surface area?\"\n    },\n    {\n        \"id\": 26565,\n        \"name\": \"Are there any pot holes present?\"\n    },\n    {\n        \"id\": 26566,\n        \"name\": \"Has the surface cracked?\"\n    },\n    {\n        \"id\": 26567,\n        \"name\": \"Are any embankment areas effected by erosion?\"\n    },\n    {\n        \"id\": 26568,\n        \"name\": \"Is scouring present in the embankment?\"\n    },\n    {\n        \"id\": 26569,\n        \"name\": \"Is the embankment slope stable and free from loose material?\"\n    },\n    {\n        \"id\": 26570,\n        \"name\": \"Are all bushes or trees within 2.0 m of abutments and wingwalls?\"\n    },\n    {\n        \"id\": 26571,\n        \"name\": \"Are any bushes or trees within waterway channel?\"\n    },\n    {\n        \"id\": 26572,\n        \"name\": \"Does vegetation affect sight distance onto/across structure?\"\n    },\n    {\n        \"id\": 26573,\n        \"name\": \"Has debris accumulated against or adjacent to the waterway?\"\n    },\n    {\n        \"id\": 26574,\n        \"name\": \"Is there any localised scouring adjacent to/beneath the waterway?\"\n    },\n    {\n        \"id\": 26575,\n        \"name\": \"Is there any lateral bank erosion adjacent to/beneath the waterway?\"\n    },\n    {\n        \"id\": 26576,\n        \"name\": \"Is the channel degraded?\"\n    },\n    {\n        \"id\": 26577,\n        \"name\": \"Is the whole are free from graffiti or other unauthorised signage?\"\n    },\n    {\n        \"id\": 26578,\n        \"name\": \"Specify the type of kerb?\"\n    },\n    {\n        \"id\": 26579,\n        \"name\": \"Are all kerbs free from chipping, cracks or missing sections?\"\n    },\n    {\n        \"id\": 26580,\n        \"name\": \"Record the state of wear and tear of all footpaths in the area\"\n    },\n    {\n        \"id\": 26581,\n        \"name\": \"What is the state of the surface condition?\"\n    },\n    {\n        \"id\": 26582,\n        \"name\": \"Are all footpaths free from trip hazards?Trip hazards\"\n    },\n    {\n        \"id\": 26583,\n        \"name\": \"Are all footpaths free from tree root damage?\"\n    },\n    {\n        \"id\": 26584,\n        \"name\": \"Are all private driveway entrances free from tree obstruction?\"\n    },\n    {\n        \"id\": 26585,\n        \"name\": \"Is the minumum tree height clearance of 2.5m above footpaths maintained?\"\n    },\n    {\n        \"id\": 26586,\n        \"name\": \"Is the minimum tree height clearance of 4.5m above roadways maintained?\"\n    }\n]"}],"_postman_id":"ce7c45d2-0474-4ad5-b904-7af115e59f53"}],"id":"5d4e865f-5f56-4a46-9aa0-f104440019c9","_postman_id":"5d4e865f-5f56-4a46-9aa0-f104440019c9","description":""},{"name":"Inspections","item":[{"name":"List all inspections","id":"d733cc35-d1c2-4556-9080-7e2f84da2731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>Access token generated from the token API.</p>\n","key":"Authorization","type":"text","value":"Api-key {{api_key}}"}],"body":{"mode":"formdata","formdata":[{"description":"<p>A comma separated list of location Ids for filtering on inspections.</p>\n","key":"location_list","type":"text","value":"{{location_list}}","disabled":true},{"description":"<p>A comma separated list of project Ids for filtering on inspections.</p>\n","key":"project_id_list","type":"text","value":"{{project_id_list}}","disabled":true},{"description":"<p>A comma separated list of countries for filtering on inspections.</p>\n","key":"country_list","type":"text","value":"{{country_list}}","disabled":true},{"description":"<p>It will filter inspection whose date of inspection is greater than or equal to this parameter ;format - dd/mm/yyyy</p>\n","key":"start_date","type":"text","value":"{{start_date}}"},{"description":"<p>It will filter inspection whose date of inspection is less than or equal to this parameter;format - dd/mm/yyyy</p>\n","key":"end_date","type":"text","value":"{{end_date}}"},{"description":"<p>An offset for filtering on inspections.</p>\n","key":"offset","type":"text","value":"{{offset}}"},{"description":"<p>Total number of inspections to be returned in response.</p>\n","key":"limit","type":"text","value":"{{limit}}"}]},"url":"https://api.pulsepro.ai/v1/customer/inspections/","description":"<p>This API helps you to retrieve the list of active inspections of a customer.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td><code>Optonal</code>  <br />It will filter inspection whose date of inspection is greater than or equal to this parameter;format - dd/mm/yyyy</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td><code>Optonal</code>  <br />It will filter inspection whose date of inspection is less than or equal to this parameter;format - dd/mm/yyyy</td>\n</tr>\n<tr>\n<td>location_list</td>\n<td>string</td>\n<td><code>Optonal</code>  <br />A comma separated list of location Ids for filtering on inspections.</td>\n</tr>\n<tr>\n<td>project_id_list</td>\n<td>string</td>\n<td><code>Optonal</code>  <br />A comma separated list of project Ids for filtering on inspections.</td>\n</tr>\n<tr>\n<td>location_list</td>\n<td>string</td>\n<td><code>Optonal</code>  <br />A comma separated list of countries for filtering on inspections.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>string</td>\n<td><code>Optonal</code>  <br />An offset for filtering on inspections.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td><code>Optonal</code>  <br />Total number of inspections to be returned in response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>inspection_id</td>\n<td>guid</td>\n<td>Unique identifier of the inspection.</td>\n</tr>\n<tr>\n<td>project_id</td>\n<td>integer</td>\n<td>Project id of the inspection.</td>\n</tr>\n<tr>\n<td>project_name</td>\n<td>string</td>\n<td>Project name of the inspection.</td>\n</tr>\n<tr>\n<td>location_id</td>\n<td>integer</td>\n<td>Id of location at which inspection was conducted.</td>\n</tr>\n<tr>\n<td>location_name</td>\n<td>string</td>\n<td>Name of location at which inspection was conducted.</td>\n</tr>\n<tr>\n<td>date_of_inspection</td>\n<td>datetime</td>\n<td>Date on which inspection was conducted.</td>\n</tr>\n<tr>\n<td>template_id</td>\n<td>integer</td>\n<td>Id of template used in the inspection.</td>\n</tr>\n<tr>\n<td>template_name</td>\n<td>string</td>\n<td>Name of template used in the inspection.</td>\n</tr>\n<tr>\n<td>submitted_by</td>\n<td>string</td>\n<td>Name of the auditor.</td>\n</tr>\n<tr>\n<td>score</td>\n<td>double</td>\n<td>Score of the inspection.</td>\n</tr>\n<tr>\n<td>pdf_url</td>\n<td>string</td>\n<td>URL of PDF report of the inspection</td>\n</tr>\n<tr>\n<td>time_elapsed</td>\n<td>string</td>\n<td>Total time taken in completing the inspection.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-object\">error Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>Matching inspection not found</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","inspections",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"f6a65e4f-7dfa-4ef7-9091-b3dc653a3685","name":"List all inspections","originalRequest":{"method":"GET","header":[{"description":"Access token generated from the token API.","key":"Authorization","type":"text","value":"Api-key {{api_key}}"}],"body":{"mode":"formdata","formdata":[{"description":"A comma separated list of location Ids for filtering on inspections.","key":"location_list","type":"text","value":"{{location_list}}","disabled":true},{"description":"A comma separated list of project Ids for filtering on inspections.","key":"project_id_list","type":"text","value":"{{project_id_list}}","disabled":true},{"description":"A comma separated list of countries for filtering on inspections.","key":"country_list","type":"text","value":"{{country_list}}","disabled":true},{"description":"It will filter inspection whose date of inspection is greater than or equal to this parameter","key":"start_date","type":"text","value":"{{start_date}}"},{"description":"It will filter inspection whose date of inspection is less than or equal to this parameter","key":"end_date","type":"text","value":"{{end_date}}"}]},"url":"https://api.pulsepro.ai/v1/customer/inspections/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 10:49:57 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"POST, GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"878"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"inspections\": [\n        {\n            \"inspection_id\": 670407,\n            \"project_id\": 753,\n            \"project_name\": \"Demo Project 1\",\n            \"location_id\": 5532,\n            \"location_name\": \"Demo location 5\",\n            \"date_of_inspection\": \"March 14, 9:23 p.m.\",\n            \"template_id\": 312,\n            \"template_name\": \"Demo Template 1\",\n            \"submitted_by\": \"Demo User\",\n            \"score\": 76.92,\n            \"pdf_url\": null,\n            \"time_elapsed\": \"1 minute 10 seconds\"\n        },\n        {\n            \"inspection_id\": 659061,\n            \"project_id\": 753,\n            \"project_name\": \"Demo Project 2\",\n            \"location_id\": 5532,\n            \"location_name\": \"Demo location 5\",\n            \"date_of_inspection\": \"March 11, 10:28 p.m.\",\n            \"template_id\": 312,\n            \"template_name\": \"Demo Template 2\",\n            \"submitted_by\": \"Demo User\",\n            \"score\": 69.23,\n            \"pdf_url\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/323177_FourBunglows-ParkAvenue.pdf\",\n            \"time_elapsed\": \"1 minute 26 seconds\"\n        }\n    ],\n    \"total_count\": 2\n}"}],"_postman_id":"d733cc35-d1c2-4556-9080-7e2f84da2731"},{"name":"Retrieve an inspection","id":"00773af6-2981-4519-956b-5af676a3f1a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/inspections/{{inspection_id}}","description":"<p>This API helps you to retrieve the details of an inspections.<br /></p>\n<p>You must specify the unique identifier of the inspection as <code>inspection_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>inspection_id</td>\n<td>guid</td>\n<td>Unique identifier of the inspection.</td>\n</tr>\n<tr>\n<td>customer_name</td>\n<td>string</td>\n<td>Name of the customer.</td>\n</tr>\n<tr>\n<td>customer_logo</td>\n<td>string</td>\n<td>Logo of the customer.</td>\n</tr>\n<tr>\n<td>business_address</td>\n<td>string</td>\n<td>Address of the customer.</td>\n</tr>\n<tr>\n<td>inspection_data</td>\n<td>string</td>\n<td>Data related to the filled inspection.</td>\n</tr>\n<tr>\n<td>date_of_inspection</td>\n<td>string</td>\n<td>Date on which inspection was conducted.</td>\n</tr>\n<tr>\n<td>day_of_inspection</td>\n<td>string</td>\n<td>Day on which inspection was conducted.</td>\n</tr>\n<tr>\n<td>media</td>\n<td>string</td>\n<td>Media files uploaded during filling inspection.</td>\n</tr>\n<tr>\n<td>submitted_by</td>\n<td>string</td>\n<td>Name of the auditor.</td>\n</tr>\n<tr>\n<td>project_name</td>\n<td>string</td>\n<td>Name of the project of the inspection.</td>\n</tr>\n<tr>\n<td>score</td>\n<td>string</td>\n<td>Score of the inspection.</td>\n</tr>\n<tr>\n<td>max_score</td>\n<td>string</td>\n<td>Max Score of the inspection. .</td>\n</tr>\n<tr>\n<td>percentage</td>\n<td>string</td>\n<td>Percentage of the inspection.</td>\n</tr>\n<tr>\n<td>actions</td>\n<td>string</td>\n<td>Actions reported dusring filling the inspection.</td>\n</tr>\n<tr>\n<td>custom_fields</td>\n<td>string</td>\n<td>Basic details of the inspection.</td>\n</tr>\n<tr>\n<td>location_name</td>\n<td>string</td>\n<td>location on which the inspection was conducted.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","inspections","{{inspection_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"a011e9e9-f81c-4649-ac20-6c4f42a4974c","name":"Retrieve an inspection","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"url":"https://api.pulsepro.ai/v1/customer/inspections/{{inspection_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 07:48:50 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"16651"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_name\": \"Pulse\",\n    \"customer_logo\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n    \"business_address\": \"Demo location 5, Manhattan, NY 10036, United States\",\n    \"inspection_data\": [\n        {\n            \"id\": 3211,\n            \"name\": \"Section 1\",\n            \"score\": 8,\n            \"max_score\": 11,\n            \"score_percentage\": 72.73,\n            \"has_sub_sections\": false,\n            \"has_questions\": true,\n            \"questions\": [\n                {\n                    \"id\": 25612,\n                    \"name\": \"Demo question 1\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"textarea\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 1,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66676,\n                                \"answer\": \"This is for demo purpose only\",\n                                \"type\": \"textarea\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25612\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66609,\n                                    \"answer\": \"This is for demo purpose only\",\n                                    \"type\": \"textarea\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25573\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25613,\n                    \"name\": \"Demo question 2\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"input\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 2,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66677,\n                                \"answer\": \"This is for demo purpose only\",\n                                \"type\": \"input\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25613\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66610,\n                                    \"answer\": \"This is for demo purpose only\",\n                                    \"type\": \"input\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25574\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25614,\n                    \"name\": \"Demo question 3\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"upload\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 3,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66678,\n                                \"answer\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                                \"type\": \"upload\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25614\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66611,\n                                    \"answer\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                                    \"type\": \"upload\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25575\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25615,\n                    \"name\": \"Demo question 4\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"checkbox\",\n                    \"score\": 7,\n                    \"max_score\": 10,\n                    \"show\": true,\n                    \"count\": 4,\n                    \"report_score_percentage\": 70,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66679,\n                                \"answer\": \"option 1\",\n                                \"type\": \"checkbox\",\n                                \"is_correct\": true,\n                                \"score\": 7,\n                                \"max_score\": 10,\n                                \"formResponseQuestion_id\": 25615\n                            },\n                            {\n                                \"id\": 66680,\n                                \"answer\": \"option 2\",\n                                \"type\": \"checkbox\",\n                                \"is_correct\": true,\n                                \"score\": 7,\n                                \"max_score\": 10,\n                                \"formResponseQuestion_id\": 25615\n                            },\n                            {\n                                \"id\": 66681,\n                                \"answer\": \"option 3\",\n                                \"type\": \"checkbox\",\n                                \"is_correct\": false,\n                                \"score\": 7,\n                                \"max_score\": 10,\n                                \"formResponseQuestion_id\": 25615\n                            },\n                            {\n                                \"id\": 66682,\n                                \"answer\": \"option 4\",\n                                \"type\": \"checkbox\",\n                                \"is_correct\": false,\n                                \"score\": 7,\n                                \"max_score\": 10,\n                                \"formResponseQuestion_id\": 25615\n                            },\n                            {\n                                \"id\": 66683,\n                                \"answer\": \"option 5\",\n                                \"type\": \"checkbox\",\n                                \"is_correct\": false,\n                                \"score\": 7,\n                                \"max_score\": 10,\n                                \"formResponseQuestion_id\": 25615\n                            }\n                        ],\n                        \"score\": 7,\n                        \"max_score\": 10\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66612,\n                                    \"answer\": \"option 1\",\n                                    \"type\": \"checkbox\",\n                                    \"is_correct\": false,\n                                    \"score\": 6,\n                                    \"max_score\": 10,\n                                    \"formResponseQuestion_id\": 25576\n                                },\n                                {\n                                    \"id\": 66613,\n                                    \"answer\": \"option 2\",\n                                    \"type\": \"checkbox\",\n                                    \"is_correct\": true,\n                                    \"score\": 6,\n                                    \"max_score\": 10,\n                                    \"formResponseQuestion_id\": 25576\n                                },\n                                {\n                                    \"id\": 66614,\n                                    \"answer\": \"option 3\",\n                                    \"type\": \"checkbox\",\n                                    \"is_correct\": true,\n                                    \"score\": 6,\n                                    \"max_score\": 10,\n                                    \"formResponseQuestion_id\": 25576\n                                },\n                                {\n                                    \"id\": 66615,\n                                    \"answer\": \"option 4\",\n                                    \"type\": \"checkbox\",\n                                    \"is_correct\": true,\n                                    \"score\": 6,\n                                    \"max_score\": 10,\n                                    \"formResponseQuestion_id\": 25576\n                                },\n                                {\n                                    \"id\": 66616,\n                                    \"answer\": \"option 5\",\n                                    \"type\": \"checkbox\",\n                                    \"is_correct\": false,\n                                    \"score\": 6,\n                                    \"max_score\": 10,\n                                    \"formResponseQuestion_id\": 25576\n                                }\n                            ],\n                            \"score\": 6,\n                            \"max_score\": 10\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25616,\n                    \"name\": \"Demo question 5\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"yes_no_na\",\n                    \"score\": 1,\n                    \"max_score\": 1,\n                    \"show\": true,\n                    \"count\": 5,\n                    \"report_score_percentage\": 100,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66684,\n                                \"answer\": \"Yes\",\n                                \"type\": \"yes_no_na\",\n                                \"is_correct\": true,\n                                \"score\": 1,\n                                \"max_score\": 1,\n                                \"formResponseQuestion_id\": 25616\n                            },\n                            {\n                                \"id\": 66685,\n                                \"answer\": \"No\",\n                                \"type\": \"yes_no_na\",\n                                \"is_correct\": false,\n                                \"score\": 1,\n                                \"max_score\": 1,\n                                \"formResponseQuestion_id\": 25616\n                            },\n                            {\n                                \"id\": 66686,\n                                \"answer\": \"Na\",\n                                \"type\": \"yes_no_na\",\n                                \"is_correct\": false,\n                                \"score\": 1,\n                                \"max_score\": 1,\n                                \"formResponseQuestion_id\": 25616\n                            }\n                        ],\n                        \"score\": 1,\n                        \"max_score\": 1\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66617,\n                                    \"answer\": \"Yes\",\n                                    \"type\": \"yes_no_na\",\n                                    \"is_correct\": true,\n                                    \"score\": 1,\n                                    \"max_score\": 1,\n                                    \"formResponseQuestion_id\": 25577\n                                },\n                                {\n                                    \"id\": 66618,\n                                    \"answer\": \"No\",\n                                    \"type\": \"yes_no_na\",\n                                    \"is_correct\": false,\n                                    \"score\": 1,\n                                    \"max_score\": 1,\n                                    \"formResponseQuestion_id\": 25577\n                                },\n                                {\n                                    \"id\": 66619,\n                                    \"answer\": \"Na\",\n                                    \"type\": \"yes_no_na\",\n                                    \"is_correct\": false,\n                                    \"score\": 1,\n                                    \"max_score\": 1,\n                                    \"formResponseQuestion_id\": 25577\n                                }\n                            ],\n                            \"score\": 1,\n                            \"max_score\": 1\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25617,\n                    \"name\": \"Demo question 6\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"number\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 6,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66687,\n                                \"answer\": \"1244\",\n                                \"type\": \"number\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25617\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66620,\n                                    \"answer\": \"123\",\n                                    \"type\": \"number\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25578\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": 3212,\n            \"name\": \"Section 2\",\n            \"score\": 2,\n            \"max_score\": 2,\n            \"score_percentage\": 100,\n            \"has_sub_sections\": false,\n            \"has_questions\": true,\n            \"questions\": [\n                {\n                    \"id\": 25618,\n                    \"name\": \"Demo question 7\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"yes_no\",\n                    \"score\": 1,\n                    \"max_score\": 1,\n                    \"show\": true,\n                    \"count\": 7,\n                    \"report_score_percentage\": 100,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66688,\n                                \"answer\": \"Yes\",\n                                \"type\": \"yes_no\",\n                                \"is_correct\": true,\n                                \"score\": 1,\n                                \"max_score\": 1,\n                                \"formResponseQuestion_id\": 25618\n                            },\n                            {\n                                \"id\": 66689,\n                                \"answer\": \"No\",\n                                \"type\": \"yes_no\",\n                                \"is_correct\": false,\n                                \"score\": 1,\n                                \"max_score\": 1,\n                                \"formResponseQuestion_id\": 25618\n                            }\n                        ],\n                        \"score\": 1,\n                        \"max_score\": 1\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66621,\n                                    \"answer\": \"Yes\",\n                                    \"type\": \"yes_no\",\n                                    \"is_correct\": true,\n                                    \"score\": 1,\n                                    \"max_score\": 1,\n                                    \"formResponseQuestion_id\": 25579\n                                },\n                                {\n                                    \"id\": 66622,\n                                    \"answer\": \"No\",\n                                    \"type\": \"yes_no\",\n                                    \"is_correct\": false,\n                                    \"score\": 1,\n                                    \"max_score\": 1,\n                                    \"formResponseQuestion_id\": 25579\n                                }\n                            ],\n                            \"score\": 1,\n                            \"max_score\": 1\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25619,\n                    \"name\": \"Demo question 8\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"radio\",\n                    \"score\": 1,\n                    \"max_score\": 1,\n                    \"show\": true,\n                    \"count\": 8,\n                    \"report_score_percentage\": 100,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66690,\n                                \"answer\": \"Agree\",\n                                \"type\": \"radio\",\n                                \"is_correct\": true,\n                                \"score\": 1,\n                                \"max_score\": 1,\n                                \"formResponseQuestion_id\": 25619\n                            },\n                            {\n                                \"id\": 66691,\n                                \"answer\": \"Disagree\",\n                                \"type\": \"radio\",\n                                \"is_correct\": false,\n                                \"score\": 1,\n                                \"max_score\": 1,\n                                \"formResponseQuestion_id\": 25619\n                            }\n                        ],\n                        \"score\": 1,\n                        \"max_score\": 1\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66623,\n                                    \"answer\": \"Agree\",\n                                    \"type\": \"radio\",\n                                    \"is_correct\": true,\n                                    \"score\": 1,\n                                    \"max_score\": 1,\n                                    \"formResponseQuestion_id\": 25580\n                                },\n                                {\n                                    \"id\": 66624,\n                                    \"answer\": \"Disagree\",\n                                    \"type\": \"radio\",\n                                    \"is_correct\": false,\n                                    \"score\": 1,\n                                    \"max_score\": 1,\n                                    \"formResponseQuestion_id\": 25580\n                                }\n                            ],\n                            \"score\": 1,\n                            \"max_score\": 1\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25620,\n                    \"name\": \"Demo question 9\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"date\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 9,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66692,\n                                \"answer\": \"14/03/2021\",\n                                \"type\": \"date\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25620\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66625,\n                                    \"answer\": \"14/03/2021\",\n                                    \"type\": \"date\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25581\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25621,\n                    \"name\": \"Demo question 10\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"time\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 10,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66693,\n                                \"answer\": \"12:00 AM\",\n                                \"type\": \"time\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25621\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66626,\n                                    \"answer\": \"12:00 AM\",\n                                    \"type\": \"time\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25582\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25622,\n                    \"name\": \"Demo question 11\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"signature\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 11,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66694,\n                                \"answer\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                                \"type\": \"signature\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25622\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66627,\n                                    \"answer\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                                    \"type\": \"signature\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25583\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25623,\n                    \"name\": \"Demo question 12\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"barcode\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 12,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66695,\n                                \"answer\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                                \"type\": \"barcode\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25623\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [\n                        {\n                            \"id\": 2387,\n                            \"url\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                            \"comment\": \"\",\n                            \"mime_type\": \"image/png\"\n                        }\n                    ],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66628,\n                                    \"answer\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                                    \"type\": \"barcode\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25584\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                },\n                {\n                    \"id\": 25624,\n                    \"name\": \"Demo question 13\",\n                    \"header\": \"\",\n                    \"hidden_question\": false,\n                    \"type\": \"qrcode\",\n                    \"score\": 0,\n                    \"max_score\": 0,\n                    \"show\": true,\n                    \"count\": 13,\n                    \"report_score_percentage\": 0,\n                    \"answers\": {\n                        \"date_of_audit\": \"March 14, 2021\",\n                        \"data\": [\n                            {\n                                \"id\": 66696,\n                                \"answer\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                                \"type\": \"qrcode\",\n                                \"is_correct\": true,\n                                \"score\": 0,\n                                \"max_score\": 0,\n                                \"formResponseQuestion_id\": 25624\n                            }\n                        ],\n                        \"score\": 0,\n                        \"max_score\": 0\n                    },\n                    \"images\": [\n                        {\n                            \"id\": 2388,\n                            \"url\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                            \"comment\": \"\",\n                            \"mime_type\": \"image/png\"\n                        }\n                    ],\n                    \"actions\": [],\n                    \"comments\": [],\n                    \"last_six_audit_answers\": [\n                        {\n                            \"date_of_audit\": \"March 11, 2021\",\n                            \"data\": [\n                                {\n                                    \"id\": 66629,\n                                    \"answer\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n                                    \"type\": \"qrcode\",\n                                    \"is_correct\": true,\n                                    \"score\": 0,\n                                    \"max_score\": 0,\n                                    \"formResponseQuestion_id\": 25585\n                                }\n                            ],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        },\n                        {\n                            \"date_of_audit\": \"February 19, 2021\",\n                            \"data\": [],\n                            \"score\": 0,\n                            \"max_score\": 0\n                        }\n                    ]\n                }\n            ]\n        }\n    ],\n    \"date_of_inspection\": \"March 14, 2021\",\n    \"day_of_inspection\": \"Sunday\",\n    \"media\": [\n        {\n            \"url\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n            \"mime_type\": \"image/png\",\n            \"comment\": \"\",\n            \"lat\": null,\n            \"lng\": null\n        },\n        {\n            \"url\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n            \"mime_type\": \"image/png\",\n            \"comment\": \"\",\n            \"lat\": null,\n            \"lng\": null\n        }\n    ],\n    \"project_name\": \"Demo Project 1\",\n    \"location_name\": \"Demo location 5\",\n    \"score\": 10,\n    \"max_score\": 13,\n    \"percentage\": 76.92,\n    \"actions\": [],\n    \"custom_fields\": [\n        {\n            \"field_name\": \"Location name\",\n            \"field_response\": \"Demo location 5\"\n        }\n    ]\n}"}],"_postman_id":"00773af6-2981-4519-956b-5af676a3f1a3"}],"id":"ac4f0b61-5ff4-418c-a8b7-64b39cd05568","_postman_id":"ac4f0b61-5ff4-418c-a8b7-64b39cd05568","description":""},{"name":"Users","item":[{"name":"Retrieve a user","id":"c4498be7-cb84-45fb-bdfe-ad90eedb3dcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/users/{{user_id}}","description":"<p>This API helps you to retrieve the details of a user.<br /></p>\n<p>You must specify the unique identifier of the user as <code>user_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_id</td>\n<td>guid</td>\n<td>Unique identifier of the user.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the user.</td>\n</tr>\n<tr>\n<td>mobile_number</td>\n<td>integer</td>\n<td>Mobile number of the user.</td>\n</tr>\n<tr>\n<td>profile_image</td>\n<td>string</td>\n<td>URL of profile image of the user.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Email id of the user</td>\n</tr>\n<tr>\n<td>role</td>\n<td>string</td>\n<td>Role of the user</td>\n</tr>\n<tr>\n<td>is_verified</td>\n<td>boolean</td>\n<td>Email verification status of the user</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>datetime</td>\n<td>User who created the user</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>datetime</td>\n<td>User who last updated the user</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","users","{{user_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"ce29bd40-c9ea-4580-82cc-c684b2e047fe","name":"Retrieve a user","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"url":"https://api.pulsepro.ai/v1/customer/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 10:50:53 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"GET, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"340"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"user_id\": 386,\n        \"name\": \"Demo User\",\n        \"mobile_number\": \"99999 99999\",\n        \"profile_image\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n        \"email\": \"demo.user@gmail.com\",\n        \"role\": \"ROLE_SUPER_ADMIN\",\n        \"is_verified\": true,\n        \"created_at\": \"2021-01-19T12:20:36.442157+05:30\",\n        \"updated_at\": \"2021-02-23T22:59:02.775730+05:30\"\n    }\n}"}],"_postman_id":"c4498be7-cb84-45fb-bdfe-ad90eedb3dcb"},{"name":"List all users","id":"080290f2-4e81-4a46-a4ca-31d016acd0e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>Access token generated from the token API.</p>\n","key":"Authorization","type":"text","value":"Api-key {{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","description":"<p>An offset for filtering on users.</p>\n","type":"text"},{"key":"limit","value":"{{limit}}","description":"<p>Total number of users to be returned in response.</p>\n","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/users/","description":"<p>This API helps you to retrieve the list of active locations of a customer.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>offset</td>\n<td>string</td>\n<td><code>Optonal</code><br /> An offset for filtering on users.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td><code>Optonal</code><br /> Total number of users to be returned in response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_id</td>\n<td>guid</td>\n<td>Unique identifier of the user.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the user.</td>\n</tr>\n<tr>\n<td>mobile_number</td>\n<td>integer</td>\n<td>Mobile number of the user.</td>\n</tr>\n<tr>\n<td>profile_image</td>\n<td>string</td>\n<td>URL of profile image of the user.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Email id of the user</td>\n</tr>\n<tr>\n<td>role</td>\n<td>string</td>\n<td>Role of the user</td>\n</tr>\n<tr>\n<td>is_verified</td>\n<td>boolean</td>\n<td>Email verification status of the user</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>datetime</td>\n<td>User who created the user</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>datetime</td>\n<td>User who last updated the user</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","users",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"f6c07e45-bcf7-423e-a8e4-2b20a389ea10","name":"List all users","originalRequest":{"method":"GET","header":[{"description":"Access token generated from the token API.","key":"Authorization","type":"text","value":"Api-key {{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","description":"An offset for filtering on users.","type":"text"},{"key":"limit","value":"{{limit}}","description":"Total number of users to be returned in response.","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/users/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 15:46:03 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"GET, OPTIONS, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"610"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"user_id\": 386,\n            \"name\": \"Demo User\",\n            \"mobile_number\": \"99999 99999\",\n            \"profile_image\": \"https://storage.googleapis.com/cdn.pulsepro.ai/static/pulse-logo.png\",\n            \"email\": \"demo.user@gmail.com\",\n            \"role\": \"ROLE_SUPER_ADMIN\",\n            \"is_verified\": true,\n            \"created_at\": \"2021-01-19T12:20:36.442157+05:30\",\n            \"updated_at\": \"2021-02-23T22:59:02.775730+05:30\"\n        },\n        {\n            \"user_id\": 387,\n            \"name\": \"Demo User 2\",\n            \"mobile_number\": \"9999999999\",\n            \"profile_image\": \"\",\n            \"email\": \"demo.user2@gmail.com\",\n            \"role\": \"ROLE_WORKER\",\n            \"is_verified\": true,\n            \"created_at\": \"2021-01-19T13:42:19.335429+05:30\",\n            \"updated_at\": \"2021-01-19T13:42:19.335429+05:30\"\n        }\n    ],\n    \"total_count\": 2\n}"}],"_postman_id":"080290f2-4e81-4a46-a4ca-31d016acd0e9"},{"name":"Delete a user.","id":"5ca9ff20-42f5-46ca-ba6c-af4a7c5acf64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/delete_user/{{user_id}}","description":"<p>This API helps you to delete a user.<br /></p>\n<p>You must specify the unique identifier of the user as <code>user_id</code>.</p>\n","urlObject":{"path":["v1","customer","delete_user","{{user_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"eb3d9c76-12c4-43db-a9a6-1b0e37ab1934","name":"Delete a user.","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"Access token generated from the token API.","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/delete_user/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Aug 2025 09:27:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"40"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User deleted successfully.\"\n}"}],"_postman_id":"5ca9ff20-42f5-46ca-ba6c-af4a7c5acf64"},{"name":"Add a user.","id":"854e02c1-b7d8-4775-845c-968d8fcea65d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"<p>Access token generated from the token API.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\"first_name\":\"gaurav\",\"last_name\":\"mishra\",\"email\":\"vogahid321@namestal.com\",\"permissionSets\":[26241]}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/add_user/","description":"<p>This API helps you to add a new user.<br /></p>\n","urlObject":{"path":["v1","customer","add_user",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"aeb97f36-4923-4084-811f-2fc26ed391b2","name":"Add a user.","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"Access token generated from the token API.","type":"text"}],"body":{"mode":"raw","raw":"{\"first_name\":\"gaurav\",\"last_name\":\"mishra\",\"email\":\"vogahid321@namestal.com\",\"permissionSets\":[26241]}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/add_user/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Aug 2025 10:42:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"119"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET, POST"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"user_id\": 39980,\n    \"locations\": [],\n    \"username\": \"vogahid321@namestal.com\",\n    \"message\": \"An e-mail has been sent successfully.\"\n}"}],"_postman_id":"854e02c1-b7d8-4775-845c-968d8fcea65d"}],"id":"0f8ef948-1453-437f-8c96-11a4933b25b5","_postman_id":"0f8ef948-1453-437f-8c96-11a4933b25b5","description":""},{"name":"Projects","item":[{"name":"Get all Projects","id":"a37eb86c-e1c5-4821-be87-40d89d09f46a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","description":"<p>An offset for filtering on projects.</p>\n","type":"text"},{"key":"limit","value":"{{limit}}","description":"<p>Total number of projects to be returned in response.</p>\n","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/projects/","description":"<p>This API helps you to retrieve the list of active projects of a customer.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>offset</td>\n<td>string</td>\n<td><code>Optonal</code><br /> An offset for filtering on projects.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td><code>Optonal</code><br /> Total number of projects to be returned in response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>guid</td>\n<td>Unique identifier of the project.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name given to the project.</td>\n</tr>\n<tr>\n<td>project_status</td>\n<td>string</td>\n<td>Status of the project.</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td>Start date of the project.</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td>End date of the project.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the project.</td>\n</tr>\n<tr>\n<td>created_by</td>\n<td>string</td>\n<td>User who created the project.</td>\n</tr>\n<tr>\n<td>updated_by</td>\n<td>string</td>\n<td>User who last updated the project.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","projects",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"41ed24a9-f739-49cf-bb19-632d7d512dea","name":"Get all Projects","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 15:18:00 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET, POST"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"2576"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"project\": [\n        {\n            \"id\": 759,\n            \"name\": \"Demo Project 1\",\n            \"description\": \"\",\n            \"project_status\": \"Active\",\n            \"start_date\": \"February 17, midnight\",\n            \"end_date\": \"March 01, 11:59 p.m.\",\n            \"created_by\": \"Demo User\",\n            \"updated_by\": \"Demo User\"\n        },\n        {\n            \"id\": 755,\n            \"name\": \"Demo Project 2\",\n            \"description\": \"\",\n            \"project_status\": \"Active\",\n            \"start_date\": \"February 16, midnight\",\n            \"end_date\": \"March 14, 11:59 p.m.\",\n            \"created_by\": \"Demo User\",\n            \"updated_by\": \"Demo User\"\n        },\n        {\n            \"id\": 753,\n            \"name\": \"Demo Project 3\",\n            \"description\": \"\",\n            \"project_status\": \"Active\",\n            \"start_date\": \"February 13, midnight\",\n            \"end_date\": \"March 14, 11:59 p.m.\",\n            \"created_by\": \"Demo User\",\n            \"updated_by\": \"Demo User\"\n        }\n    ],\n    \"total_count\": 3\n}"}],"_postman_id":"a37eb86c-e1c5-4821-be87-40d89d09f46a"},{"name":"Retrieve a project","id":"964369b3-c63e-449c-af9a-120e58f7df92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/projects/{{project_id}}","description":"<p>This API helps you to retrieve the details of a project.<br /></p>\n<p>You must specify the unique identifier of the project as <code>project_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>guid</td>\n<td>Unique identifier of the project.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name given to the project.</td>\n</tr>\n<tr>\n<td>project_status</td>\n<td>string</td>\n<td>Status of the project.</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td>Start date of the project.</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td>End date of the project.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the project.</td>\n</tr>\n<tr>\n<td>created_by</td>\n<td>string</td>\n<td>User who created the project.</td>\n</tr>\n<tr>\n<td>updated_by</td>\n<td>string</td>\n<td>User who last updated the project.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","projects","{{project_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"c1673d4f-ef25-4b6c-bdca-a8e12c206e03","name":"Retrieve a project","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/projects/{{project_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Mar 2021 15:22:37 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.8.1"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"229"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"project\": {\n        \"id\": 755,\n        \"name\": \"Demo Project 2\",\n        \"description\": \"\",\n        \"project_status\": \"Active\",\n        \"start_date\": \"February 16, midnight\",\n        \"end_date\": \"March 14, 11:59 p.m.\",\n        \"created_by\": \"Demo User\",\n        \"updated_by\": \"Demo User\"\n    }\n}"}],"_postman_id":"964369b3-c63e-449c-af9a-120e58f7df92"}],"id":"c5423940-443f-48f2-abf4-0c48f8bf8d6f","_postman_id":"c5423940-443f-48f2-abf4-0c48f8bf8d6f","description":""},{"name":"Actions","item":[{"name":"List all actions.","id":"03e16188-430b-41c0-b27d-c4f1ce14e20b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"location_list","value":"{{location_list}}","type":"text","description":"<p>A comma separated list of location Ids for filtering on actions.</p>\n","disabled":true},{"key":"project_id_list","value":"{{project_id_list}}","type":"text","description":"<p>A comma separated list of project Ids for filtering on actions.</p>\n","disabled":true},{"key":"country_list","value":"{{country_list}}","type":"text","description":"<p>A comma separated list of countries for filtering on actions.</p>\n","disabled":true},{"key":"start_date","value":"{{start_date}}","type":"text","description":"<p>It will filter actions whose date of creation is greater than or equal to this parameter ;format - dd/mm/yy</p>\n"},{"key":"end_date","value":"{{end_date}}","type":"text","description":"<p>It will filter actions whose date of creation is less than or equal to this parameter;format - dd/mm/yy</p>\n"},{"key":"offset","value":"{{offset}}","type":"text","description":"<p>An offset for filtering on actions.</p>\n"},{"key":"limit","value":"{{limit}}","type":"text","description":"<p>Total number of actions to be returned in response.</p>\n"}]},"url":"https://api.pulsepro.ai/v1/customer/actions/","description":"<p>This API helps you to retrieve the list of all actions of a customer.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td><code>Optonal</code><br /> It will filter action whose date of creation is greater than or equal to this parameter;format - dd/mm/yy</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td><code>Optonal</code><br /> It will filter action whose date of creation is less than or equal to this parameter;format - dd/mm/yy</td>\n</tr>\n<tr>\n<td>location_list</td>\n<td>string</td>\n<td><code>Optonal</code><br /> A comma separated list of location Ids for filtering on actions.</td>\n</tr>\n<tr>\n<td>project_id_list</td>\n<td>string</td>\n<td><code>Optonal</code><br /> A comma separated list of project Ids for filtering on actions.</td>\n</tr>\n<tr>\n<td>location_list</td>\n<td>string</td>\n<td><code>Optonal</code><br /> A comma separated list of countries for filtering on actions.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>string</td>\n<td><code>Optonal</code><br /> An offset for filtering on actions.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td><code>Optonal</code><br /> Total number of actions to be returned in response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>action_id</td>\n<td>guid</td>\n<td>Unique identifier of the action.</td>\n</tr>\n<tr>\n<td>section_name</td>\n<td>string</td>\n<td>Name of Section of checklist in which action was reported.</td>\n</tr>\n<tr>\n<td>question_name</td>\n<td>string</td>\n<td>Name of question of checklist in which action was reported.</td>\n</tr>\n<tr>\n<td>action_location_name</td>\n<td>string</td>\n<td>Name of location at which action was reported.</td>\n</tr>\n<tr>\n<td>action_location_id</td>\n<td>guid</td>\n<td>Id of location in which action was reported.</td>\n</tr>\n<tr>\n<td>reported_at</td>\n<td>datetime</td>\n<td>Date on which action was reported.</td>\n</tr>\n<tr>\n<td>deadline_date</td>\n<td>datetime</td>\n<td>Deadline date of the action provided at the time of reporting the action.</td>\n</tr>\n<tr>\n<td>action_status</td>\n<td>string</td>\n<td>Status of the action.</td>\n</tr>\n<tr>\n<td>action_priority</td>\n<td>string</td>\n<td>Priority of the action.</td>\n</tr>\n<tr>\n<td>assignee</td>\n<td>string</td>\n<td>Assignee of the action.</td>\n</tr>\n<tr>\n<td>reported_by</td>\n<td>string</td>\n<td>Reporter of the action.</td>\n</tr>\n<tr>\n<td>action_title</td>\n<td>string</td>\n<td>Title of the action.</td>\n</tr>\n<tr>\n<td>action_description</td>\n<td>string</td>\n<td>Description of the action.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>double</td>\n<td>Geometric latitude of the location on which action was reported.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>double</td>\n<td>Geometric longitude of the location on which action was reported.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-object\">error Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>Matching action not found</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","actions",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"5e42cfc0-9f46-4654-8b77-d75c5039f9a1","name":"List all actions.","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"Access token generated from the token API.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"location_list","value":"{{location_list}}","type":"text","description":"A comma separated list of location Ids for filtering on actions.","disabled":true},{"key":"project_id_list","value":"{{project_id_list}}","type":"text","description":"A comma separated list of project Ids for filtering on actions.","disabled":true},{"key":"country_list","value":"{{country_list}}","type":"text","description":"A comma separated list of countries for filtering on actions.","disabled":true},{"key":"start_date","value":"{{start_date}}","type":"text","description":"It will filter actions whose date of creation is greater than or equal to this parameter ;format - dd/mm/yy"},{"key":"end_date","value":"{{end_date}}","type":"text","description":"It will filter actions whose date of creation is less than or equal to this parameter;format - dd/mm/yy"},{"key":"offset","value":"{{offset}}","type":"text","description":"An offset for filtering on actions."},{"key":"limit","value":"{{limit}}","type":"text","description":"Total number of actions to be returned in response."}]},"url":"https://api.pulsepro.ai/v1/customer/actions/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Aug 2025 08:52:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4636"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"POST, OPTIONS, GET"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"actions\": [\n        {\n            \"action_id\": 343408,\n            \"inspection_id\": 12470951,\n            \"section_name\": \"second\",\n            \"question_name\": \"Untitled Question 1\",\n            \"action_title\": \"Title of the Action\",\n            \"action_description\": \"lopiujk\",\n            \"action_status\": \"To-Do\",\n            \"action_priority\": \"High\",\n            \"assignee\": \"sejohap713@calunia.com\",\n            \"reported_at\": \"August 26, 2025\",\n            \"reported_by\": \"03-unusual-kingdom@icloud.com\",\n            \"deadline_date\": \"August 29, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"14th Avenue\",\n            \"action_location_id\": 38653\n        },\n        {\n            \"action_id\": 341303,\n            \"inspection_id\": 12322010,\n            \"section_name\": \"Untitled Section 1\",\n            \"question_name\": \"Untitled Question 1\",\n            \"action_title\": \"First \",\n            \"action_description\": \"First Action\",\n            \"action_status\": \"Void\",\n            \"action_priority\": \"High\",\n            \"assignee\": \"memavem193@colimarl.com\",\n            \"reported_at\": \"August 21, 2025\",\n            \"reported_by\": \"memavem193@colimarl.com\",\n            \"deadline_date\": \"August 26, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"14th Avenue\",\n            \"action_location_id\": 38653\n        },\n        {\n            \"action_id\": 342998,\n            \"inspection_id\": 12323812,\n            \"section_name\": \"Untitled Section 1\",\n            \"question_name\": \"Radio type\",\n            \"action_title\": \"no\",\n            \"action_description\": \"no\",\n            \"action_status\": \"To-Do\",\n            \"action_priority\": \"High\",\n            \"assignee\": \"noratna.yadav@redquanta.com\",\n            \"reported_at\": \"August 25, 2025\",\n            \"reported_by\": \"03-unusual-kingdom@icloud.com\",\n            \"deadline_date\": \"August 23, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"14th Avenue\",\n            \"action_location_id\": 38653\n        },\n        {\n            \"action_id\": 341307,\n            \"inspection_id\": 12322031,\n            \"section_name\": \"Untitled Section 1\",\n            \"question_name\": \"Untitled Question 1\",\n            \"action_title\": \"fvfdv df\",\n            \"action_description\": \"fdvdfv\",\n            \"action_status\": \"To-Do\",\n            \"action_priority\": \"Low\",\n            \"assignee\": \"03-unusual-kingdom@icloud.com\",\n            \"reported_at\": \"August 21, 2025\",\n            \"reported_by\": \"memavem193@colimarl.com\",\n            \"deadline_date\": \"August 22, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"14th Avenue\",\n            \"action_location_id\": 38653\n        },\n        {\n            \"action_id\": 341309,\n            \"inspection_id\": 12322037,\n            \"section_name\": \"My checklist\",\n            \"question_name\": \"Question Image Required\",\n            \"action_title\": \"fvdvdfv\",\n            \"action_description\": \"vfdvdvfdv\",\n            \"action_status\": \"Void\",\n            \"action_priority\": \"Medium\",\n            \"assignee\": \"memavem193@colimarl.com\",\n            \"reported_at\": \"August 21, 2025\",\n            \"reported_by\": \"memavem193@colimarl.com\",\n            \"deadline_date\": \"August 20, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"Abbanna Colony 1\",\n            \"action_location_id\": 907\n        },\n        {\n            \"action_id\": 341308,\n            \"inspection_id\": 12322037,\n            \"section_name\": \"My checklist\",\n            \"question_name\": \"Test Checklist (Yes option image required)\",\n            \"action_title\": \"fvfdvfdv\",\n            \"action_description\": \"dfvfdvdf\",\n            \"action_status\": \"To-Do\",\n            \"action_priority\": \"Medium\",\n            \"assignee\": null,\n            \"reported_at\": \"August 21, 2025\",\n            \"reported_by\": \"memavem193@colimarl.com\",\n            \"deadline_date\": \"August 23, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"Abbanna Colony 1\",\n            \"action_location_id\": 907\n        },\n        {\n            \"action_id\": 341304,\n            \"inspection_id\": 12322012,\n            \"section_name\": \"test1\",\n            \"question_name\": \"Q1\",\n            \"action_title\": \"Second\",\n            \"action_description\": \"Second Action\",\n            \"action_status\": \"To-Do\",\n            \"action_priority\": \"Medium\",\n            \"assignee\": null,\n            \"reported_at\": \"August 21, 2025\",\n            \"reported_by\": \"memavem193@colimarl.com\",\n            \"deadline_date\": \"August 23, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"14th Avenue\",\n            \"action_location_id\": 38653\n        },\n        {\n            \"action_id\": 337553,\n            \"inspection_id\": 11982047,\n            \"section_name\": \"Untitled Section 1\",\n            \"question_name\": \"gaurav mishra question 1\",\n            \"action_title\": \"gaurav mishra question 1\",\n            \"action_description\": null,\n            \"action_status\": \"Complete\",\n            \"action_priority\": \"High\",\n            \"assignee\": \"shobhana@redquanta.com\",\n            \"reported_at\": \"August 11, 2025\",\n            \"reported_by\": \"03-unusual-kingdom@icloud.com\",\n            \"deadline_date\": \"August 11, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"Auto Nagar\",\n            \"action_location_id\": 912\n        },\n        {\n            \"action_id\": 337742,\n            \"inspection_id\": 11982146,\n            \"section_name\": \"Untitled Section 1\",\n            \"question_name\": \"Untitled Question 2\",\n            \"action_title\": \"check01\",\n            \"action_description\": \"check\",\n            \"action_status\": \"To-Do\",\n            \"action_priority\": \"Medium\",\n            \"assignee\": null,\n            \"reported_at\": \"August 12, 2025\",\n            \"reported_by\": \"03-unusual-kingdom@icloud.com\",\n            \"deadline_date\": \"August 13, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"14th Avenue\",\n            \"action_location_id\": 38653\n        },\n        {\n            \"action_id\": 337282,\n            \"inspection_id\": 11972287,\n            \"section_name\": \"Untitled Section 1\",\n            \"question_name\": \"Untitled Question 4\",\n            \"action_title\": \"Test 2\",\n            \"action_description\": \"wvwee\",\n            \"action_status\": \"To-Do\",\n            \"action_priority\": \"High\",\n            \"assignee\": null,\n            \"reported_at\": \"August 11, 2025\",\n            \"reported_by\": \"03-unusual-kingdom@icloud.com\",\n            \"deadline_date\": \"August 13, 2025\",\n            \"longitude\": null,\n            \"latitude\": null,\n            \"action_location_name\": \"14th Avenue\",\n            \"action_location_id\": 38653\n        }\n    ],\n    \"total_count\": 10\n}"}],"_postman_id":"03e16188-430b-41c0-b27d-c4f1ce14e20b"},{"name":"Retrieve an action","id":"16a302ac-a80c-40ed-a55d-b5f1577e3898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/actions/{{action_id}}","description":"<p>This API helps you to retrieve the details of an action.<br /></p>\n<p>You must specify the unique identifier of the action as <code>action_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>action_id</td>\n<td>guid</td>\n<td>Unique identifier of the action.</td>\n</tr>\n<tr>\n<td>section_name</td>\n<td>string</td>\n<td>Name of Section of checklist in which action was reported.</td>\n</tr>\n<tr>\n<td>question_name</td>\n<td>string</td>\n<td>Name of question of checklist in which action was reported.</td>\n</tr>\n<tr>\n<td>action_location_name</td>\n<td>string</td>\n<td>Name of location at which action was reported.</td>\n</tr>\n<tr>\n<td>action_location_id</td>\n<td>guid</td>\n<td>Id of location in which action was reported.</td>\n</tr>\n<tr>\n<td>reported_at</td>\n<td>datetime</td>\n<td>Date on which action was reported.</td>\n</tr>\n<tr>\n<td>deadline_date</td>\n<td>datetime</td>\n<td>Deadline date of the action provided at the time of reporting the action.</td>\n</tr>\n<tr>\n<td>action_status</td>\n<td>string</td>\n<td>Status of the action.</td>\n</tr>\n<tr>\n<td>action_priority</td>\n<td>string</td>\n<td>Priority of the action.</td>\n</tr>\n<tr>\n<td>assignee</td>\n<td>string</td>\n<td>Assignee of the action.</td>\n</tr>\n<tr>\n<td>reported_by</td>\n<td>string</td>\n<td>Reporter of the action.</td>\n</tr>\n<tr>\n<td>action_title</td>\n<td>string</td>\n<td>Title of the action.</td>\n</tr>\n<tr>\n<td>action_description</td>\n<td>string</td>\n<td>Description of the action.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>double</td>\n<td>Geometric latitude of the location on which action was reported.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>double</td>\n<td>Geometric longitude of the location on which action was reported.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","actions","{{action_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"62969be5-c4ff-493e-982e-29c212e083c0","name":"Retrieve an action","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"Access token generated from the token API.","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/actions/{{action_id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Aug 2025 08:52:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"469"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"action_id\": 343408,\n    \"inspection_id\": 12470951,\n    \"section_name\": \"second\",\n    \"question_name\": \"Untitled Question 1\",\n    \"action_title\": \"Title of the Action\",\n    \"action_description\": \"lopiujk\",\n    \"action_status\": \"To-Do\",\n    \"action_priority\": \"High\",\n    \"assignee\": \"sejohap713@calunia.com\",\n    \"reported_at\": \"August 26, 2025\",\n    \"reported_by\": \"03-unusual-kingdom@icloud.com\",\n    \"deadline_date\": \"August 29, 2025\",\n    \"longitude\": null,\n    \"latitude\": null,\n    \"action_location_name\": \"14th Avenue\",\n    \"action_location_id\": 38653\n}"}],"_postman_id":"16a302ac-a80c-40ed-a55d-b5f1577e3898"}],"id":"b9802c2a-e5b1-4c59-a664-d3fee690cce8","_postman_id":"b9802c2a-e5b1-4c59-a664-d3fee690cce8","description":""},{"name":"Tickets","item":[{"name":"List all issues.","id":"7eabd9b7-7303-4156-9c85-9fe730a45939","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"<p>Access token generated from the token API.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"from_date\": \"17/08/2025\",\n    \"to_date\": \"27/08/2025\",\n    \"regionIds\": [],\n    \"location_list\": [],\n    \"status\": [],\n    \"search_keyword\": \"\",\n    \"issue_sub_category\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_issues_by_filters/","description":"<p>This API helps you to retrieve the list of all issues of a customer.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td><code>Optonal</code><br /> It will filter issues whose date of creation is greater than or equal to this parameter;format - dd/mm/yy</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td><code>Optonal</code><br /> It will filter issues whose date of creation is less than or equal to this parameter;format - dd/mm/yy</td>\n</tr>\n<tr>\n<td>location_list</td>\n<td>string</td>\n<td><code>Optonal</code><br /> A comma separated list of location Ids for filtering on issues.</td>\n</tr>\n<tr>\n<td>country_list</td>\n<td>string</td>\n<td><code>Optonal</code><br /> A comma separated list of countries for filtering on issues.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>string</td>\n<td><code>Optonal</code><br /> An offset for filtering on issues.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td><code>Optonal</code><br /> Total number of issues to be returned in response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>issue_id</td>\n<td>guid</td>\n<td>Unique identifier of the issue.</td>\n</tr>\n<tr>\n<td>issue_location_name</td>\n<td>string</td>\n<td>Name of location at which issue was reported.</td>\n</tr>\n<tr>\n<td>issue_location_id</td>\n<td>guid</td>\n<td>Id of location in which issue was reported.</td>\n</tr>\n<tr>\n<td>reported_at</td>\n<td>datetime</td>\n<td>Date on which issue was reported.</td>\n</tr>\n<tr>\n<td>deadline_date</td>\n<td>datetime</td>\n<td>Deadline date of the issue provided at the time of reporting the issue.</td>\n</tr>\n<tr>\n<td>issue_category_id</td>\n<td>string</td>\n<td>Id of category of the issue.</td>\n</tr>\n<tr>\n<td>issue_category_name</td>\n<td>string</td>\n<td>Name of category of the issue.</td>\n</tr>\n<tr>\n<td>issue_status</td>\n<td>string</td>\n<td>Status of the issue.</td>\n</tr>\n<tr>\n<td>issue_priority</td>\n<td>string</td>\n<td>Priority of the issue.</td>\n</tr>\n<tr>\n<td>assignee</td>\n<td>string</td>\n<td>Assignee of the issue.</td>\n</tr>\n<tr>\n<td>reported_by</td>\n<td>string</td>\n<td>Reporter of the issue.</td>\n</tr>\n<tr>\n<td>issue_title</td>\n<td>string</td>\n<td>Title of the issue.</td>\n</tr>\n<tr>\n<td>issue_description</td>\n<td>string</td>\n<td>Description of the issue.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>double</td>\n<td>Geometric latitude of the location on which issue was reported.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>double</td>\n<td>Geometric longitude of the location on which issue was reported.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-object\">error Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>Matching issue not found</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","get_issues_by_filters",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"bd16dbe5-069e-400b-8651-c27f21a3c63c","name":"List all issues.","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"Access token generated from the token API.","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"offset\": 0,\n    \"limit\": 10,\n    \"from_date\": \"17/08/2025\",\n    \"to_date\": \"27/08/2025\",\n    \"regionIds\": [],\n    \"location_list\": [],\n    \"status\": [],\n    \"search_keyword\": \"\",\n    \"issue_sub_category\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_issues_by_filters/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Aug 2025 08:58:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3953"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"issues\": [\n        {\n            \"id\": 14523,\n            \"issue_location\": \"Def Col Central Delhi\",\n            \"created_at\": \"August 18, 2025\",\n            \"description\": \"Testing\",\n            \"issue_status\": \"Open\",\n            \"deadline_date\": \"August 29, 2025\",\n            \"priority\": \"Medium\",\n            \"assignee\": \"Shobhana Sharma\",\n            \"extended_deadline_date\": \"August 29, 2025\",\n            \"delayed_by\": \"\",\n            \"title\": \"Tst CAT\",\n            \"updated_at\": \"August 26, 2025\",\n            \"updated_by\": \"Tanvi Malhan\",\n            \"translated_issue_status\": \"Open\",\n            \"translated_priority\": \"Medium\",\n            \"issue_category\": \"Tst CAT\",\n            \"issue_category_id\": 11846,\n            \"translated_issue_category\": \"Tst CAT\",\n            \"deadline_days\": null,\n            \"deadline_hours\": null,\n            \"issue_custom_field\": {\n                \"issue_custom_field_meta\": [\n                    {\n                        \"block_id\": null,\n                        \"entity_id\": null,\n                        \"country_id\": null\n                    }\n                ]\n            },\n            \"issue_sub_category\": \"\",\n            \"image_url\": []\n        },\n        {\n            \"id\": 14642,\n            \"issue_location\": \"Kalkaji FC 2 South Delhi\",\n            \"created_at\": \"August 26, 2025\",\n            \"description\": \"mkm,\",\n            \"issue_status\": \"Void\",\n            \"deadline_date\": \"-\",\n            \"priority\": \"Medium\",\n            \"assignee\": \"gaurav mishra\",\n            \"extended_deadline_date\": \"-\",\n            \"delayed_by\": null,\n            \"title\": \"Test CAT 1\",\n            \"updated_at\": \"August 26, 2025\",\n            \"updated_by\": \"Tanvi Malhan\",\n            \"translated_issue_status\": \"Void\",\n            \"translated_priority\": \"Medium\",\n            \"issue_category\": \"Test CAT 1\",\n            \"issue_category_id\": 11845,\n            \"translated_issue_category\": \"Test CAT 1\",\n            \"deadline_days\": null,\n            \"deadline_hours\": null,\n            \"issue_custom_field\": {\n                \"issue_custom_field_meta\": [\n                    {\n                        \"block_id\": \"null\",\n                        \"entity_id\": \"null\",\n                        \"country_id\": \"null\"\n                    }\n                ]\n            },\n            \"issue_sub_category\": \"SUb 1\",\n            \"image_url\": []\n        },\n        {\n            \"id\": 14641,\n            \"issue_location\": \"Sardar Nagar Ahmedabad\",\n            \"created_at\": \"August 26, 2025\",\n            \"description\": \"no\",\n            \"issue_status\": \"Void\",\n            \"deadline_date\": \"September 07, 2025\",\n            \"priority\": \"High\",\n            \"assignee\": \"dada dada\",\n            \"extended_deadline_date\": \"-\",\n            \"delayed_by\": \"\",\n            \"title\": \"Tst CAT\",\n            \"updated_at\": \"August 26, 2025\",\n            \"updated_by\": \"Abhilasha Chauhan\",\n            \"translated_issue_status\": \"Void\",\n            \"translated_priority\": \"High\",\n            \"issue_category\": \"Tst CAT\",\n            \"issue_category_id\": 11846,\n            \"translated_issue_category\": \"Tst CAT\",\n            \"deadline_days\": 12,\n            \"deadline_hours\": 12,\n            \"issue_custom_field\": {\n                \"issue_custom_field_meta\": [\n                    {\n                        \"block_id\": \"null\",\n                        \"entity_id\": \"null\",\n                        \"country_id\": \"null\"\n                    }\n                ]\n            },\n            \"issue_sub_category\": \"Sub 1\",\n            \"image_url\": []\n        },\n        {\n            \"id\": 14626,\n            \"issue_location\": \"Kalkaji FC 2 South Delhi\",\n            \"created_at\": \"August 25, 2025\",\n            \"description\": \"naojsdnasd\",\n            \"issue_status\": \"Void\",\n            \"deadline_date\": \"August 30, 2025\",\n            \"priority\": \"High\",\n            \"assignee\": \"Tanvi Malhan\",\n            \"extended_deadline_date\": \"-\",\n            \"delayed_by\": \"\",\n            \"title\": \"Quality\",\n            \"updated_at\": \"August 26, 2025\",\n            \"updated_by\": \"Tanvi Malhan\",\n            \"translated_issue_status\": \"Void\",\n            \"translated_priority\": \"High\",\n            \"issue_category\": \"Quality\",\n            \"issue_category_id\": 11837,\n            \"translated_issue_category\": \"Quality\",\n            \"deadline_days\": 5,\n            \"deadline_hours\": 2,\n            \"issue_custom_field\": {\n                \"issue_custom_field_meta\": [\n                    {\n                        \"block_id\": \"null\",\n                        \"entity_id\": \"null\",\n                        \"country_id\": \"null\"\n                    }\n                ]\n            },\n            \"issue_sub_category\": \"Food\",\n            \"image_url\": [\n                \"https://s3.ap-south-1.amazonaws.com/cdn.pulsepro.ai/issues/1/base/0/0/57/14626_1756194717.jpg\",\n                \"https://s3.ap-south-1.amazonaws.com/cdn.pulsepro.ai/issues/1/base/0/0/57/14626_1756112710_911148.png\"\n            ]\n        },\n        {\n            \"id\": 14525,\n            \"issue_location\": \"Rajnagar FC Ghaziabad\",\n            \"created_at\": \"August 18, 2025\",\n            \"description\": \"Test\",\n            \"issue_status\": \"Void\",\n            \"deadline_date\": \"August 21, 2025\",\n            \"priority\": \"Medium\",\n            \"assignee\": \"Ayuzh Negi\",\n            \"extended_deadline_date\": \"August 21, 2025\",\n            \"delayed_by\": \"-5 days\",\n            \"title\": \"Tst CAT\",\n            \"updated_at\": \"August 18, 2025\",\n            \"updated_by\": \"Pulse Test\",\n            \"translated_issue_status\": \"Void\",\n            \"translated_priority\": \"Medium\",\n            \"issue_category\": \"Tst CAT\",\n            \"issue_category_id\": 11846,\n            \"translated_issue_category\": \"Tst CAT\",\n            \"deadline_days\": null,\n            \"deadline_hours\": null,\n            \"issue_custom_field\": {\n                \"issue_custom_field_meta\": [\n                    {\n                        \"block_id\": null,\n                        \"entity_id\": null,\n                        \"country_id\": null\n                    }\n                ]\n            },\n            \"issue_sub_category\": \"\",\n            \"image_url\": [\n                \"https://s3.ap-south-1.amazonaws.com/cdn.pulsepro.ai/issues/1/base/0/0/56/14525_1755527717.jpg\"\n            ]\n        }\n    ],\n    \"open_issues\": 1,\n    \"over_due_issues\": 0,\n    \"closed_issues\": 0,\n    \"onhold_issues\": 0,\n    \"high_priority_issues\": 2,\n    \"medium_priority_issues\": 3,\n    \"low_priority_issues\": 0,\n    \"total_count\": 5,\n    \"current_from_date\": \"17/08/2025\",\n    \"current_to_date\": \"27/08/2025\"\n}"}],"_postman_id":"7eabd9b7-7303-4156-9c85-9fe730a45939"},{"name":"Retrieve an issue.","id":"7f6694d1-2ffb-4e37-aef8-10eb256b57f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/issues/{{issue_id}}","description":"<p>This API helps you to retrieve the details of an issue.<br /></p>\n<p>You must specify the unique identifier of the issue as <code>issue_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>issue_id</td>\n<td>guid</td>\n<td>Unique identifier of the issue.</td>\n</tr>\n<tr>\n<td>issue_location_name</td>\n<td>string</td>\n<td>Name of location at which issue was reported.</td>\n</tr>\n<tr>\n<td>issue_location_id</td>\n<td>guid</td>\n<td>Id of location in which issue was reported.</td>\n</tr>\n<tr>\n<td>reported_at</td>\n<td>datetime</td>\n<td>Date on which issue was reported.</td>\n</tr>\n<tr>\n<td>deadline_date</td>\n<td>datetime</td>\n<td>Deadline date of the issue provided at the time of reporting the issue.</td>\n</tr>\n<tr>\n<td>issue_category_id</td>\n<td>string</td>\n<td>Id of category of the issue.</td>\n</tr>\n<tr>\n<td>issue_category_name</td>\n<td>string</td>\n<td>Name of category of the issue.</td>\n</tr>\n<tr>\n<td>issue_status</td>\n<td>string</td>\n<td>Status of the issue.</td>\n</tr>\n<tr>\n<td>issue_priority</td>\n<td>string</td>\n<td>Priority of the issue.</td>\n</tr>\n<tr>\n<td>assignee</td>\n<td>string</td>\n<td>Assignee of the issue.</td>\n</tr>\n<tr>\n<td>reported_by</td>\n<td>string</td>\n<td>Reporter of the issue.</td>\n</tr>\n<tr>\n<td>issue_title</td>\n<td>string</td>\n<td>Title of the issue.</td>\n</tr>\n<tr>\n<td>issue_description</td>\n<td>string</td>\n<td>Description of the issue.</td>\n</tr>\n<tr>\n<td>latitude</td>\n<td>double</td>\n<td>Geometric latitude of the location on which issue was reported.</td>\n</tr>\n<tr>\n<td>longitude</td>\n<td>double</td>\n<td>Geometric longitude of the location on which issue was reported.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","issues","{{issue_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"3248c991-61c1-49e6-b558-74dc5262dcb9","name":"Retrieve an issue.","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"url":"https://api.pulsepro.ai/v1/customer/issues/{{issue_id}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7f6694d1-2ffb-4e37-aef8-10eb256b57f8"}],"id":"6e6dfe70-8dc2-4397-a373-49ccd9e03e29","_postman_id":"6e6dfe70-8dc2-4397-a373-49ccd9e03e29","description":""},{"name":"User Groups","item":[{"name":"List all groups.","id":"539e24aa-2748-4a93-ad34-f67735a85cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","type":"text","description":"<p>An offset for filtering on groups.</p>\n"},{"key":"limit","value":"{{limit}}","type":"text","description":"<p>Total number of groups to be returned in response.</p>\n"}]},"url":"https://api.pulsepro.ai/v1/customer/groups/","description":"<p>This API helps you to retrieve the list of active groups of a customer.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>offset</td>\n<td>string</td>\n<td><code>Optonal</code><br /> An offset for filtering on groups.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td><code>Optonal</code><br /> Total number of groups to be returned in response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>guid</td>\n<td>Unique identifier of the group.</td>\n</tr>\n<tr>\n<td>group_name</td>\n<td>string</td>\n<td>Name of the group.</td>\n</tr>\n<tr>\n<td>member_count</td>\n<td>integer</td>\n<td>Count of active user present in this group.</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>datetime</td>\n<td>Time at which group was created.</td>\n</tr>\n<tr>\n<td>created_by</td>\n<td>string</td>\n<td>Name of the user who created the group.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","groups",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"1383d417-3225-4346-9b37-4ea76692007f","name":"List all groups.","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"body":{"mode":"formdata","formdata":[{"key":"offset","value":"{{offset}}","type":"text","description":"An offset for filtering on groups."},{"key":"limit","value":"{{limit}}","type":"text","description":"Total number of groups to be returned in response."}]},"url":"https://api.pulsepro.ai/v1/customer/groups/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"539e24aa-2748-4a93-ad34-f67735a85cda"},{"name":"Retrieve a group.","id":"c22121dd-5d4a-481c-bd21-46c61479e216","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/groups/{{group_id}}","description":"<p>This API helps you to retrieve the details of a group.<br /></p>\n<p>You must specify the unique identifier of the user as <code>group_id</code>.</p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>guid</td>\n<td>Unique identifier of the group.</td>\n</tr>\n<tr>\n<td>group_name</td>\n<td>string</td>\n<td>Name of the group.</td>\n</tr>\n<tr>\n<td>member_count</td>\n<td>integer</td>\n<td>Count of active user present in this group.</td>\n</tr>\n<tr>\n<td>members</td>\n<td>dict</td>\n<td>A list of dictionaries containing information of active members present in the group</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>datetime</td>\n<td>Time at which group was created.</td>\n</tr>\n<tr>\n<td>created_by</td>\n<td>string</td>\n<td>Name of the user who created the group.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","groups","{{group_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"d4dca185-3f25-421c-96fe-ff529875eea8","name":"Retrieve a group.","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"url":"https://api.pulsepro.ai/v1/customer/groups/{{group_id}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c22121dd-5d4a-481c-bd21-46c61479e216"},{"name":"Delete a group.","id":"b2738cbe-defa-4da0-9fdd-905e1f2b1058","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"url":"https://api.pulsepro.ai/v1/customer/delete_group/{{group_id}}","description":"<p>This API helps you to delete a group.<br /></p>\n<p>You must specify the unique identifier of the group as <code>group_id</code>.</p>\n","urlObject":{"path":["v1","customer","delete_group","{{group_id}}"],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"b54f7ae1-68ba-4673-b1f6-d71eab1d9c2d","name":"Delete a group.","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"url":"https://api.pulsepro.ai/v1/customer/delete_group/{{group_id}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b2738cbe-defa-4da0-9fdd-905e1f2b1058"},{"name":"Add a group.","id":"7b2a82bd-e69c-4ff2-b2d5-a4569c9ea079","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"<p>Access token generated from the token API.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"group_name","value":"{{group_name}}","description":"<p>Name of the new group.</p>\n","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/add_group/","description":"<p>This API helps you to add a new group.<br /></p>\n<h2 id=\"response-details\">Response Details</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>guid</td>\n<td>Unique identifier of the group.</td>\n</tr>\n<tr>\n<td>group_name</td>\n<td>string</td>\n<td>Name of the group.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customer","add_group",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"804791db-4579-468d-a63b-09dd7dbb367c","name":"Add a group.","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text","description":"Access token generated from the token API."}],"body":{"mode":"formdata","formdata":[{"key":"group_name","value":"{{group_name}}","description":"Name of the new group.","type":"text"}]},"url":"https://api.pulsepro.ai/v1/customer/add_group/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7b2a82bd-e69c-4ff2-b2d5-a4569c9ea079"}],"id":"5fd03a37-9ac3-4a36-8421-7cca83d33746","_postman_id":"5fd03a37-9ac3-4a36-8421-7cca83d33746","description":""},{"name":"Permission Set","item":[{"name":"Get All Permission Group With Permissions","id":"83da3258-6bab-4c9b-af33-862072a0ccec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"<p>Access token generated from the token API.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.pulsepro.ai/v1/customer/get_all_permission_groups_with_permissions/","urlObject":{"path":["v1","customer","get_all_permission_groups_with_permissions",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"6eab1086-c964-4ca1-b5f0-956a37349677","name":"get_all_permission_groups_with_permissions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","description":"Access token generated from the token API.","type":"text"}],"body":{"mode":"formdata","formdata":[],"options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_all_permission_groups_with_permissions/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 26 Aug 2025 22:25:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"8405"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"Platform Management\",\n        \"description\": \"Permissions under Platform Management\",\n        \"permissions\": [\n            {\n                \"id\": 4,\n                \"code\": \"manage_all_sites\",\n                \"is_full_access\": false,\n                \"description\": \"Sites Full Access(Can create, edit, delete, and manage all sites within the organization)\"\n            },\n            {\n                \"id\": 2,\n                \"code\": \"manage_all_users\",\n                \"is_full_access\": false,\n                \"description\": \"Users Full Access(Can add/edit/delete any user, change permissions, and assign permission sets and create user groups)\"\n            },\n            {\n                \"id\": 6,\n                \"code\": \"manage_api_keys\",\n                \"is_full_access\": false,\n                \"description\": \"Access API Keys(Can view, generate, or revoke API keys for third-party integrations)\"\n            },\n            {\n                \"id\": 7,\n                \"code\": \"manage_licenses\",\n                \"is_full_access\": false,\n                \"description\": \"Manage Licenses(Can view, activate, deactivate, and manage licenses for the organization)\"\n            },\n            {\n                \"id\": 1,\n                \"code\": \"manage_org_profile\",\n                \"is_full_access\": false,\n                \"description\": \"Manage Organization(Can edit organization details, settings, and profile information)\"\n            },\n            {\n                \"id\": 3,\n                \"code\": \"manage_permissions\",\n                \"is_full_access\": false,\n                \"description\": \"Permissions Management(Can create, edit, and manage permission groups and individual permissions)\"\n            },\n            {\n                \"id\": 5,\n                \"code\": \"manage_sites_access\",\n                \"is_full_access\": false,\n                \"description\": \"Manage Site Access(Can control which users have access to specific sites and their access levels)\"\n            }\n        ]\n    },\n    {\n        \"id\": 2,\n        \"name\": \"Templates\",\n        \"description\": \"Permissions under Templates\",\n        \"permissions\": [\n            {\n                \"id\": 9,\n                \"code\": \"manage_all_templates\",\n                \"is_full_access\": true,\n                \"description\": \"Manage All Templates(Can create, edit, delete, and manage all templates across the organization)\"\n            },\n            {\n                \"id\": 10,\n                \"code\": \"manage_own_templates\",\n                \"is_full_access\": false,\n                \"description\": \"Manage Own Templates(Can create, edit, and delete templates that they have created)\"\n            },\n            {\n                \"id\": 12,\n                \"code\": \"manage_templates_access\",\n                \"is_full_access\": false,\n                \"description\": \"Manage Template Access(Can control which users can view, edit, or use specific templates)\"\n            },\n            {\n                \"id\": 11,\n                \"code\": \"view_templates_comment_only\",\n                \"is_full_access\": false,\n                \"description\": \"View Templates(Can view templates and add comments, but cannot edit or modify them)\"\n            }\n        ]\n    },\n    {\n        \"id\": 3,\n        \"name\": \"Inspection Data\",\n        \"description\": \"Permissions under Inspection Data\",\n        \"permissions\": [\n            {\n                \"id\": 30,\n                \"code\": \"conduct_inspections\",\n                \"is_full_access\": false,\n                \"description\": \"Conduct Inspections(Can perform new inspections and submit inspection data)\"\n            },\n            {\n                \"id\": 39,\n                \"code\": \"delete_inspection\",\n                \"is_full_access\": false,\n                \"description\": \"Delete Inspection(Can permanently remove inspection records from the system)\"\n            },\n            {\n                \"id\": 32,\n                \"code\": \"download_reports\",\n                \"is_full_access\": false,\n                \"description\": \"Download Reports(Can view and download inspection reports data)\"\n            },\n            {\n                \"id\": 13,\n                \"code\": \"edit_inspections\",\n                \"is_full_access\": false,\n                \"description\": \"Edit Inspection Data(Can modify existing inspection records and data)\"\n            },\n            {\n                \"id\": 33,\n                \"code\": \"manage_qc_reports\",\n                \"is_full_access\": false,\n                \"description\": \"Manage QC Reports(Can manage quality control reports)\"\n            },\n            {\n                \"id\": 31,\n                \"code\": \"view_inspections\",\n                \"is_full_access\": false,\n                \"description\": \"View Inspections(Can view submitted inspections but cannot modify them)\"\n            }\n        ]\n    },\n    {\n        \"id\": 4,\n        \"name\": \"Schedules\",\n        \"description\": \"Permissions under Schedules\",\n        \"permissions\": [\n            {\n                \"id\": 15,\n                \"code\": \"manage_all_schedules\",\n                \"is_full_access\": true,\n                \"description\": \"Full Access to Schedules(Can create, edit, delete, and manage all schedules across the organization)\"\n            },\n            {\n                \"id\": 16,\n                \"code\": \"manage_own_schedules\",\n                \"is_full_access\": false,\n                \"description\": \"Manage Own Schedules(Can create, edit, and delete schedules that they have created)\"\n            },\n            {\n                \"id\": 17,\n                \"code\": \"view_schedules\",\n                \"is_full_access\": false,\n                \"description\": \"View Schedules(Can view schedules but cannot create, edit, or delete them)\"\n            }\n        ]\n    },\n    {\n        \"id\": 5,\n        \"name\": \"Actions\",\n        \"description\": \"Permissions under Actions\",\n        \"permissions\": [\n            {\n                \"id\": 18,\n                \"code\": \"manage_all_actions\",\n                \"is_full_access\": true,\n                \"description\": \"Full Access to Actions(Can create, edit, delete, and manage all actions across the organization)\"\n            },\n            {\n                \"id\": 22,\n                \"code\": \"change_action_assigned\",\n                \"is_full_access\": false,\n                \"description\": \"Change Action Assigned(Can reassign actions to different users or teams)\"\n            },\n            {\n                \"id\": 20,\n                \"code\": \"change_action_deadline\",\n                \"is_full_access\": false,\n                \"description\": \"Change Action Deadline(Can modify the due dates and deadlines for actions)\"\n            },\n            {\n                \"id\": 21,\n                \"code\": \"change_action_priority\",\n                \"is_full_access\": false,\n                \"description\": \"Change Action Priority(Can modify the priority level of actions)\"\n            },\n            {\n                \"id\": 37,\n                \"code\": \"resolve_action\",\n                \"is_full_access\": false,\n                \"description\": \"Resolve Action(Can mark actions as completed or resolved)\"\n            },\n            {\n                \"id\": 19,\n                \"code\": \"void_actions\",\n                \"is_full_access\": false,\n                \"description\": \"Void Actions(Can cancel or void actions that are no longer needed)\"\n            }\n        ]\n    },\n    {\n        \"id\": 6,\n        \"name\": \"Ticketing\",\n        \"description\": \"Permissions under Ticketing\",\n        \"permissions\": [\n            {\n                \"id\": 23,\n                \"code\": \"manage_ticketing\",\n                \"is_full_access\": true,\n                \"description\": \"Manage Ticketing System(Can create, edit, delete, and manage all aspects of the ticketing system)\"\n            },\n            {\n                \"id\": 27,\n                \"code\": \"change_ticket_assigned\",\n                \"is_full_access\": false,\n                \"description\": \"Change Ticket Assignee(Can reassign tickets to different users or teams)\"\n            },\n            {\n                \"id\": 25,\n                \"code\": \"change_ticket_deadline\",\n                \"is_full_access\": false,\n                \"description\": \"Change Ticket Deadline(Can modify the due dates and deadlines for tickets)\"\n            },\n            {\n                \"id\": 26,\n                \"code\": \"change_ticket_priority\",\n                \"is_full_access\": false,\n                \"description\": \"Change Ticket Priority(Can modify the priority level of tickets)\"\n            },\n            {\n                \"id\": 38,\n                \"code\": \"expense_approval\",\n                \"is_full_access\": false,\n                \"description\": \"Expense Approval(Can approve or reject expense-related tickets and requests)\"\n            },\n            {\n                \"id\": 34,\n                \"code\": \"raise_ticket\",\n                \"is_full_access\": false,\n                \"description\": \"Create Ticket(Can create new tickets and submit support requests)\"\n            },\n            {\n                \"id\": 49,\n                \"code\": \"resolve_ticket\",\n                \"is_full_access\": false,\n                \"description\": \"Resolve Ticket(Can view and resolve existing Ticket)\"\n            },\n            {\n                \"id\": 24,\n                \"code\": \"void_tickets\",\n                \"is_full_access\": false,\n                \"description\": \"Void Tickets(Can cancel or void tickets that are no longer needed)\"\n            }\n        ]\n    },\n    {\n        \"id\": 7,\n        \"name\": \"Notifications\",\n        \"description\": \"Permissions under Notifications\",\n        \"permissions\": [\n            {\n                \"id\": 28,\n                \"code\": \"manage_notifications\",\n                \"is_full_access\": true,\n                \"description\": \"Manage Notifications(Can configure, enable, disable, and manage all notification settings)\"\n            },\n            {\n                \"id\": 29,\n                \"code\": \"disable_user_notifications\",\n                \"is_full_access\": false,\n                \"description\": \"Disable User Notifications(Can turn off notifications for their own user account)\"\n            }\n        ]\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Export Management\",\n        \"description\": \"Permissions under Export\",\n        \"permissions\": [\n            {\n                \"id\": 47,\n                \"code\": \"analytics_export\",\n                \"is_full_access\": false,\n                \"description\": \"Export Analytics Data (Can export analytics data)\"\n            },\n            {\n                \"id\": 42,\n                \"code\": \"export_action\",\n                \"is_full_access\": false,\n                \"description\": \"Export Action Data (Can export action data)\"\n            },\n            {\n                \"id\": 43,\n                \"code\": \"export_incident\",\n                \"is_full_access\": false,\n                \"description\": \"Export Incident Data (Can export incident reports)\"\n            },\n            {\n                \"id\": 44,\n                \"code\": \"export_report\",\n                \"is_full_access\": false,\n                \"description\": \"Export Report Data (Can export inspection reports)\"\n            },\n            {\n                \"id\": 45,\n                \"code\": \"export_ticket\",\n                \"is_full_access\": false,\n                \"description\": \"Export Ticket Data (Can export ticket data)\"\n            },\n            {\n                \"id\": 48,\n                \"code\": \"license_export\",\n                \"is_full_access\": false,\n                \"description\": \"Export License Data (Can export license data)\"\n            },\n            {\n                \"id\": 36,\n                \"code\": \"view_export\",\n                \"is_full_access\": false,\n                \"description\": \"View Export Data(Can access and view export functionality and download exported data)\"\n            }\n        ]\n    },\n    {\n        \"id\": 9,\n        \"name\": \"Analytics Management\",\n        \"description\": \"Permissions under Analytics\",\n        \"permissions\": [\n            {\n                \"id\": 35,\n                \"code\": \"view_analytics\",\n                \"is_full_access\": false,\n                \"description\": \"View Analytics(Can access and view analytics dashboards, reports, and performance metrics)\"\n            }\n        ]\n    },\n    {\n        \"id\": 10,\n        \"name\": \"Incident Management\",\n        \"description\": \"Permissions under Inspection Incident\",\n        \"permissions\": [\n            {\n                \"id\": 40,\n                \"code\": \"manage_incidents_template\",\n                \"is_full_access\": true,\n                \"description\": \"Manage Incidents(Can create, edit, delete, and manage all incident templates and reports)\"\n            },\n            {\n                \"id\": 46,\n                \"code\": \"download_incident_report\",\n                \"is_full_access\": false,\n                \"description\": \"Download Incident Reports(Can view and download incident reports data)\"\n            },\n            {\n                \"id\": 14,\n                \"code\": \"edit_incident_reports\",\n                \"is_full_access\": false,\n                \"description\": \"Edit Incident Reports(Can modify existing incident reports and data)\"\n            },\n            {\n                \"id\": 8,\n                \"code\": \"manage_incidents\",\n                \"is_full_access\": false,\n                \"description\": \"View/Raise Incidents(Can view existing incidents and create new incident reports)\"\n            },\n            {\n                \"id\": 41,\n                \"code\": \"resolve_incident\",\n                \"is_full_access\": false,\n                \"description\": \"Resolve Incidents(Can view and resolve existing incidents)\"\n            }\n        ]\n    }\n]"}],"_postman_id":"83da3258-6bab-4c9b-af33-862072a0ccec"},{"name":"Delete Permission Bundle","id":"80689d95-25b6-4732-a73a-56b841e1689c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/delete_permission_bundle/<bundle_id>/","urlObject":{"path":["v1","customer","delete_permission_bundle","<bundle_id>",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"b4dc19e6-0e80-4a3b-8d51-5950f421a496","name":"delete_permission_bundle","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/delete_permission_bundle/26480/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 26 Aug 2025 22:27:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Permission bundle deleted successfully.\"\n}"}],"_postman_id":"80689d95-25b6-4732-a73a-56b841e1689c"},{"name":"Copy Permission Bundle","id":"9b188d6e-1097-4f55-a912-94e9a7853109","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source_bundle_id","value":"","type":"text","uuid":"a9ffadfd-6a65-4bc7-b379-bd51e7c0f520"},{"key":"new_bundle_name","value":"","type":"text","uuid":"8f52bd0b-e0bc-42dc-8298-e9410586b309"},{"key":"new_description","value":"","type":"text","uuid":"3943f904-943c-4ee1-a5c7-817250487f08"}]},"url":"https://api.pulsepro.ai/v1/customer/copy_permission_bundle/","urlObject":{"path":["v1","customer","copy_permission_bundle",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"2b9b4f08-ddcf-4db9-91a2-53255c247460","name":"copy_permission_bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"source_bundle_id","value":"","type":"text","uuid":"a9ffadfd-6a65-4bc7-b379-bd51e7c0f520"},{"key":"new_bundle_name","value":"","type":"text","uuid":"8f52bd0b-e0bc-42dc-8298-e9410586b309"},{"key":"new_description","value":"","type":"text","uuid":"3943f904-943c-4ee1-a5c7-817250487f08"}]},"url":"https://api.pulsepro.ai/v1/customer/copy_permission_bundle/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 26 Aug 2025 22:28:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"64"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Source bundle ID and new bundle name are required.\"\n}"}],"_postman_id":"9b188d6e-1097-4f55-a912-94e9a7853109"},{"name":"Get All Permission Bundles","id":"de562e7c-a4b9-4389-9123-d2bf11a8e08e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/get_all_customer_permission_bundles/","urlObject":{"path":["v1","customer","get_all_customer_permission_bundles",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"108d2a02-ada1-4001-9f63-0dd3773e2d74","name":"get_all_customer_permission_bundles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"url":"https://api.pulsepro.ai/v1/customer/get_all_customer_permission_bundles/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Tue, 26 Aug 2025 22:28:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"17588"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"OPTIONS, GET"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 8747,\n        \"name\": \"Admin\",\n        \"description\": \"Full platform access - Master administrator with all permissions\",\n        \"permissions\": [\n            {\n                \"id\": 1,\n                \"code\": \"manage_org_profile\",\n                \"description\": \"Manage Organization(Can edit organization details, settings, and profile information)\"\n            },\n            {\n                \"id\": 8,\n                \"code\": \"manage_incidents\",\n                \"description\": \"View/Raise Incidents(Can view existing incidents and create new incident reports)\"\n            },\n            {\n                \"id\": 10,\n                \"code\": \"manage_own_templates\",\n                \"description\": \"Manage Own Templates(Can create, edit, and delete templates that they have created)\"\n            },\n            {\n                \"id\": 11,\n                \"code\": \"view_templates_comment_only\",\n                \"description\": \"View Templates(Can view templates and add comments, but cannot edit or modify them)\"\n            },\n            {\n                \"id\": 12,\n                \"code\": \"manage_templates_access\",\n                \"description\": \"Manage Template Access(Can control which users can view, edit, or use specific templates)\"\n            },\n            {\n                \"id\": 14,\n                \"code\": \"edit_incident_reports\",\n                \"description\": \"Edit Incident Reports(Can modify existing incident reports and data)\"\n            },\n            {\n                \"id\": 16,\n                \"code\": \"manage_own_schedules\",\n                \"description\": \"Manage Own Schedules(Can create, edit, and delete schedules that they have created)\"\n            },\n            {\n                \"id\": 17,\n                \"code\": \"view_schedules\",\n                \"description\": \"View Schedules(Can view schedules but cannot create, edit, or delete them)\"\n            },\n            {\n                \"id\": 19,\n                \"code\": \"void_actions\",\n                \"description\": \"Void Actions(Can cancel or void actions that are no longer needed)\"\n            },\n            {\n                \"id\": 20,\n                \"code\": \"change_action_deadline\",\n                \"description\": \"Change Action Deadline(Can modify the due dates and deadlines for actions)\"\n            },\n            {\n                \"id\": 21,\n                \"code\": \"change_action_priority\",\n                \"description\": \"Change Action Priority(Can modify the priority level of actions)\"\n            },\n            {\n                \"id\": 22,\n                \"code\": \"change_action_assigned\",\n                \"description\": \"Change Action Assigned(Can reassign actions to different users or teams)\"\n            },\n            {\n                \"id\": 24,\n                \"code\": \"void_tickets\",\n                \"description\": \"Void Tickets(Can cancel or void tickets that are no longer needed)\"\n            },\n            {\n                \"id\": 25,\n                \"code\": \"change_ticket_deadline\",\n                \"description\": \"Change Ticket Deadline(Can modify the due dates and deadlines for tickets)\"\n            },\n            {\n                \"id\": 26,\n                \"code\": \"change_ticket_priority\",\n                \"description\": \"Change Ticket Priority(Can modify the priority level of tickets)\"\n            },\n            {\n                \"id\": 27,\n                \"code\": \"change_ticket_assigned\",\n                \"description\": \"Change Ticket Assignee(Can reassign tickets to different users or teams)\"\n            },\n            {\n                \"id\": 29,\n                \"code\": \"disable_user_notifications\",\n                \"description\": \"Disable User Notifications(Can turn off notifications for their own user account)\"\n            },\n            {\n                \"id\": 30,\n                \"code\": \"conduct_inspections\",\n                \"description\": \"Conduct Inspections(Can perform new inspections and submit inspection data)\"\n            },\n            {\n                \"id\": 31,\n                \"code\": \"view_inspections\",\n                \"description\": \"View Inspections(Can view submitted inspections but cannot modify them)\"\n            },\n            {\n                \"id\": 32,\n                \"code\": \"download_reports\",\n                \"description\": \"Download Reports(Can view and download inspection reports data)\"\n            },\n            {\n                \"id\": 33,\n                \"code\": \"manage_qc_reports\",\n                \"description\": \"Manage QC Reports(Can manage quality control reports)\"\n            },\n            {\n                \"id\": 34,\n                \"code\": \"raise_ticket\",\n                \"description\": \"Create Ticket(Can create new tickets and submit support requests)\"\n            },\n            {\n                \"id\": 35,\n                \"code\": \"view_analytics\",\n                \"description\": \"View Analytics(Can access and view analytics dashboards, reports, and performance metrics)\"\n            },\n            {\n                \"id\": 36,\n                \"code\": \"view_export\",\n                \"description\": \"View Export Data(Can access and view export functionality and download exported data)\"\n            },\n            {\n                \"id\": 37,\n                \"code\": \"resolve_action\",\n                \"description\": \"Resolve Action(Can mark actions as completed or resolved)\"\n            },\n            {\n                \"id\": 38,\n                \"code\": \"expense_approval\",\n                \"description\": \"Expense Approval(Can approve or reject expense-related tickets and requests)\"\n            },\n            {\n                \"id\": 39,\n                \"code\": \"delete_inspection\",\n                \"description\": \"Delete Inspection(Can permanently remove inspection records from the system)\"\n            },\n            {\n                \"id\": 41,\n                \"code\": \"resolve_incident\",\n                \"description\": \"Resolve Incidents(Can view and resolve existing incidents)\"\n            },\n            {\n                \"id\": 42,\n                \"code\": \"export_action\",\n                \"description\": \"Export Action Data (Can export action data)\"\n            },\n            {\n                \"id\": 43,\n                \"code\": \"export_incident\",\n                \"description\": \"Export Incident Data (Can export incident reports)\"\n            },\n            {\n                \"id\": 44,\n                \"code\": \"export_report\",\n                \"description\": \"Export Report Data (Can export inspection reports)\"\n            },\n            {\n                \"id\": 45,\n                \"code\": \"export_ticket\",\n                \"description\": \"Export Ticket Data (Can export ticket data)\"\n            },\n            {\n                \"id\": 47,\n                \"code\": \"analytics_export\",\n                \"description\": \"Export Analytics Data (Can export analytics data)\"\n            },\n            {\n                \"id\": 48,\n                \"code\": \"license_export\",\n                \"description\": \"Export License Data (Can export license data)\"\n            },\n            {\n                \"id\": 46,\n                \"code\": \"download_incident_report\",\n                \"description\": \"Download Incident Reports(Can view and download incident reports data)\"\n            },\n            {\n                \"id\": 13,\n                \"code\": \"edit_inspections\",\n                \"description\": \"Edit Inspection Data(Can modify existing inspection records and data)\"\n            },\n            {\n                \"id\": 9,\n                \"code\": \"manage_all_templates\",\n                \"description\": \"Manage All Templates(Can create, edit, delete, and manage all templates across the organization)\"\n            },\n            {\n                \"id\": 15,\n                \"code\": \"manage_all_schedules\",\n                \"description\": \"Full Access to Schedules(Can create, edit, delete, and manage all schedules across the organization)\"\n            },\n            {\n                \"id\": 18,\n                \"code\": \"manage_all_actions\",\n                \"description\": \"Full Access to Actions(Can create, edit, delete, and manage all actions across the organization)\"\n            },\n            {\n                \"id\": 23,\n                \"code\": \"manage_ticketing\",\n                \"description\": \"Manage Ticketing System(Can create, edit, delete, and manage all aspects of the ticketing system)\"\n            },\n            {\n                \"id\": 28,\n                \"code\": \"manage_notifications\",\n                \"description\": \"Manage Notifications(Can configure, enable, disable, and manage all notification settings)\"\n            },\n            {\n                \"id\": 2,\n                \"code\": \"manage_all_users\",\n                \"description\": \"Users Full Access(Can add/edit/delete any user, change permissions, and assign permission sets and create user groups)\"\n            },\n            {\n                \"id\": 3,\n                \"code\": \"manage_permissions\",\n                \"description\": \"Permissions Management(Can create, edit, and manage permission groups and individual permissions)\"\n            },\n            {\n                \"id\": 4,\n                \"code\": \"manage_all_sites\",\n                \"description\": \"Sites Full Access(Can create, edit, delete, and manage all sites within the organization)\"\n            },\n            {\n                \"id\": 5,\n                \"code\": \"manage_sites_access\",\n                \"description\": \"Manage Site Access(Can control which users have access to specific sites and their access levels)\"\n            },\n            {\n                \"id\": 6,\n                \"code\": \"manage_api_keys\",\n                \"description\": \"Access API Keys(Can view, generate, or revoke API keys for third-party integrations)\"\n            },\n            {\n                \"id\": 7,\n                \"code\": \"manage_licenses\",\n                \"description\": \"Manage Licenses(Can view, activate, deactivate, and manage licenses for the organization)\"\n            },\n            {\n                \"id\": 49,\n                \"code\": \"resolve_ticket\",\n                \"description\": \"Resolve Ticket(Can view and resolve existing Ticket)\"\n            },\n            {\n                \"id\": 40,\n                \"code\": \"manage_incidents_template\",\n                \"description\": \"Manage Incidents(Can create, edit, delete, and manage all incident templates and reports)\"\n            }\n        ],\n        \"is_default\": true,\n        \"is_editable\": false,\n        \"is_global\": false\n    },\n    {\n        \"id\": 26241,\n        \"name\": \"Field User\",\n        \"description\": \"Basic field user access - Can conduct inspections, raise tickets, and view assigned actions\",\n        \"permissions\": [\n            {\n                \"id\": 8,\n                \"code\": \"manage_incidents\",\n                \"description\": \"View/Raise Incidents(Can view existing incidents and create new incident reports)\"\n            },\n            {\n                \"id\": 20,\n                \"code\": \"change_action_deadline\",\n                \"description\": \"Change Action Deadline(Can modify the due dates and deadlines for actions)\"\n            },\n            {\n                \"id\": 21,\n                \"code\": \"change_action_priority\",\n                \"description\": \"Change Action Priority(Can modify the priority level of actions)\"\n            },\n            {\n                \"id\": 22,\n                \"code\": \"change_action_assigned\",\n                \"description\": \"Change Action Assigned(Can reassign actions to different users or teams)\"\n            },\n            {\n                \"id\": 25,\n                \"code\": \"change_ticket_deadline\",\n                \"description\": \"Change Ticket Deadline(Can modify the due dates and deadlines for tickets)\"\n            },\n            {\n                \"id\": 26,\n                \"code\": \"change_ticket_priority\",\n                \"description\": \"Change Ticket Priority(Can modify the priority level of tickets)\"\n            },\n            {\n                \"id\": 27,\n                \"code\": \"change_ticket_assigned\",\n                \"description\": \"Change Ticket Assignee(Can reassign tickets to different users or teams)\"\n            },\n            {\n                \"id\": 30,\n                \"code\": \"conduct_inspections\",\n                \"description\": \"Conduct Inspections(Can perform new inspections and submit inspection data)\"\n            },\n            {\n                \"id\": 31,\n                \"code\": \"view_inspections\",\n                \"description\": \"View Inspections(Can view submitted inspections but cannot modify them)\"\n            },\n            {\n                \"id\": 32,\n                \"code\": \"download_reports\",\n                \"description\": \"Download Reports(Can view and download inspection reports data)\"\n            },\n            {\n                \"id\": 34,\n                \"code\": \"raise_ticket\",\n                \"description\": \"Create Ticket(Can create new tickets and submit support requests)\"\n            },\n            {\n                \"id\": 35,\n                \"code\": \"view_analytics\",\n                \"description\": \"View Analytics(Can access and view analytics dashboards, reports, and performance metrics)\"\n            },\n            {\n                \"id\": 36,\n                \"code\": \"view_export\",\n                \"description\": \"View Export Data(Can access and view export functionality and download exported data)\"\n            },\n            {\n                \"id\": 37,\n                \"code\": \"resolve_action\",\n                \"description\": \"Resolve Action(Can mark actions as completed or resolved)\"\n            },\n            {\n                \"id\": 42,\n                \"code\": \"export_action\",\n                \"description\": \"Export Action Data (Can export action data)\"\n            },\n            {\n                \"id\": 43,\n                \"code\": \"export_incident\",\n                \"description\": \"Export Incident Data (Can export incident reports)\"\n            },\n            {\n                \"id\": 44,\n                \"code\": \"export_report\",\n                \"description\": \"Export Report Data (Can export inspection reports)\"\n            },\n            {\n                \"id\": 45,\n                \"code\": \"export_ticket\",\n                \"description\": \"Export Ticket Data (Can export ticket data)\"\n            },\n            {\n                \"id\": 47,\n                \"code\": \"analytics_export\",\n                \"description\": \"Export Analytics Data (Can export analytics data)\"\n            },\n            {\n                \"id\": 48,\n                \"code\": \"license_export\",\n                \"description\": \"Export License Data (Can export license data)\"\n            },\n            {\n                \"id\": 46,\n                \"code\": \"download_incident_report\",\n                \"description\": \"Download Incident Reports(Can view and download incident reports data)\"\n            },\n            {\n                \"id\": 7,\n                \"code\": \"manage_licenses\",\n                \"description\": \"Manage Licenses(Can view, activate, deactivate, and manage licenses for the organization)\"\n            },\n            {\n                \"id\": 41,\n                \"code\": \"resolve_incident\",\n                \"description\": \"Resolve Incidents(Can view and resolve existing incidents)\"\n            }\n        ],\n        \"is_default\": true,\n        \"is_editable\": false,\n        \"is_global\": false\n    },\n    {\n        \"id\": 17494,\n        \"name\": \"Manager\",\n        \"description\": \"Manager level access - Can create schedules, assign actions, review inspections, manage users at local/regional level\",\n        \"permissions\": [\n            {\n                \"id\": 8,\n                \"code\": \"manage_incidents\",\n                \"description\": \"View/Raise Incidents(Can view existing incidents and create new incident reports)\"\n            },\n            {\n                \"id\": 14,\n                \"code\": \"edit_incident_reports\",\n                \"description\": \"Edit Incident Reports(Can modify existing incident reports and data)\"\n            },\n            {\n                \"id\": 20,\n                \"code\": \"change_action_deadline\",\n                \"description\": \"Change Action Deadline(Can modify the due dates and deadlines for actions)\"\n            },\n            {\n                \"id\": 21,\n                \"code\": \"change_action_priority\",\n                \"description\": \"Change Action Priority(Can modify the priority level of actions)\"\n            },\n            {\n                \"id\": 22,\n                \"code\": \"change_action_assigned\",\n                \"description\": \"Change Action Assigned(Can reassign actions to different users or teams)\"\n            },\n            {\n                \"id\": 25,\n                \"code\": \"change_ticket_deadline\",\n                \"description\": \"Change Ticket Deadline(Can modify the due dates and deadlines for tickets)\"\n            },\n            {\n                \"id\": 26,\n                \"code\": \"change_ticket_priority\",\n                \"description\": \"Change Ticket Priority(Can modify the priority level of tickets)\"\n            },\n            {\n                \"id\": 27,\n                \"code\": \"change_ticket_assigned\",\n                \"description\": \"Change Ticket Assignee(Can reassign tickets to different users or teams)\"\n            },\n            {\n                \"id\": 30,\n                \"code\": \"conduct_inspections\",\n                \"description\": \"Conduct Inspections(Can perform new inspections and submit inspection data)\"\n            },\n            {\n                \"id\": 31,\n                \"code\": \"view_inspections\",\n                \"description\": \"View Inspections(Can view submitted inspections but cannot modify them)\"\n            },\n            {\n                \"id\": 32,\n                \"code\": \"download_reports\",\n                \"description\": \"Download Reports(Can view and download inspection reports data)\"\n            },\n            {\n                \"id\": 34,\n                \"code\": \"raise_ticket\",\n                \"description\": \"Create Ticket(Can create new tickets and submit support requests)\"\n            },\n            {\n                \"id\": 35,\n                \"code\": \"view_analytics\",\n                \"description\": \"View Analytics(Can access and view analytics dashboards, reports, and performance metrics)\"\n            },\n            {\n                \"id\": 36,\n                \"code\": \"view_export\",\n                \"description\": \"View Export Data(Can access and view export functionality and download exported data)\"\n            },\n            {\n                \"id\": 37,\n                \"code\": \"resolve_action\",\n                \"description\": \"Resolve Action(Can mark actions as completed or resolved)\"\n            },\n            {\n                \"id\": 41,\n                \"code\": \"resolve_incident\",\n                \"description\": \"Resolve Incidents(Can view and resolve existing incidents)\"\n            },\n            {\n                \"id\": 42,\n                \"code\": \"export_action\",\n                \"description\": \"Export Action Data (Can export action data)\"\n            },\n            {\n                \"id\": 43,\n                \"code\": \"export_incident\",\n                \"description\": \"Export Incident Data (Can export incident reports)\"\n            },\n            {\n                \"id\": 44,\n                \"code\": \"export_report\",\n                \"description\": \"Export Report Data (Can export inspection reports)\"\n            },\n            {\n                \"id\": 45,\n                \"code\": \"export_ticket\",\n                \"description\": \"Export Ticket Data (Can export ticket data)\"\n            },\n            {\n                \"id\": 47,\n                \"code\": \"analytics_export\",\n                \"description\": \"Export Analytics Data (Can export analytics data)\"\n            },\n            {\n                \"id\": 48,\n                \"code\": \"license_export\",\n                \"description\": \"Export License Data (Can export license data)\"\n            },\n            {\n                \"id\": 46,\n                \"code\": \"download_incident_report\",\n                \"description\": \"Download Incident Reports(Can view and download incident reports data)\"\n            },\n            {\n                \"id\": 23,\n                \"code\": \"manage_ticketing\",\n                \"description\": \"Manage Ticketing System(Can create, edit, delete, and manage all aspects of the ticketing system)\"\n            },\n            {\n                \"id\": 7,\n                \"code\": \"manage_licenses\",\n                \"description\": \"Manage Licenses(Can view, activate, deactivate, and manage licenses for the organization)\"\n            },\n            {\n                \"id\": 49,\n                \"code\": \"resolve_ticket\",\n                \"description\": \"Resolve Ticket(Can view and resolve existing Ticket)\"\n            }\n        ],\n        \"is_default\": true,\n        \"is_editable\": false,\n        \"is_global\": false\n    },\n    {\n        \"id\": 26252,\n        \"name\": \"Manager (Copy)\",\n        \"description\": \"Manager level access - Can create schedules, assign actions, review inspections, manage users at local/regional level (Copy)\",\n        \"permissions\": [\n            {\n                \"id\": 20,\n                \"code\": \"change_action_deadline\",\n                \"description\": \"Change Action Deadline(Can modify the due dates and deadlines for actions)\"\n            },\n            {\n                \"id\": 21,\n                \"code\": \"change_action_priority\",\n                \"description\": \"Change Action Priority(Can modify the priority level of actions)\"\n            },\n            {\n                \"id\": 22,\n                \"code\": \"change_action_assigned\",\n                \"description\": \"Change Action Assigned(Can reassign actions to different users or teams)\"\n            },\n            {\n                \"id\": 37,\n                \"code\": \"resolve_action\",\n                \"description\": \"Resolve Action(Can mark actions as completed or resolved)\"\n            },\n            {\n                \"id\": 18,\n                \"code\": \"manage_all_actions\",\n                \"description\": \"Full Access to Actions(Can create, edit, delete, and manage all actions across the organization)\"\n            },\n            {\n                \"id\": 19,\n                \"code\": \"void_actions\",\n                \"description\": \"Void Actions(Can cancel or void actions that are no longer needed)\"\n            }\n        ],\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"is_global\": false\n    },\n    {\n        \"id\": 26333,\n        \"name\": \"Mobile Implementation\",\n        \"description\": \"Nobody change this\",\n        \"permissions\": [\n            {\n                \"id\": 31,\n                \"code\": \"view_inspections\",\n                \"description\": \"View Inspections(Can view submitted inspections but cannot modify them)\"\n            },\n            {\n                \"id\": 40,\n                \"code\": \"manage_incidents_template\",\n                \"description\": \"Manage Incidents(Can create, edit, delete, and manage all incident templates and reports)\"\n            },\n            {\n                \"id\": 23,\n                \"code\": \"manage_ticketing\",\n                \"description\": \"Manage Ticketing System(Can create, edit, delete, and manage all aspects of the ticketing system)\"\n            },\n            {\n                \"id\": 18,\n                \"code\": \"manage_all_actions\",\n                \"description\": \"Full Access to Actions(Can create, edit, delete, and manage all actions across the organization)\"\n            },\n            {\n                \"id\": 35,\n                \"code\": \"view_analytics\",\n                \"description\": \"View Analytics(Can access and view analytics dashboards, reports, and performance metrics)\"\n            }\n        ],\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"is_global\": false\n    },\n    {\n        \"id\": 26502,\n        \"name\": \"Pulse Testing\",\n        \"description\": \"Tickting Permission\",\n        \"permissions\": [\n            {\n                \"id\": 7,\n                \"code\": \"manage_licenses\",\n                \"description\": \"Manage Licenses(Can view, activate, deactivate, and manage licenses for the organization)\"\n            },\n            {\n                \"id\": 8,\n                \"code\": \"manage_incidents\",\n                \"description\": \"View/Raise Incidents(Can view existing incidents and create new incident reports)\"\n            },\n            {\n                \"id\": 20,\n                \"code\": \"change_action_deadline\",\n                \"description\": \"Change Action Deadline(Can modify the due dates and deadlines for actions)\"\n            },\n            {\n                \"id\": 21,\n                \"code\": \"change_action_priority\",\n                \"description\": \"Change Action Priority(Can modify the priority level of actions)\"\n            },\n            {\n                \"id\": 22,\n                \"code\": \"change_action_assigned\",\n                \"description\": \"Change Action Assigned(Can reassign actions to different users or teams)\"\n            },\n            {\n                \"id\": 25,\n                \"code\": \"change_ticket_deadline\",\n                \"description\": \"Change Ticket Deadline(Can modify the due dates and deadlines for tickets)\"\n            },\n            {\n                \"id\": 26,\n                \"code\": \"change_ticket_priority\",\n                \"description\": \"Change Ticket Priority(Can modify the priority level of tickets)\"\n            },\n            {\n                \"id\": 27,\n                \"code\": \"change_ticket_assigned\",\n                \"description\": \"Change Ticket Assignee(Can reassign tickets to different users or teams)\"\n            },\n            {\n                \"id\": 30,\n                \"code\": \"conduct_inspections\",\n                \"description\": \"Conduct Inspections(Can perform new inspections and submit inspection data)\"\n            },\n            {\n                \"id\": 31,\n                \"code\": \"view_inspections\",\n                \"description\": \"View Inspections(Can view submitted inspections but cannot modify them)\"\n            },\n            {\n                \"id\": 32,\n                \"code\": \"download_reports\",\n                \"description\": \"Download Reports(Can view and download inspection reports data)\"\n            },\n            {\n                \"id\": 34,\n                \"code\": \"raise_ticket\",\n                \"description\": \"Create Ticket(Can create new tickets and submit support requests)\"\n            },\n            {\n                \"id\": 35,\n                \"code\": \"view_analytics\",\n                \"description\": \"View Analytics(Can access and view analytics dashboards, reports, and performance metrics)\"\n            },\n            {\n                \"id\": 36,\n                \"code\": \"view_export\",\n                \"description\": \"View Export Data(Can access and view export functionality and download exported data)\"\n            },\n            {\n                \"id\": 37,\n                \"code\": \"resolve_action\",\n                \"description\": \"Resolve Action(Can mark actions as completed or resolved)\"\n            },\n            {\n                \"id\": 41,\n                \"code\": \"resolve_incident\",\n                \"description\": \"Resolve Incidents(Can view and resolve existing incidents)\"\n            },\n            {\n                \"id\": 42,\n                \"code\": \"export_action\",\n                \"description\": \"Export Action Data (Can export action data)\"\n            },\n            {\n                \"id\": 43,\n                \"code\": \"export_incident\",\n                \"description\": \"Export Incident Data (Can export incident reports)\"\n            },\n            {\n                \"id\": 44,\n                \"code\": \"export_report\",\n                \"description\": \"Export Report Data (Can export inspection reports)\"\n            },\n            {\n                \"id\": 45,\n                \"code\": \"export_ticket\",\n                \"description\": \"Export Ticket Data (Can export ticket data)\"\n            },\n            {\n                \"id\": 46,\n                \"code\": \"download_incident_report\",\n                \"description\": \"Download Incident Reports(Can view and download incident reports data)\"\n            },\n            {\n                \"id\": 47,\n                \"code\": \"analytics_export\",\n                \"description\": \"Export Analytics Data (Can export analytics data)\"\n            },\n            {\n                \"id\": 48,\n                \"code\": \"license_export\",\n                \"description\": \"Export License Data (Can export license data)\"\n            }\n        ],\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"is_global\": false\n    }\n]"}],"_postman_id":"de562e7c-a4b9-4389-9123-d2bf11a8e08e"}],"id":"2b27d080-e43b-4c13-a51d-c85a2631f81e","_postman_id":"2b27d080-e43b-4c13-a51d-c85a2631f81e","description":""},{"name":"Incidents","item":[{"name":"Get All Incident Templates","id":"49381193-b7c0-48b8-b4b9-62f85a167196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"limit\": 10,\n    \"offset\": 0,\n    \"template_status\": \"Active\",\n    \"orderDir\": \"desc\",\n    \"orderBy\": \"id\",\n    \"search_keyword\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_all_incident_templates/","urlObject":{"path":["v1","customer","get_all_incident_templates",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"d5983c23-5daa-4873-a248-eba941773b84","name":"Get All Incident Template","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"limit\": 10,\n    \"offset\": 0,\n    \"template_status\": \"Active\",\n    \"orderDir\": \"desc\",\n    \"orderBy\": \"id\",\n    \"search_keyword\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_all_incident_templates/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Aug 2025 08:33:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"6082"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"forms\": [\n        {\n            \"details\": {\n                \"id\": 8596,\n                \"form_name\": \"checkQ1\",\n                \"schedule_name\": \"checkQ1\",\n                \"scheduled\": \"Yes\",\n                \"updated_at\": \"August 22, 2025\",\n                \"created_at\": \"August 22, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": 9916,\n                \"schedule_count\": 1,\n                \"mapped_group_list\": [],\n                \"frequency\": \"Adhoc\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"Adhoc\",\n                \"type\": \"details\"\n            },\n            \"response\": {\n                \"id\": 8597,\n                \"form_name\": \"checkQ2\",\n                \"schedule_name\": \"checkQ2\",\n                \"scheduled\": \"Yes\",\n                \"updated_at\": \"August 22, 2025\",\n                \"created_at\": \"August 22, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": 9917,\n                \"schedule_count\": 1,\n                \"mapped_group_list\": [],\n                \"frequency\": \"Adhoc\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"Adhoc\",\n                \"type\": \"response\"\n            }\n        },\n        {\n            \"details\": {\n                \"id\": 8587,\n                \"form_name\": \"gt1\",\n                \"schedule_name\": \"gt1\",\n                \"scheduled\": \"Yes\",\n                \"updated_at\": \"August 19, 2025\",\n                \"created_at\": \"August 19, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": 9899,\n                \"schedule_count\": 1,\n                \"mapped_group_list\": [],\n                \"frequency\": \"Adhoc\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"Adhoc\",\n                \"type\": \"details\"\n            },\n            \"response\": {\n                \"id\": 8588,\n                \"form_name\": \"gt2\",\n                \"schedule_name\": \"gt2\",\n                \"scheduled\": \"Yes\",\n                \"updated_at\": \"August 19, 2025\",\n                \"created_at\": \"August 19, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": 9900,\n                \"schedule_count\": 1,\n                \"mapped_group_list\": [],\n                \"frequency\": \"Adhoc\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"Adhoc\",\n                \"type\": \"response\"\n            }\n        },\n        {\n            \"details\": {\n                \"id\": 8577,\n                \"form_name\": \"Untitled Templatejhv\",\n                \"schedule_name\": \"-\",\n                \"scheduled\": \"No\",\n                \"updated_at\": \"August 14, 2025\",\n                \"created_at\": \"August 14, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": null,\n                \"schedule_count\": 0,\n                \"mapped_group_list\": [],\n                \"frequency\": \"-\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"-\",\n                \"type\": \"details\"\n            },\n            \"response\": {}\n        },\n        {\n            \"details\": {\n                \"id\": 8569,\n                \"form_name\": \"kush06\",\n                \"schedule_name\": \"-\",\n                \"scheduled\": \"No\",\n                \"updated_at\": \"August 12, 2025\",\n                \"created_at\": \"August 12, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": null,\n                \"schedule_count\": 0,\n                \"mapped_group_list\": [],\n                \"frequency\": \"-\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"-\",\n                \"type\": \"details\"\n            },\n            \"response\": {}\n        },\n        {\n            \"details\": {\n                \"id\": 8553,\n                \"form_name\": \"Untitled Template454\",\n                \"schedule_name\": \"-\",\n                \"scheduled\": \"No\",\n                \"updated_at\": \"August 08, 2025\",\n                \"created_at\": \"August 08, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": null,\n                \"schedule_count\": 0,\n                \"mapped_group_list\": [],\n                \"frequency\": \"-\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"-\",\n                \"type\": \"details\"\n            },\n            \"response\": {}\n        },\n        {\n            \"details\": {\n                \"id\": 8550,\n                \"form_name\": \"Untitled Templategfjhg\",\n                \"schedule_name\": \"Untitled Templategfjhg\",\n                \"scheduled\": \"Yes\",\n                \"updated_at\": \"August 08, 2025\",\n                \"created_at\": \"August 08, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": 9858,\n                \"schedule_count\": 1,\n                \"mapped_group_list\": [],\n                \"frequency\": \"Adhoc\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"Adhoc\",\n                \"type\": \"details\"\n            },\n            \"response\": {\n                \"id\": 8552,\n                \"form_name\": \"Untitled Template0656\",\n                \"schedule_name\": \"Untitled Template0656\",\n                \"scheduled\": \"Yes\",\n                \"updated_at\": \"August 08, 2025\",\n                \"created_at\": \"August 08, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": 9860,\n                \"schedule_count\": 1,\n                \"mapped_group_list\": [],\n                \"frequency\": \"Adhoc\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"Adhoc\",\n                \"type\": \"response\"\n            }\n        },\n        {\n            \"details\": {\n                \"id\": 8548,\n                \"form_name\": \"r1\",\n                \"schedule_name\": \"r1\",\n                \"scheduled\": \"Yes\",\n                \"updated_at\": \"August 08, 2025\",\n                \"created_at\": \"August 08, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": 9856,\n                \"schedule_count\": 1,\n                \"mapped_group_list\": [],\n                \"frequency\": \"Adhoc\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"Adhoc\",\n                \"type\": \"details\"\n            },\n            \"response\": {\n                \"id\": 8549,\n                \"form_name\": \"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh\",\n                \"schedule_name\": \"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh\",\n                \"scheduled\": \"Yes\",\n                \"updated_at\": \"August 08, 2025\",\n                \"created_at\": \"August 08, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": 9857,\n                \"schedule_count\": 1,\n                \"mapped_group_list\": [],\n                \"frequency\": \"Adhoc\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"Adhoc\",\n                \"type\": \"response\"\n            }\n        },\n        {\n            \"details\": {\n                \"id\": 8547,\n                \"form_name\": \"Untitled Template new\",\n                \"schedule_name\": \"-\",\n                \"scheduled\": \"No\",\n                \"updated_at\": \"August 08, 2025\",\n                \"created_at\": \"August 08, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": null,\n                \"schedule_count\": 0,\n                \"mapped_group_list\": [],\n                \"frequency\": \"-\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"-\",\n                \"type\": \"details\"\n            },\n            \"response\": {}\n        },\n        {\n            \"details\": {\n                \"id\": 8546,\n                \"form_name\": \"sp2\",\n                \"schedule_name\": \"-\",\n                \"scheduled\": \"No\",\n                \"updated_at\": \"August 08, 2025\",\n                \"created_at\": \"August 08, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": null,\n                \"schedule_count\": 0,\n                \"mapped_group_list\": [],\n                \"frequency\": \"-\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"-\",\n                \"type\": \"details\"\n            },\n            \"response\": {}\n        },\n        {\n            \"details\": {\n                \"id\": 8545,\n                \"form_name\": \"sp1\",\n                \"schedule_name\": \"-\",\n                \"scheduled\": \"No\",\n                \"updated_at\": \"August 08, 2025\",\n                \"created_at\": \"August 08, 2025\",\n                \"updated_by\": \"Pulse Test\",\n                \"created_by\": \"Pulse Test\",\n                \"isEmpty\": false,\n                \"sample_inspection_completed\": false,\n                \"inspection_id\": null,\n                \"schedule_count\": 0,\n                \"mapped_group_list\": [],\n                \"frequency\": \"-\",\n                \"has_multiple_languages\": false,\n                \"translated_frequency\": \"-\",\n                \"type\": \"details\"\n            },\n            \"response\": {}\n        }\n    ],\n    \"total_count\": 28,\n    \"showLanguageDropdown\": false,\n    \"form_exist\": true,\n    \"enableDepartmentWiseLayer\": false\n}"}],"_postman_id":"49381193-b7c0-48b8-b4b9-62f85a167196"},{"name":"Get All Raise Incident Report","id":"0af45942-928b-4eab-a78b-4ee80e819faa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"\",\n    \"location_list\": [],\n    \"search_keyword\": \"\",\n    \"limit\": 10,\n    \"offset\": 0,\n    \"orderDir\": \"desc\",\n    \"orderBy\": \"date_of_audit\",\n    \"from_date\": \"28/07/2025\",\n    \"to_date\": \"27/08/2025\",\n    \"checklistIds\": [],\n    \"regionIds\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_all_raise_incident_report/","urlObject":{"path":["v1","customer","get_all_raise_incident_report",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"5453d28b-73cd-4404-baec-70c378eba0de","name":"Get All Raise Incident Report","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"\",\n    \"location_list\": [],\n    \"search_keyword\": \"\",\n    \"limit\": 10,\n    \"offset\": 0,\n    \"orderDir\": \"desc\",\n    \"orderBy\": \"date_of_audit\",\n    \"from_date\": \"28/07/2025\",\n    \"to_date\": \"27/08/2025\",\n    \"checklistIds\": [],\n    \"regionIds\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_all_raise_incident_report/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Aug 2025 08:34:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3539"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 12504157,\n            \"project_name\": \"Untitled Templategfjhg\",\n            \"location\": \"14th Avenue\",\n            \"date_of_audit\": \"26 Aug 2025 3:45 a.m.\",\n            \"shop_id\": 12504157,\n            \"check_list\": \"Untitled Templategfjhg\",\n            \"submitted_by\": \"Tanvi\",\n            \"score\": 100,\n            \"max_score\": 1,\n            \"pdf_file_path\": null,\n            \"time_elapsed\": \"1 minute\",\n            \"project_logo\": \"\",\n            \"application_status\": \"Incomplete\",\n            \"report_url\": \"/customer/classic_report/12504157\",\n            \"is_non_scoring\": false,\n            \"translated_application_status\": \"Incomplete\",\n            \"flight_id\": \"NA\",\n            \"location_code\": \"\",\n            \"row_class\": false,\n            \"merged_row_id\": 0,\n            \"translate_from_response\": false,\n            \"percentage\": 100,\n            \"grade\": \"A\",\n            \"res_color\": \"#008000\",\n            \"report_tag_list\": [],\n            \"response_id\": null,\n            \"details_shop_id\": null,\n            \"project_id\": 9858,\n            \"location_id\": 38653\n        },\n        {\n            \"id\": 12469048,\n            \"project_name\": \"Untitled Templateoo\",\n            \"location\": \"14th Avenue\",\n            \"date_of_audit\": \"25 Aug 2025 7:49 a.m.\",\n            \"shop_id\": 12469048,\n            \"check_list\": \"Untitled Templateoo\",\n            \"submitted_by\": \"Tanvi\",\n            \"score\": 0,\n            \"max_score\": 1,\n            \"pdf_file_path\": null,\n            \"time_elapsed\": \"3 seconds\",\n            \"project_logo\": \"\",\n            \"application_status\": \"Incomplete\",\n            \"report_url\": \"/customer/classic_report/12469048\",\n            \"is_non_scoring\": false,\n            \"translated_application_status\": \"Incomplete\",\n            \"flight_id\": \"NA\",\n            \"location_code\": \"\",\n            \"row_class\": false,\n            \"merged_row_id\": 0,\n            \"translate_from_response\": false,\n            \"percentage\": 0,\n            \"grade\": \"C\",\n            \"res_color\": \"#FF0000\",\n            \"report_tag_list\": [],\n            \"response_id\": null,\n            \"details_shop_id\": null,\n            \"project_id\": 9725,\n            \"location_id\": 38653\n        },\n        {\n            \"id\": 12213720,\n            \"project_name\": \"Untitled Templategfjhg\",\n            \"location\": \"Abbanna Colony 1\",\n            \"date_of_audit\": \"18 Aug 2025 10:31 a.m.\",\n            \"shop_id\": 12213720,\n            \"check_list\": \"Untitled Templategfjhg\",\n            \"submitted_by\": \"Pulse\",\n            \"score\": 100,\n            \"max_score\": 1,\n            \"pdf_file_path\": null,\n            \"time_elapsed\": \"4 seconds\",\n            \"project_logo\": \"\",\n            \"application_status\": \"Approved\",\n            \"report_url\": \"/customer/classic_report/12213720\",\n            \"is_non_scoring\": false,\n            \"translated_application_status\": \"Approved\",\n            \"flight_id\": \"NA\",\n            \"location_code\": \"FFSTIR01\",\n            \"row_class\": false,\n            \"merged_row_id\": 0,\n            \"translate_from_response\": false,\n            \"percentage\": 100,\n            \"grade\": \"A\",\n            \"res_color\": \"#008000\",\n            \"report_tag_list\": [],\n            \"response_id\": 12215388,\n            \"details_shop_id\": null,\n            \"project_id\": 9858,\n            \"location_id\": 907\n        },\n        {\n            \"id\": 12081417,\n            \"project_name\": \"Untitled Templategfjhg\",\n            \"location\": \"Abbanna Colony 1\",\n            \"date_of_audit\": \"14 Aug 2025 10:17 a.m.\",\n            \"shop_id\": 12081417,\n            \"check_list\": \"Untitled Templategfjhg\",\n            \"submitted_by\": \"Pulse\",\n            \"score\": 0,\n            \"max_score\": 1,\n            \"pdf_file_path\": null,\n            \"time_elapsed\": \"5 seconds\",\n            \"project_logo\": \"\",\n            \"application_status\": \"Completed\",\n            \"report_url\": \"/customer/classic_report/12081417\",\n            \"is_non_scoring\": false,\n            \"translated_application_status\": \"Completed\",\n            \"flight_id\": \"NA\",\n            \"location_code\": \"FFSTIR01\",\n            \"row_class\": false,\n            \"merged_row_id\": 0,\n            \"translate_from_response\": false,\n            \"percentage\": 0,\n            \"grade\": \"C\",\n            \"res_color\": \"#FF0000\",\n            \"report_tag_list\": [],\n            \"response_id\": 12081418,\n            \"details_shop_id\": null,\n            \"project_id\": 9858,\n            \"location_id\": 907\n        },\n        {\n            \"id\": 11659013,\n            \"project_name\": \"temp 345\",\n            \"location\": \"14th Avenue\",\n            \"date_of_audit\": \"29 Jul 2025 9:11 a.m.\",\n            \"shop_id\": 11659013,\n            \"check_list\": \"temp 345\",\n            \"submitted_by\": \"Pulse\",\n            \"score\": 100,\n            \"max_score\": 1,\n            \"pdf_file_path\": null,\n            \"time_elapsed\": \"2 seconds\",\n            \"project_logo\": \"\",\n            \"application_status\": \"Approved\",\n            \"report_url\": \"/customer/classic_report/11659013\",\n            \"is_non_scoring\": false,\n            \"translated_application_status\": \"Approved\",\n            \"flight_id\": \"NA\",\n            \"location_code\": \"\",\n            \"row_class\": false,\n            \"merged_row_id\": 0,\n            \"translate_from_response\": false,\n            \"percentage\": 100,\n            \"grade\": \"A\",\n            \"res_color\": \"#008000\",\n            \"report_tag_list\": [],\n            \"response_id\": 11659016,\n            \"details_shop_id\": null,\n            \"project_id\": 9605,\n            \"location_id\": 38653\n        }\n    ],\n    \"total_count\": 5\n}"}],"_postman_id":"0af45942-928b-4eab-a78b-4ee80e819faa"},{"name":"Get All Response Incident Report","id":"f027eae2-59f2-47ff-bdcf-f0427012e410","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"\",\n    \"location_list\": [],\n    \"search_keyword\": \"\",\n    \"limit\": 10,\n    \"offset\": 0,\n    \"orderDir\": \"desc\",\n    \"orderBy\": \"date_of_audit\",\n    \"from_date\": \"28/07/2025\",\n    \"to_date\": \"27/08/2025\",\n    \"checklistIds\": [],\n    \"regionIds\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_all_response_incident_report/","urlObject":{"path":["v1","customer","get_all_response_incident_report",""],"host":["https://api.pulsepro.ai"],"query":[],"variable":[]}},"response":[{"id":"7ad858f2-c7d4-419e-8088-6e224cd777e1","name":"Get All Response Incident Report","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Api-key {{api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"\",\n    \"location_list\": [],\n    \"search_keyword\": \"\",\n    \"limit\": 10,\n    \"offset\": 0,\n    \"orderDir\": \"desc\",\n    \"orderBy\": \"date_of_audit\",\n    \"from_date\": \"28/07/2025\",\n    \"to_date\": \"27/08/2025\",\n    \"checklistIds\": [],\n    \"regionIds\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.pulsepro.ai/v1/customer/get_all_response_incident_report/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Date","value":"Wed, 27 Aug 2025 08:34:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2253"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept, Origin, Accept-Language, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Deployment-Version","value":"v2025.12.18"},{"key":"Access-Control-Expose-Headers","value":"X-Deployment-Version"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Language","value":"en"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Permissions-Policy","value":"geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 11659016,\n            \"project_name\": \"response temp 46\",\n            \"location\": \"14th Avenue\",\n            \"date_of_audit\": \"29 Jul 2025 9:12 a.m.\",\n            \"shop_id\": 11659016,\n            \"check_list\": \"response temp 46\",\n            \"submitted_by\": \"Pulse\",\n            \"score\": 100,\n            \"max_score\": 1,\n            \"pdf_file_path\": \"https://s3.ap-south-1.amazonaws.com/cdn.pulsepro.ai/reports/1/pdf/base/0/177/231/11659016_14th_Avenue.pdf\",\n            \"time_elapsed\": \"3 seconds\",\n            \"project_logo\": \"\",\n            \"application_status\": \"Approved\",\n            \"report_url\": \"/customer/classic_report/11659016\",\n            \"is_non_scoring\": false,\n            \"translated_application_status\": \"Approved\",\n            \"flight_id\": \"NA\",\n            \"location_code\": \"\",\n            \"row_class\": false,\n            \"merged_row_id\": 0,\n            \"translate_from_response\": false,\n            \"percentage\": 100,\n            \"grade\": \"A\",\n            \"res_color\": \"#008000\",\n            \"report_tag_list\": [],\n            \"response_id\": null,\n            \"details_shop_id\": 11659013,\n            \"project_id\": 9606,\n            \"location_id\": 38653\n        },\n        {\n            \"id\": 12215388,\n            \"project_name\": \"Untitled Template0656\",\n            \"location\": \"Abbanna Colony 1\",\n            \"date_of_audit\": \"18 Aug 2025 10:33 a.m.\",\n            \"shop_id\": 12215388,\n            \"check_list\": \"Untitled Template0656\",\n            \"submitted_by\": \"Ayuzh\",\n            \"score\": 100,\n            \"max_score\": 1,\n            \"pdf_file_path\": null,\n            \"time_elapsed\": \"5 seconds\",\n            \"project_logo\": \"\",\n            \"application_status\": \"Approved\",\n            \"report_url\": \"/customer/classic_report/12215388\",\n            \"is_non_scoring\": false,\n            \"translated_application_status\": \"Approved\",\n            \"flight_id\": \"NA\",\n            \"location_code\": \"FFSTIR01\",\n            \"row_class\": false,\n            \"merged_row_id\": 0,\n            \"translate_from_response\": false,\n            \"percentage\": 100,\n            \"grade\": \"A\",\n            \"res_color\": \"#008000\",\n            \"report_tag_list\": [],\n            \"response_id\": null,\n            \"details_shop_id\": 12213720,\n            \"project_id\": 9860,\n            \"location_id\": 907\n        },\n        {\n            \"id\": 12081418,\n            \"project_name\": \"Untitled Template0656\",\n            \"location\": \"Abbanna Colony 1\",\n            \"date_of_audit\": \"14 Aug 2025 10:17 a.m.\",\n            \"shop_id\": 12081418,\n            \"check_list\": \"Untitled Template0656\",\n            \"submitted_by\": \"Pulse\",\n            \"score\": 0,\n            \"max_score\": 1,\n            \"pdf_file_path\": null,\n            \"time_elapsed\": \"3 seconds\",\n            \"project_logo\": \"\",\n            \"application_status\": \"Completed\",\n            \"report_url\": \"/customer/classic_report/12081418\",\n            \"is_non_scoring\": false,\n            \"translated_application_status\": \"Completed\",\n            \"flight_id\": \"NA\",\n            \"location_code\": \"FFSTIR01\",\n            \"row_class\": false,\n            \"merged_row_id\": 0,\n            \"translate_from_response\": false,\n            \"percentage\": 0,\n            \"grade\": \"C\",\n            \"res_color\": \"#FF0000\",\n            \"report_tag_list\": [],\n            \"response_id\": null,\n            \"details_shop_id\": 12081417,\n            \"project_id\": 9860,\n            \"location_id\": 907\n        }\n    ],\n    \"total_count\": 3\n}"}],"_postman_id":"f027eae2-59f2-47ff-bdcf-f0427012e410"}],"id":"ba781323-43bf-4df8-b701-24519df16daf","_postman_id":"ba781323-43bf-4df8-b701-24519df16daf","description":""}],"event":[{"listen":"prerequest","script":{"id":"72630674-eee1-43f0-883e-a76e3df4a8db","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f1d14838-aa1d-4d28-b0eb-b95c75a54548","type":"text/javascript","exec":[""]}}],"variable":[{"key":"end_point_url","value":"https://api.pulsepro.ai","type":"string"}]}