{"info":{"_postman_id":"f4ea4782-b8e5-4ef8-a65d-701167d03b9d","name":"Kizen V2 API Docs","description":"<html><head></head><body><h1 id=\"about\">About</h1>\n<p>The KIZEN API is a JSON-based RESTful interface that allows developers to integrate KIZEN into their applications.</p>\n<p>You may access the API using any programming language or your command line through an HTTP client or Core API client.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Unless otherwise stated, all requests to the API require including the following headers: X-API-Key, X-User-Id, and X-Business-Id. API keys are created on a per-user basis and grant access to all businesses that the associated user has access to.</p>\n<p><strong>X-API-Key</strong>: Create and delete API keys on the <a href=\"https://go.kizen.com/account\">API Keys Settings Page.</a> API keys must be kept secret and must not be included in client-side code or shared outside of your organization.</p>\n<p><strong>X-User-Id</strong>: Your User ID is visible on the <a href=\"https://go.kizen.com/account\">API Keys Settings Page</a> at the bottom of the page. This value acts like your username and is not secret.</p>\n<p><strong>X-Business-Id</strong>: Visit the <a href=\"https://go.kizen.com/account\">API Keys Settings Page</a> where the current business ID is visible on the top right of the page. This value is required to associate your API request with the appropriate business and is not secret.</p>\n<p>The below Python example retrieves a paginated list of companies stored in the business's KIZEN account. You will need to add the appropriate values in AUTH_HEADERS.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>import requests\n\nAPI_ROOT = 'https://api.kizen.com'\nAUTH_HEADERS = {\n    'X-API-Key': '',\n    'X-User-Id': '',\n    'X-Business-Id': ''\n }\n\n response = requests.get(API_ROOT + '/company', headers=AUTH_HEADERS)\n</code></pre><h1 id=\"error-codes\">Error Codes</h1>\n<p>In almost all instances, details of your error will be clearly and explicitly stated in the response of the API request. Below are error codes that you can expect from the API.</p>\n<p>200 - OK</p>\n<p>201 - Created</p>\n<p>404 - Not Found</p>\n<p>405 - Method Not Allowed</p>\n<p>500 - Server Error</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>In some instances the amount of results returned in an API call has the potential to be too large to be returned in a single response. For these cases we employ a technique called pagination.</p>\n<p>Most list routes accept two URL parameters: page and page_size. These two parameters allow a request to specify how many results it will return (page_size) and which group of results to return (page). Unless otherwise specified page_size will be 1000 and page will be 1.import requests</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>import requests\n\nAPI_ROOT = 'https://api.kizen.com'\nAUTH_HEADERS = {\n    'X-API-Key': '',\n    'X-User-Id': '',\n    'X-Business-Id': ''\n  }\n\n names = []\n params = {\n     'page_size': 50,\n     'page': 1\n }\n\nwhile True:\n     response = requests.get(API_ROOT + '/company', params=params,        \n     headers=AUTH_HEADERS)\n     content = response.json()\n\n     for result in content['results']:\n        names.append(result['name'])\n\n     if content['next']:\n        params['page'] += 1\n     else:\n        break\n</code></pre><p>Every paginated response contains three attributes: previous, next, and results. previous and next will point to the previous/next page or null if that page doesn't exist. For example, if there are no more results then next will be null. results will be an array containing the page of results.</p>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>All API clients are limited to 25 requests per second. If you receive a 503 error code that means you have exceeded your rate limit.</p>\n<h1 id=\"base-url\">Base URL</h1>\n<p>The Base URL is <a href=\"https://app.go.kizen.com/api\">https://app.go.kizen.com/api</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"About","slug":"about"},{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"},{"content":"Pagination","slug":"pagination"},{"content":"Rate limit","slug":"rate-limit"},{"content":"Base URL","slug":"base-url"}],"owner":"7979800","collectionId":"f4ea4782-b8e5-4ef8-a65d-701167d03b9d","publishedId":"TVYJ6cmQ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"444444","highlight":"0376D9"},"publishDate":"2021-05-28T16:24:31.000Z"},"item":[{"name":"Activities","item":[{"name":"Log Activity","item":[{"name":"Complete an Activity","id":"926323c0-9fc4-46c2-8e6f-6bc538abed34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{X-API-Key}}"},{"key":"x-business-id","value":"{{X-Business-Id}}"},{"key":"x-user-id","value":"{{X-User-Id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"notes\": \"<p>Notes Field</p>\\n\",\n    \"related_objects\": [\n        {\n            \"custom_object\": \"{{custom_object_id}}\",\n            \"entity_id\": \"{{entity_record_id}}\"\n        }\n    ],\n    \"fields\": [\n        {\n            \"id\": \"{{custom_field_id}}\",\n            \"value\": \"Text Field Value\"\n        }\n    ]\n}"},"url":"{{API_URL}}/activities/{{activity_id}}/log-activity","description":"<p>This request allows you to complete an activity.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","name":"Activities","type":"folder"}},"urlObject":{"path":["activities","{{activity_id}}","log-activity"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"482383dd-39a5-4bb8-ab76-f3adb9cff09a","name":"Complete an Activity","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{X-API-Key}}"},{"key":"x-business-id","value":"{{X-Business-Id}}"},{"key":"x-user-id","value":"{{X-User-Id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"notes\": \"<p>Notes Field</p>\\n\",\n    \"related_objects\": [\n        {\n            \"custom_object\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n            \"entity_id\": \"dc14d81f-e3ef-46dd-9361-0f6f91aa5c51\"\n        }\n    ],\n    \"fields\": [\n        {\n            \"id\": \"e10a08e3-b595-4037-9f81-f4e880197b70\",\n            \"value\": \"Text Field Value\"\n        }\n    ]\n}"},"url":"{{API_URL}}/activities/4f2f630b-19ca-4bc5-9839-5928f1cb7ec6/log-activity"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:06:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"44"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVwduSQzAAANAvMkM2seuhD64lRjXoRr0Y11bIEqVaX9_Zc276P-M2xcMXeXf2eYjMICtlA7cn9xtJCTQxVexeKezqRNhxtJpnWxnQuoTqZW2fM8gw84gbSrL-UivyV2KbDTu2mygAP7X2CIGVhFLlJXljRABpM_dXTwyGKWAT4JzTTeWjyL2rTnHvyE40NcBJd9K15wn7bSeoxC24R0ttACTUISEjRylbIH2Q4VcRC4t49jDZSt3eW-1Sg_Hk09pBU_eauxzJBd22oNTEFG7KbNVNEW9WdsXjLsNrxlaQF7Uu3PSN78d-f8dl6rcLPPIbOun3Ko_J4fABsShh4A:1ljNmJ:ialnbeprg9ZuepEdCtUKVaidzJc; Domain=staging.kizen.com; expires=Thu, 19 May 2022 15:06:31 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ec22ef83-77b9-414a-948e-ff1ecf85bb21\",\n    \"notes\": \"<p>Notes Field</p>\",\n    \"related_objects\": [\n        {\n            \"custom_object\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n            \"entity_id\": \"dc14d81f-e3ef-46dd-9361-0f6f91aa5c51\"\n        }\n    ],\n    \"fields\": [\n        {\n            \"id\": \"e10a08e3-b595-4037-9f81-f4e880197b70\",\n            \"field_type\": \"activity_custom_field\",\n            \"name\": \"another_text_field\",\n            \"display_name\": \"Another Text Field\",\n            \"value\": \"Text Field Value\"\n        }\n    ]\n}"}],"_postman_id":"926323c0-9fc4-46c2-8e6f-6bc538abed34"}],"id":"bcace9c5-24e9-405c-bfe1-d49473a8a866","_postman_id":"bcace9c5-24e9-405c-bfe1-d49473a8a866","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","name":"Activities","type":"folder"}}},{"name":"Schedule Activities","item":[{"name":"Schedule an Activity","id":"eeeccf9f-c147-43d3-a268-16e2a3e5b56c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{X-API-Key}}"},{"key":"X-USER-ID","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","value":"{{X-Business-Id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity_object_id\": \"{{Object_Id}}\",\n    \"employee_id\": \"{{EMPLOYEE_ID}}\",\n    \"due_date\": \"2020-02-01\",\n    \"due_time\": \"11:30:00\",\n    \"associated_entities\": [\n  {\n    \"custom_object_id\": \"<object_id>\",\n    \"entity_id\": \"<entity_record_id>\"\n  }\n     ],\n    \"notifications\": [\n        {\n            \"type\": \"email\",\n            \"time_unit\": \"day\",\n            \"time_amount\": 10\n        }\n    ]\n}"},"url":"{{API_URL}}/activities/scheduled-activity","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","name":"Activities","type":"folder"}},"urlObject":{"path":["activities","scheduled-activity"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"e6067372-b05a-4e4c-9455-9eb34c314353","name":"Create Scheduled Activity","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{X-API-Key}}"},{"key":"X-USER-ID","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","value":"{{X-Business-Id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"activity_object_id\": \"4f2f630b-19ca-4bc5-9839-5928f1cb7ec6\",\n    \"employee_id\": \"46f28722-3560-41e8-ab59-d3e0bb6dec30\",\n    \"due_date\": \"2020-02-01\",\n    \"due_time\": \"11:30:00\",\n    \"associated_entities\": [\n  {\n    \"custom_object_id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n    \"entity_id\": \"dc14d81f-e3ef-46dd-9361-0f6f91aa5c51\"\n  }\n     ],\n    \"notifications\": [\n        {\n            \"type\": \"email\",\n            \"time_unit\": \"hour\",\n            \"time_amount\": 1\n        }\n    ]\n}"},"url":"{{API_URL}}/activities/scheduled-activity"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:31:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"27"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVwduSQzAAANAvykzYuD30QVSldSlbmtoXs6pSLI0sDb5-Z89h9j_M-MXqYr9gyqVSzIknhWWO92VvQAzzj5HXSYym0nfIHJAOE3KsXlkOVcSKNJ6V4ciDMIJjGMBXLoSWdZFoH0D0tq5ejBIa6dWjnrRwkReZbg7ndghXNX9vr8Zr8I20fS_pWTEWd8NTTRIA3GBw2DvAjRxPGnBbhpkWgawfcRtzmtoTLiatpvp2vkdYlr5cOEPqLSWfnsYe7yWo1F-H9AdLlEJszrAe1pZI_9s8kBzMT0dr6M9MwLqH82g-w-63Vlx6Q1cV6RUvTxQ9HPR1FNJGyW73B-KoYJM:1ljOAm:f0oMJamP1UA8ZsA4fGc2oRtUjLw; Domain=staging.kizen.com; expires=Thu, 19 May 2022 15:31:48 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6df93927-fd73-472c-b3e7-590baf02345a\",\n    \"note\": \"\",\n    \"due_date\": \"2020-02-01\",\n    \"due_time\": \"11:30:00\",\n    \"completed_at\": null,\n    \"logged_activity_id\": null,\n    \"activity_object\": {\n        \"id\": \"4f2f630b-19ca-4bc5-9839-5928f1cb7ec6\",\n        \"name\": \"Postman Test Activity\"\n    },\n    \"employee\": {\n        \"id\": \"46f28722-3560-41e8-ab59-d3e0bb6dec30\",\n        \"display_name\": \"Dillon Is Awesome\",\n        \"picture\": {\n            \"thumbnail_url\": \"https://evos.imgix.net/a60564d0-c6dd-4834-9827-f1f0eccd7533.png?dpr=2&h=100&ixlib=python-1.2.0&w=200&s=9b81533731680d02a2aad4ed31848a05\",\n            \"url\": \"https://kizenusercontent.com/a60564d0-c6dd-4834-9827-f1f0eccd7533.png\"\n        }\n    },\n    \"associated_entities\": [\n        {\n            \"custom_object_id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n            \"object_name\": \"Contacts\",\n            \"entity_id\": \"dc14d81f-e3ef-46dd-9361-0f6f91aa5c51\",\n            \"display_name\": \"test 7 Son (dillonautomation3@kizen.com)\"\n        }\n    ],\n    \"notifications\": [\n        {\n            \"type\": \"email\",\n            \"time_unit\": \"hour\",\n            \"time_amount\": 1\n        }\n    ]\n}"}],"_postman_id":"eeeccf9f-c147-43d3-a268-16e2a3e5b56c"},{"name":"List Scheduled Activities","id":"01151974-9a78-4577-adff-eaf9eb93bfe7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","value":"{{X-API-Key}}"},{"key":"X-USER-ID","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","value":"{{X-Business-Id}}"}],"url":"{{API_URL}}/activities/scheduled-activity?ordering=-due_date&page_size=3","description":"<p>This route lists all scheduled activities.</p>\n<p><strong>Acceptable Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter Key</th>\n<th>Values</th>\n<th>required</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ordering</td>\n<td>(-)due_date</td>\n<td>no</td>\n<td>sorts the response in ascending or descending order</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>Any Number</td>\n<td>no</td>\n<td>limits the response's page size</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","name":"Activities","type":"folder"}},"urlObject":{"path":["activities","scheduled-activity"],"host":["{{API_URL}}"],"query":[{"key":"ordering","value":"-due_date"},{"key":"page_size","value":"3"}],"variable":[]}},"response":[{"id":"e8a44d1b-0225-401d-a4d9-d6a6fd38b1be","name":"List Scheduled Activities","originalRequest":{"method":"GET","header":[{"key":"X-API-KEY","value":"{{X-API-Key}}"},{"key":"X-USER-ID","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","value":"{{X-Business-Id}}"}],"url":{"raw":"{{API_URL}}/activities/scheduled-activity?ordering=-due_date&page_size=3","host":["{{API_URL}}"],"path":["activities","scheduled-activity"],"query":[{"key":"ordering","value":"-due_date"},{"key":"page_size","value":"3","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:19:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"13"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 96,\n    \"next\": \"https://staging.kizen.com/api/activities/scheduled-activity?ordering=-due_date&page=2&page_size=3\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"dd730ced-3ae8-4594-a385-f41dabf48925\",\n            \"note\": \"dima's notes are here!!!!\",\n            \"due_date\": \"2022-02-22\",\n            \"due_time\": \"15:29:19\",\n            \"completed_at\": null,\n            \"logged_activity_id\": null,\n            \"activity_object\": {\n                \"id\": \"2351c476-4480-42d7-8dae-d555b2623b13\",\n                \"name\": \"Dima's activity\"\n            },\n            \"employee\": {\n                \"id\": \"871c7dd1-2bc1-490a-8143-151e8b304918\",\n                \"display_name\": \"Dima\"\n            },\n            \"associated_entities\": [],\n            \"notifications\": [\n                {\n                    \"type\": \"email\",\n                    \"time_unit\": \"minute\",\n                    \"time_amount\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"2cd92cb4-4171-4846-adc8-abacdb4c73d3\",\n            \"note\": \"\",\n            \"due_date\": \"2022-02-22\",\n            \"due_time\": \"15:29:19\",\n            \"completed_at\": null,\n            \"logged_activity_id\": null,\n            \"activity_object\": {\n                \"id\": \"2351c476-4480-42d7-8dae-d555b2623b13\",\n                \"name\": \"Dima's activity\"\n            },\n            \"employee\": {\n                \"id\": \"871c7dd1-2bc1-490a-8143-151e8b304918\",\n                \"display_name\": \"Dima\"\n            },\n            \"associated_entities\": [],\n            \"notifications\": [\n                {\n                    \"type\": \"email\",\n                    \"time_unit\": \"minute\",\n                    \"time_amount\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"fc393a2a-5931-4b8a-9dee-70901acc3b4a\",\n            \"note\": \"\",\n            \"due_date\": \"2021-08-10\",\n            \"due_time\": \"17:23:00\",\n            \"completed_at\": null,\n            \"logged_activity_id\": null,\n            \"activity_object\": {\n                \"id\": \"2351c476-4480-42d7-8dae-d555b2623b13\",\n                \"name\": \"Dima's activity\"\n            },\n            \"employee\": {\n                \"id\": \"46f28722-3560-41e8-ab59-d3e0bb6dec30\",\n                \"display_name\": \"Dillon Is Awesome\",\n                \"picture\": {\n                    \"thumbnail_url\": \"https://evos.imgix.net/a60564d0-c6dd-4834-9827-f1f0eccd7533.png?dpr=2&h=100&ixlib=python-1.2.0&w=200&s=9b81533731680d02a2aad4ed31848a05\",\n                    \"url\": \"https://kizenusercontent.com/a60564d0-c6dd-4834-9827-f1f0eccd7533.png\"\n                }\n            },\n            \"associated_entities\": [\n                {\n                    \"custom_object_id\": \"7fdeca8b-2856-4131-ae57-b51d07af19f0\",\n                    \"object_name\": \"Dima's PL\",\n                    \"entity_id\": \"794b5b0b-bffc-4669-a6ce-8e906b579bbe\",\n                    \"display_name\": \"yepthis is a new zaptest\"\n                }\n            ],\n            \"notifications\": []\n        }\n    ]\n}"}],"_postman_id":"01151974-9a78-4577-adff-eaf9eb93bfe7"},{"name":"Delete a Scheduled Activity","id":"cbefa8dd-b62e-4d07-875c-37d47008aaf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-API-KEY","value":"{{X-API-Key}}"},{"key":"X-USER-ID","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","value":"{{X-Business-Id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{API_URL}}/activities/scheduled-activity/{{Schedule_activity_id}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","name":"Activities","type":"folder"}},"urlObject":{"path":["activities","scheduled-activity","{{Schedule_activity_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"d1e327fc-df2b-4ee5-8c9f-e3f9f652dc95","name":"Delete a Scheduled Activity","originalRequest":{"method":"DELETE","header":[{"key":"X-API-KEY","value":"{{X-API-Key}}"},{"key":"X-USER-ID","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","value":"{{X-Business-Id}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{API_URL}}/activities/scheduled-activity/6df93927-fd73-472c-b3e7-590baf02345a"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 20 May 2021 19:12:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"10"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVwUmSgjAAAMAXUaUCiRzmEIxBNglkEPFCicguqxrI66emu0D_9GKYmEUG8apl-EgArJ4SZNm-CTdmz4BdK4iFAoiaXdcLF06_BLf3TLRiOxpQz1rfMbHo_Ax5nayk7fvugCb4jHnEZoGapNBFaagHtceq3KwByi-1tth3OrvoHFUP8gtgBjVg8U0UDUakEVSx9bQXgXcbWDrXOzstiRte5NgzqVnxZgLOy9lKJZITi65Kt9sSWubQNnGw4T2h-YgNeFrCDqRaHnuR2z2UirfhByZ7a46_1Gk0ysWka_FwPhbfNh0THPg1ukqn15EecOH0wdKWvq0qNdZdaZSOpaqDscTT88nV8OcPpiZnzQ:1ljo5Z:OOdqD8-ZiXQXNtJFBXswdpWo96k; Domain=staging.kizen.com; expires=Fri, 20 May 2022 19:12:09 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cbefa8dd-b62e-4d07-875c-37d47008aaf0"}],"id":"b7f5585f-6572-4de6-8bf3-fcf8790bc859","_postman_id":"b7f5585f-6572-4de6-8bf3-fcf8790bc859","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","name":"Activities","type":"folder"}}},{"name":"Create Activity Type","id":"ed4189ed-0dd5-4e20-b8fe-aa07e770199b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New Activity Type Name\"\n}"},"url":"{{base_url}}/activity-type","description":"<p>This route creates a new activity type. </p>\n","urlObject":{"path":["activity-type"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"8d4c97a6-3720-4dd1-898c-157e0b8056eb","name":"Create Activity Type","originalRequest":{"method":"POST","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New Activity Type Name\"\n}"},"url":"{{base_url}}/activity-type"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 10 Dec 2020 19:56:28 GMT"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"210"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"a0b316dc-da4d-4c33-87f6-51af922f50a8\",\n    \"created\": \"2020-12-10T13:56:28.367064-06:00\",\n    \"name\": \"New Activity Type Name\",\n    \"fields\": [],\n    \"config\": {},\n    \"rules\": {},\n    \"field_blocks\": [],\n    \"subscribers\": [],\n    \"can_delete\": true\n}"}],"_postman_id":"ed4189ed-0dd5-4e20-b8fe-aa07e770199b"},{"name":"Retrieve All Activity Types","id":"585e9bdd-3d79-4228-ae3c-dec1536535b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/activities","description":"<p>This route retrieves all possible activity types</p>\n","urlObject":{"path":["activities"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"ordering","value":"-created"},{"disabled":true,"key":"fields","value":"id,name,created,can_delete"}],"variable":[]}},"response":[{"id":"a2eed8a0-34e2-456e-b0a8-048b3807279d","name":"Retrieve All Activity Types","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/activity-type","host":["{{base_url}}"],"path":["activity-type"],"query":[{"key":"ordering","value":"-created","disabled":true},{"key":"fields","value":"id,name,created,can_delete","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 10 Dec 2020 19:54:08 GMT"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"transfer-encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1882b91d-0ace-418a-856e-024ff0012714\",\n        \"created\": \"2020-12-08T09:31:45.138079-06:00\",\n        \"name\": \"test activity\",\n        \"fields\": [\n            {\n                \"id\": \"5954c597-299a-4ddb-8699-eb7118b72bb0\",\n                \"order\": 0,\n                \"uid\": \"custom::7ce1303c-a10a-4980-a2ed-e4d08281bc20\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Survey Submitted\",\n                \"type\": \"dropdown\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"7ce1303c-a10a-4980-a2ed-e4d08281bc20\",\n                    \"key\": \"dropdown\",\n                    \"name\": \"Survey Submitted\",\n                    \"show\": true,\n                    \"type\": \"dropdown\",\n                    \"uuid\": \"fc5b9143-77af-419d-9c08-be533a64453e\",\n                    \"label\": {\n                        \"text\": \"Survey Submitted\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"survey_submitted\",\n                    \"hidden\": false,\n                    \"choices\": [\n                        {\n                            \"uuid\": \"a608fcf0-c888-4a19-a81a-899e0072f821\",\n                            \"value\": \"Yes\"\n                        },\n                        {\n                            \"uuid\": \"f95d29b9-2167-45a0-9f55-312f2f9e4a5e\",\n                            \"value\": \"No\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::7ce1303c-a10a-4980-a2ed-e4d08281bc20\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text::33\",\n                    \"defaultText\": \"Choose Survey Submitted\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-12-08T09:32:10.133170-06:00\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"a608fcf0-c888-4a19-a81a-899e0072f821\",\n                        \"value\": \"Yes\"\n                    },\n                    {\n                        \"uuid\": \"f95d29b9-2167-45a0-9f55-312f2f9e4a5e\",\n                        \"value\": \"No\"\n                    }\n                ]\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"id\": \"7ce1303c-a10a-4980-a2ed-e4d08281bc20\",\n                    \"key\": \"dropdown\",\n                    \"name\": \"Survey Submitted\",\n                    \"show\": true,\n                    \"type\": \"dropdown\",\n                    \"uuid\": \"fc5b9143-77af-419d-9c08-be533a64453e\",\n                    \"label\": {\n                        \"text\": \"Survey Submitted\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"survey_submitted\",\n                    \"hidden\": false,\n                    \"choices\": [\n                        {\n                            \"uuid\": \"a608fcf0-c888-4a19-a81a-899e0072f821\",\n                            \"value\": \"Yes\"\n                        },\n                        {\n                            \"uuid\": \"f95d29b9-2167-45a0-9f55-312f2f9e4a5e\",\n                            \"value\": \"No\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::7ce1303c-a10a-4980-a2ed-e4d08281bc20\",\n                    \"lookup_key\": \"text::33\",\n                    \"defaultText\": \"Choose Survey Submitted\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"id\": \"7ce1303c-a10a-4980-a2ed-e4d08281bc20\",\n                \"key\": \"dropdown\",\n                \"name\": \"Survey Submitted\",\n                \"show\": true,\n                \"type\": \"dropdown\",\n                \"uuid\": \"fc5b9143-77af-419d-9c08-be533a64453e\",\n                \"label\": {\n                    \"text\": \"Survey Submitted\"\n                },\n                \"order\": 484,\n                \"handle\": \"survey_submitted\",\n                \"hidden\": false,\n                \"choices\": [\n                    {\n                        \"uuid\": \"a608fcf0-c888-4a19-a81a-899e0072f821\",\n                        \"value\": \"Yes\"\n                    },\n                    {\n                        \"uuid\": \"f95d29b9-2167-45a0-9f55-312f2f9e4a5e\",\n                        \"value\": \"No\"\n                    }\n                ],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::7ce1303c-a10a-4980-a2ed-e4d08281bc20\",\n                \"lookup_key\": \"text::33\",\n                \"defaultText\": \"Choose Survey Submitted\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"88cb2055-b004-4749-abbc-1e52e1a35629\",\n        \"created\": \"2020-07-27T08:46:18.596886-05:00\",\n        \"name\": \"Contact Activity\",\n        \"fields\": [\n            {\n                \"id\": \"f1e7851d-928d-4658-b945-ddb80cdd088e\",\n                \"order\": 0,\n                \"uid\": \"1f604034-31d1-4ee0-9b0b-2b2717288790\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"First Name\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"textbox\",\n                    \"name\": \"First Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"1f604034-31d1-4ee0-9b0b-2b2717288790\",\n                    \"label\": {\n                        \"text\": \"First Name\"\n                    },\n                    \"required\": true,\n                    \"field_name\": \"first_name\",\n                    \"isRequired\": true\n                },\n                \"created\": \"2020-07-27T08:47:02.765203-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"04332c8e-fa60-4aeb-aec5-e70bee46fad0\",\n                \"order\": 1,\n                \"uid\": \"db4db198-b254-46d6-a063-830493e23323\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Last Name\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"textbox\",\n                    \"name\": \"Last Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"db4db198-b254-46d6-a063-830493e23323\",\n                    \"label\": {\n                        \"text\": \"Last Name\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"last_name\",\n                    \"isRequired\": false\n                },\n                \"created\": \"2020-07-27T08:47:02.765348-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"3c53c2ac-d1aa-4051-b722-88aff0a1c700\",\n                \"order\": 2,\n                \"uid\": \"e2710d7e-72aa-4608-8232-14fe5348e1f5\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Email\",\n                \"type\": \"email\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"email\",\n                    \"name\": \"Email\",\n                    \"show\": true,\n                    \"type\": \"email\",\n                    \"uuid\": \"e2710d7e-72aa-4608-8232-14fe5348e1f5\",\n                    \"label\": {\n                        \"text\": \"Email\"\n                    },\n                    \"required\": true,\n                    \"field_name\": \"email\",\n                    \"isRequired\": true\n                },\n                \"created\": \"2020-07-27T08:47:02.765415-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"5dadc7ea-a937-4b88-964d-69eb81c6bacc\",\n                \"order\": 3,\n                \"uid\": \"4196a678-a140-4a2f-b888-8b05d7a36bbb\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Company\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"textbox\",\n                    \"name\": \"Company\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"4196a678-a140-4a2f-b888-8b05d7a36bbb\",\n                    \"label\": {\n                        \"text\": \"Company\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"company__name\",\n                    \"isRequired\": false\n                },\n                \"created\": \"2020-07-27T08:47:02.765474-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"559b7111-093d-4378-87b7-0a6d0dd13dd9\",\n                \"order\": 4,\n                \"uid\": \"custom::659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Twitter Handle\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                    \"key\": \"textbox\",\n                    \"name\": \"Twitter Handle\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"5111154d-c344-4997-a864-1888ab354dc6\",\n                    \"label\": {\n                        \"text\": \"Twitter Handle\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"twitter_handle\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text::31\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-10-12T10:02:35.835678-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"8485a535-bdf0-47fe-a344-9fce11f8d33f\",\n                \"order\": 5,\n                \"uid\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Dynamic Tag Field\",\n                \"type\": \"dynamictags\",\n                \"storage_type\": \"text_array\",\n                \"meta\": {\n                    \"id\": \"3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                    \"key\": \"dynamictags\",\n                    \"name\": \"Dynamic Tag Field\",\n                    \"show\": true,\n                    \"type\": \"dynamictags\",\n                    \"uuid\": \"810038d3-392c-40a0-a902-1365e6bc567e\",\n                    \"label\": {\n                        \"text\": \"Dynamic Tag Field\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"dynamic_tag_field\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"field_name\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"dynamictags::4\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-10-30T10:34:50.943560-05:00\",\n                \"choices\": []\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"key\": \"textbox\",\n                    \"name\": \"First Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"1f604034-31d1-4ee0-9b0b-2b2717288790\",\n                    \"label\": {\n                        \"text\": \"First Name\"\n                    },\n                    \"required\": true,\n                    \"field_name\": \"first_name\"\n                },\n                {\n                    \"key\": \"textbox\",\n                    \"name\": \"Last Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"db4db198-b254-46d6-a063-830493e23323\",\n                    \"label\": {\n                        \"text\": \"Last Name\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"last_name\"\n                },\n                {\n                    \"key\": \"email\",\n                    \"name\": \"Email\",\n                    \"show\": true,\n                    \"type\": \"email\",\n                    \"uuid\": \"e2710d7e-72aa-4608-8232-14fe5348e1f5\",\n                    \"label\": {\n                        \"text\": \"Email\"\n                    },\n                    \"required\": true,\n                    \"field_name\": \"email\"\n                },\n                {\n                    \"key\": \"textbox\",\n                    \"name\": \"Company\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"4196a678-a140-4a2f-b888-8b05d7a36bbb\",\n                    \"label\": {\n                        \"text\": \"Company\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"company__name\"\n                },\n                {\n                    \"id\": \"659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                    \"key\": \"textbox\",\n                    \"name\": \"Twitter Handle\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"5111154d-c344-4997-a864-1888ab354dc6\",\n                    \"label\": {\n                        \"text\": \"Twitter Handle\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"twitter_handle\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                    \"lookup_key\": \"text::31\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                    \"key\": \"dynamictags\",\n                    \"name\": \"Dynamic Tag Field\",\n                    \"show\": true,\n                    \"type\": \"dynamictags\",\n                    \"uuid\": \"810038d3-392c-40a0-a902-1365e6bc567e\",\n                    \"label\": {\n                        \"text\": \"Dynamic Tag Field\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"dynamic_tag_field\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"field_name\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                    \"lookup_key\": \"dynamictags::4\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"key\": \"textbox\",\n                \"name\": \"First Name\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"1f604034-31d1-4ee0-9b0b-2b2717288790\",\n                \"label\": {\n                    \"text\": \"First Name\"\n                },\n                \"required\": true,\n                \"field_name\": \"first_name\"\n            },\n            {\n                \"key\": \"textbox\",\n                \"name\": \"Last Name\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"db4db198-b254-46d6-a063-830493e23323\",\n                \"label\": {\n                    \"text\": \"Last Name\"\n                },\n                \"required\": false,\n                \"field_name\": \"last_name\"\n            },\n            {\n                \"key\": \"email\",\n                \"name\": \"Email\",\n                \"show\": true,\n                \"type\": \"email\",\n                \"uuid\": \"e2710d7e-72aa-4608-8232-14fe5348e1f5\",\n                \"label\": {\n                    \"text\": \"Email\"\n                },\n                \"required\": true,\n                \"field_name\": \"email\"\n            },\n            {\n                \"key\": \"textbox\",\n                \"name\": \"Company\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"4196a678-a140-4a2f-b888-8b05d7a36bbb\",\n                \"label\": {\n                    \"text\": \"Company\"\n                },\n                \"required\": false,\n                \"field_name\": \"company__name\"\n            },\n            {\n                \"id\": \"659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                \"key\": \"textbox\",\n                \"name\": \"Twitter Handle\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"5111154d-c344-4997-a864-1888ab354dc6\",\n                \"label\": {\n                    \"text\": \"Twitter Handle\"\n                },\n                \"order\": 484,\n                \"handle\": \"twitter_handle\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                \"lookup_key\": \"text::31\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                \"key\": \"dynamictags\",\n                \"name\": \"Dynamic Tag Field\",\n                \"show\": true,\n                \"type\": \"dynamictags\",\n                \"uuid\": \"810038d3-392c-40a0-a902-1365e6bc567e\",\n                \"label\": {\n                    \"text\": \"Dynamic Tag Field\"\n                },\n                \"order\": 484,\n                \"handle\": \"dynamic_tag_field\",\n                \"hidden\": false,\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"field_name\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                \"lookup_key\": \"dynamictags::4\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"75922b7d-3d7d-4aaf-bde3-9ddb345bf022\",\n        \"created\": \"2020-06-25T15:38:15.723448-05:00\",\n        \"name\": \"checkboxes Test\",\n        \"fields\": [\n            {\n                \"id\": \"298115c8-63ac-4083-bbbc-234c4b4725b0\",\n                \"order\": 0,\n                \"uid\": \"custom::6d30fb7e-7e33-403d-be3c-0f0c81afd9dc\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"checkboxes\",\n                \"type\": \"checkboxes\",\n                \"storage_type\": \"text_array\",\n                \"meta\": {\n                    \"id\": \"6d30fb7e-7e33-403d-be3c-0f0c81afd9dc\",\n                    \"key\": \"checkboxes\",\n                    \"name\": \"checkboxes\",\n                    \"show\": true,\n                    \"type\": \"checkboxes\",\n                    \"uuid\": \"83e7b48e-88ff-4b59-8b02-224842190c77\",\n                    \"label\": {\n                        \"text\": \"checkboxes\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"checkboxes\",\n                    \"hidden\": false,\n                    \"choices\": [\n                        {\n                            \"uuid\": \"a5f63e77-f611-47ce-aca9-86156bf4a6a5\",\n                            \"value\": \"1\"\n                        },\n                        {\n                            \"uuid\": \"00d86560-b346-4f06-b238-6b45f99a2e56\",\n                            \"value\": \"2\"\n                        },\n                        {\n                            \"uuid\": \"123c6b07-c4d2-454f-888b-c6a0b2946367\",\n                            \"value\": \"3\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::6d30fb7e-7e33-403d-be3c-0f0c81afd9dc\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text_array::4\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-06-25T15:38:30.926231-05:00\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"a5f63e77-f611-47ce-aca9-86156bf4a6a5\",\n                        \"value\": \"1\"\n                    },\n                    {\n                        \"uuid\": \"00d86560-b346-4f06-b238-6b45f99a2e56\",\n                        \"value\": \"2\"\n                    },\n                    {\n                        \"uuid\": \"123c6b07-c4d2-454f-888b-c6a0b2946367\",\n                        \"value\": \"3\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"fc8787cf-78ce-471a-9bf6-abdf315a1eb6\",\n                \"order\": 1,\n                \"uid\": \"custom::93187eee-0a12-4817-9f8b-d4a011a8a8b5\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Notes\",\n                \"type\": \"textarea\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"93187eee-0a12-4817-9f8b-d4a011a8a8b5\",\n                    \"key\": \"textarea\",\n                    \"name\": \"Notes\",\n                    \"show\": true,\n                    \"type\": \"textarea\",\n                    \"uuid\": \"53a9822c-7106-47a3-a511-31ef12458a5c\",\n                    \"label\": {\n                        \"text\": \"Notes\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"notes\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::93187eee-0a12-4817-9f8b-d4a011a8a8b5\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"longtext::1\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-11-04T13:39:37.094369-06:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"dc7a400e-3e1b-4d86-9ba5-ba6bb84470de\",\n                \"order\": 2,\n                \"uid\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Dynamic Tag Field\",\n                \"type\": \"dynamictags\",\n                \"storage_type\": \"text_array\",\n                \"meta\": {\n                    \"id\": \"3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                    \"key\": \"dynamictags\",\n                    \"name\": \"Dynamic Tag Field\",\n                    \"show\": true,\n                    \"type\": \"dynamictags\",\n                    \"uuid\": \"2cd19f3e-aa7e-4786-96d6-bbc786539c77\",\n                    \"label\": {\n                        \"text\": \"Dynamic Tag Field\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"dynamic_tag_field\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"field_name\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"dynamictags::4\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-11-04T13:40:28.298168-06:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"bc82701f-a452-4fc4-8ca3-887455173067\",\n                \"order\": 3,\n                \"uid\": \"custom::659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Twitter Handle\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                    \"key\": \"textbox\",\n                    \"name\": \"Twitter Handle\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"86f3159c-625e-4d9a-a670-3f4061222641\",\n                    \"label\": {\n                        \"text\": \"Twitter Handle\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"twitter_handle\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text::31\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-06-25T15:38:30.926363-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"ce6521e4-d217-42e2-96d8-5f361991dc2a\",\n                \"order\": 4,\n                \"uid\": \"custom::ebaeba1b-e193-4868-8953-4886cd965025\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"checkboxtest\",\n                \"type\": \"checkbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"ebaeba1b-e193-4868-8953-4886cd965025\",\n                    \"key\": \"checkbox\",\n                    \"name\": \"checkboxtest\",\n                    \"show\": true,\n                    \"type\": \"checkbox\",\n                    \"uuid\": \"f304ba97-fce0-45cb-aee9-fa0ccbb9ab2f\",\n                    \"label\": {\n                        \"text\": \"checkboxtest\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"checkboxtest\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::ebaeba1b-e193-4868-8953-4886cd965025\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"boolean::7\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-11-04T13:40:55.663764-06:00\",\n                \"choices\": []\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"id\": \"6d30fb7e-7e33-403d-be3c-0f0c81afd9dc\",\n                    \"key\": \"checkboxes\",\n                    \"name\": \"checkboxes\",\n                    \"show\": true,\n                    \"type\": \"checkboxes\",\n                    \"uuid\": \"83e7b48e-88ff-4b59-8b02-224842190c77\",\n                    \"label\": {\n                        \"text\": \"checkboxes\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"checkboxes\",\n                    \"hidden\": false,\n                    \"choices\": [\n                        {\n                            \"uuid\": \"a5f63e77-f611-47ce-aca9-86156bf4a6a5\",\n                            \"value\": \"1\"\n                        },\n                        {\n                            \"uuid\": \"00d86560-b346-4f06-b238-6b45f99a2e56\",\n                            \"value\": \"2\"\n                        },\n                        {\n                            \"uuid\": \"123c6b07-c4d2-454f-888b-c6a0b2946367\",\n                            \"value\": \"3\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::6d30fb7e-7e33-403d-be3c-0f0c81afd9dc\",\n                    \"lookup_key\": \"text_array::4\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"93187eee-0a12-4817-9f8b-d4a011a8a8b5\",\n                    \"key\": \"textarea\",\n                    \"name\": \"Notes\",\n                    \"show\": true,\n                    \"type\": \"textarea\",\n                    \"uuid\": \"53a9822c-7106-47a3-a511-31ef12458a5c\",\n                    \"label\": {\n                        \"text\": \"Notes\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"notes\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::93187eee-0a12-4817-9f8b-d4a011a8a8b5\",\n                    \"lookup_key\": \"longtext::1\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                    \"key\": \"dynamictags\",\n                    \"name\": \"Dynamic Tag Field\",\n                    \"show\": true,\n                    \"type\": \"dynamictags\",\n                    \"uuid\": \"2cd19f3e-aa7e-4786-96d6-bbc786539c77\",\n                    \"label\": {\n                        \"text\": \"Dynamic Tag Field\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"dynamic_tag_field\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"field_name\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                    \"lookup_key\": \"dynamictags::4\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                    \"key\": \"textbox\",\n                    \"name\": \"Twitter Handle\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"86f3159c-625e-4d9a-a670-3f4061222641\",\n                    \"label\": {\n                        \"text\": \"Twitter Handle\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"twitter_handle\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                    \"lookup_key\": \"text::31\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"ebaeba1b-e193-4868-8953-4886cd965025\",\n                    \"key\": \"checkbox\",\n                    \"name\": \"checkboxtest\",\n                    \"show\": true,\n                    \"type\": \"checkbox\",\n                    \"uuid\": \"f304ba97-fce0-45cb-aee9-fa0ccbb9ab2f\",\n                    \"label\": {\n                        \"text\": \"checkboxtest\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"checkboxtest\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::ebaeba1b-e193-4868-8953-4886cd965025\",\n                    \"lookup_key\": \"boolean::7\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {\n            \"fields\": [\n                {\n                    \"actions\": [\n                        {\n                            \"field\": \"custom::93187eee-0a12-4817-9f8b-d4a011a8a8b5\",\n                            \"action\": \"hide\"\n                        }\n                    ],\n                    \"conditions\": [\n                        {\n                            \"field\": \"custom::6d30fb7e-7e33-403d-be3c-0f0c81afd9dc\",\n                            \"value\": \"123c6b07-c4d2-454f-888b-c6a0b2946367\",\n                            \"operator\": \"in\"\n                        }\n                    ],\n                    \"conditions_reducer\": \"and\"\n                },\n                {\n                    \"actions\": [\n                        {\n                            \"field\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                            \"action\": \"show\"\n                        }\n                    ],\n                    \"conditions\": [\n                        {\n                            \"field\": \"custom::ebaeba1b-e193-4868-8953-4886cd965025\",\n                            \"value\": \"\",\n                            \"operator\": \"checked\"\n                        }\n                    ],\n                    \"conditions_reducer\": \"and\"\n                }\n            ]\n        },\n        \"field_blocks\": [\n            {\n                \"id\": \"6d30fb7e-7e33-403d-be3c-0f0c81afd9dc\",\n                \"key\": \"checkboxes\",\n                \"name\": \"checkboxes\",\n                \"show\": true,\n                \"type\": \"checkboxes\",\n                \"uuid\": \"83e7b48e-88ff-4b59-8b02-224842190c77\",\n                \"label\": {\n                    \"text\": \"checkboxes\"\n                },\n                \"order\": 484,\n                \"handle\": \"checkboxes\",\n                \"hidden\": false,\n                \"choices\": [\n                    {\n                        \"uuid\": \"a5f63e77-f611-47ce-aca9-86156bf4a6a5\",\n                        \"value\": \"1\"\n                    },\n                    {\n                        \"uuid\": \"00d86560-b346-4f06-b238-6b45f99a2e56\",\n                        \"value\": \"2\"\n                    },\n                    {\n                        \"uuid\": \"123c6b07-c4d2-454f-888b-c6a0b2946367\",\n                        \"value\": \"3\"\n                    }\n                ],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::6d30fb7e-7e33-403d-be3c-0f0c81afd9dc\",\n                \"lookup_key\": \"text_array::4\",\n                \"selectedBackgroundColor\": \"#2196f3\",\n                \"relationship_entity_type\": null,\n                \"unselectedBackgroundColor\": \"#FFFFFF\",\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"93187eee-0a12-4817-9f8b-d4a011a8a8b5\",\n                \"key\": \"textarea\",\n                \"name\": \"Notes\",\n                \"show\": true,\n                \"type\": \"textarea\",\n                \"uuid\": \"53a9822c-7106-47a3-a511-31ef12458a5c\",\n                \"label\": {\n                    \"text\": \"Notes\"\n                },\n                \"order\": 484,\n                \"handle\": \"notes\",\n                \"hidden\": false,\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::93187eee-0a12-4817-9f8b-d4a011a8a8b5\",\n                \"lookup_key\": \"longtext::1\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                \"key\": \"dynamictags\",\n                \"name\": \"Dynamic Tag Field\",\n                \"show\": true,\n                \"type\": \"dynamictags\",\n                \"uuid\": \"2cd19f3e-aa7e-4786-96d6-bbc786539c77\",\n                \"label\": {\n                    \"text\": \"Dynamic Tag Field\"\n                },\n                \"order\": 484,\n                \"handle\": \"dynamic_tag_field\",\n                \"hidden\": false,\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"field_name\": \"custom::3666ad7a-c595-41f7-b9b9-13671aad9b69\",\n                \"lookup_key\": \"dynamictags::4\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                \"key\": \"textbox\",\n                \"name\": \"Twitter Handle\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"86f3159c-625e-4d9a-a670-3f4061222641\",\n                \"label\": {\n                    \"text\": \"Twitter Handle\"\n                },\n                \"order\": 484,\n                \"handle\": \"twitter_handle\",\n                \"hidden\": false,\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::659197dc-83b5-4935-b6ca-c1a12f21ae6e\",\n                \"lookup_key\": \"text::31\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"ebaeba1b-e193-4868-8953-4886cd965025\",\n                \"key\": \"checkbox\",\n                \"name\": \"checkboxtest\",\n                \"show\": true,\n                \"type\": \"checkbox\",\n                \"uuid\": \"f304ba97-fce0-45cb-aee9-fa0ccbb9ab2f\",\n                \"label\": {\n                    \"text\": \"checkboxtest\"\n                },\n                \"order\": 484,\n                \"handle\": \"checkboxtest\",\n                \"hidden\": false,\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::ebaeba1b-e193-4868-8953-4886cd965025\",\n                \"lookup_key\": \"boolean::7\",\n                \"selectedBackgroundColor\": \"#2196f3\",\n                \"relationship_entity_type\": null,\n                \"unselectedBackgroundColor\": \"#FFFFFF\",\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"195760c1-3ee6-4bf6-8705-8d23e771447f\",\n        \"created\": \"2020-05-04T10:23:51.748913-05:00\",\n        \"name\": \"Zumba Session\",\n        \"fields\": [],\n        \"config\": {\n            \"blocks\": [],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"aef9c072-bcfe-4e01-a1b4-2e5e6ba1e027\",\n        \"created\": \"2020-04-04T07:36:39.483307-05:00\",\n        \"name\": \"ZapierTestActivity\",\n        \"fields\": [\n            {\n                \"id\": \"91d0a32a-8b74-471d-9266-4dba2f51f291\",\n                \"order\": 0,\n                \"uid\": \"custom::19600f2e-4ea8-4673-96e4-d86b7013b40f\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"City\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"19600f2e-4ea8-4673-96e4-d86b7013b40f\",\n                    \"key\": \"textbox\",\n                    \"name\": \"City\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"e073f2f3-5f56-48ed-bd28-d0fa9a105e14\",\n                    \"label\": {\n                        \"text\": \"City\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"city\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"458184fe-e667-42e2-acc3-e286ccd759fd\",\n                        \"name\": \"Location\",\n                        \"order\": 1,\n                        \"is_main\": false\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::19600f2e-4ea8-4673-96e4-d86b7013b40f\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text::4\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-04-04T07:38:09.139690-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"d31f1a85-7a8e-437f-861b-c93ecbe7787f\",\n                \"order\": 1,\n                \"uid\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Hobbies\",\n                \"type\": \"checkboxes\",\n                \"storage_type\": \"text_array\",\n                \"meta\": {\n                    \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"key\": \"checkboxes\",\n                    \"name\": \"Hobbies\",\n                    \"show\": true,\n                    \"type\": \"checkboxes\",\n                    \"uuid\": \"7f6ce884-8653-487b-91f7-d1c86fad887c\",\n                    \"label\": {\n                        \"text\": \"Hobbies\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"hobbies_1\",\n                    \"hidden\": false,\n                    \"choices\": [\n                        {\n                            \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                            \"value\": \"Arts\"\n                        },\n                        {\n                            \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                            \"value\": \"Sports\"\n                        },\n                        {\n                            \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                            \"value\": \"Chess\"\n                        },\n                        {\n                            \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                            \"value\": \"Blogging\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text_array::1\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-04-04T07:38:09.139827-05:00\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                        \"value\": \"Arts\"\n                    },\n                    {\n                        \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                        \"value\": \"Sports\"\n                    },\n                    {\n                        \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                        \"value\": \"Chess\"\n                    },\n                    {\n                        \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                        \"value\": \"Blogging\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"0b82f05c-c630-4b20-aac1-4c9a2fd0fbdd\",\n                \"order\": 2,\n                \"uid\": \"custom::077aed41-5721-4318-950a-c625465e782b\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"No of Website Visits\",\n                \"type\": \"integer\",\n                \"storage_type\": \"number\",\n                \"meta\": {\n                    \"id\": \"077aed41-5721-4318-950a-c625465e782b\",\n                    \"key\": \"integer\",\n                    \"name\": \"No of Website Visits\",\n                    \"show\": true,\n                    \"type\": \"integer\",\n                    \"uuid\": \"af9b597b-6b53-43d1-a77e-77e3bffd91bb\",\n                    \"label\": {\n                        \"text\": \"No of Website Visits\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"no_of_website_visits\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::077aed41-5721-4318-950a-c625465e782b\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"numeric::1\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-04-04T07:38:09.139893-05:00\",\n                \"choices\": []\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"id\": \"19600f2e-4ea8-4673-96e4-d86b7013b40f\",\n                    \"key\": \"textbox\",\n                    \"name\": \"City\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"e073f2f3-5f56-48ed-bd28-d0fa9a105e14\",\n                    \"label\": {\n                        \"text\": \"City\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"city\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"458184fe-e667-42e2-acc3-e286ccd759fd\",\n                        \"name\": \"Location\",\n                        \"order\": 1,\n                        \"is_main\": false\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::19600f2e-4ea8-4673-96e4-d86b7013b40f\",\n                    \"lookup_key\": \"text::4\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"key\": \"checkboxes\",\n                    \"name\": \"Hobbies\",\n                    \"show\": true,\n                    \"type\": \"checkboxes\",\n                    \"uuid\": \"7f6ce884-8653-487b-91f7-d1c86fad887c\",\n                    \"label\": {\n                        \"text\": \"Hobbies\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"hobbies_1\",\n                    \"hidden\": false,\n                    \"choices\": [\n                        {\n                            \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                            \"value\": \"Arts\"\n                        },\n                        {\n                            \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                            \"value\": \"Sports\"\n                        },\n                        {\n                            \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                            \"value\": \"Chess\"\n                        },\n                        {\n                            \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                            \"value\": \"Blogging\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"lookup_key\": \"text_array::1\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"077aed41-5721-4318-950a-c625465e782b\",\n                    \"key\": \"integer\",\n                    \"name\": \"No of Website Visits\",\n                    \"show\": true,\n                    \"type\": \"integer\",\n                    \"uuid\": \"af9b597b-6b53-43d1-a77e-77e3bffd91bb\",\n                    \"label\": {\n                        \"text\": \"No of Website Visits\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"no_of_website_visits\",\n                    \"hidden\": false,\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::077aed41-5721-4318-950a-c625465e782b\",\n                    \"lookup_key\": \"numeric::1\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"id\": \"19600f2e-4ea8-4673-96e4-d86b7013b40f\",\n                \"key\": \"textbox\",\n                \"name\": \"City\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"e073f2f3-5f56-48ed-bd28-d0fa9a105e14\",\n                \"label\": {\n                    \"text\": \"City\"\n                },\n                \"order\": 484,\n                \"handle\": \"city\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"458184fe-e667-42e2-acc3-e286ccd759fd\",\n                    \"name\": \"Location\",\n                    \"order\": 1,\n                    \"is_main\": false\n                },\n                \"required\": false,\n                \"field_name\": \"custom::19600f2e-4ea8-4673-96e4-d86b7013b40f\",\n                \"lookup_key\": \"text::4\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"key\": \"checkboxes\",\n                \"name\": \"Hobbies\",\n                \"show\": true,\n                \"type\": \"checkboxes\",\n                \"uuid\": \"7f6ce884-8653-487b-91f7-d1c86fad887c\",\n                \"label\": {\n                    \"text\": \"Hobbies\"\n                },\n                \"order\": 484,\n                \"handle\": \"hobbies_1\",\n                \"hidden\": false,\n                \"choices\": [\n                    {\n                        \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                        \"value\": \"Arts\"\n                    },\n                    {\n                        \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                        \"value\": \"Sports\"\n                    },\n                    {\n                        \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                        \"value\": \"Chess\"\n                    },\n                    {\n                        \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                        \"value\": \"Blogging\"\n                    }\n                ],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"lookup_key\": \"text_array::1\",\n                \"selectedBackgroundColor\": \"#2196f3\",\n                \"relationship_entity_type\": null,\n                \"unselectedBackgroundColor\": \"#FFFFFF\",\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"077aed41-5721-4318-950a-c625465e782b\",\n                \"key\": \"integer\",\n                \"name\": \"No of Website Visits\",\n                \"show\": true,\n                \"type\": \"integer\",\n                \"uuid\": \"af9b597b-6b53-43d1-a77e-77e3bffd91bb\",\n                \"label\": {\n                    \"text\": \"No of Website Visits\"\n                },\n                \"order\": 484,\n                \"handle\": \"no_of_website_visits\",\n                \"hidden\": false,\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::077aed41-5721-4318-950a-c625465e782b\",\n                \"lookup_key\": \"numeric::1\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"b66b1a4d-df3f-4544-b8cc-e9bb347e025f\",\n        \"created\": \"2020-02-03T16:41:28.476955-06:00\",\n        \"name\": \"Which Quote is best?\",\n        \"fields\": [\n            {\n                \"id\": \"df439600-55a1-4ec9-b90c-33e89af41761\",\n                \"order\": 0,\n                \"uid\": \"custom::21261847-d576-4b0e-93ab-1515e84212ee\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Please upload the best quotes\",\n                \"type\": \"file_uploader\",\n                \"storage_type\": \"jsonb\",\n                \"meta\": {\n                    \"id\": \"21261847-d576-4b0e-93ab-1515e84212ee\",\n                    \"key\": \"file_uploader\",\n                    \"name\": \"Best Quotes\",\n                    \"show\": true,\n                    \"type\": \"file_uploader\",\n                    \"uuid\": \"ba3db79a-8358-4570-806d-853ed24c4265\",\n                    \"label\": {\n                        \"text\": \"Please upload the best quotes\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"best_quotes\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"9bc93462-4ae4-4e16-9750-804074b94272\",\n                        \"name\": \"CYH RFQ Process\",\n                        \"order\": 4,\n                        \"is_main\": false\n                    },\n                    \"field_name\": \"custom::21261847-d576-4b0e-93ab-1515e84212ee\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"jsonb::7\",\n                    \"uploadButtonColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-02-03T16:43:07.701886-06:00\",\n                \"choices\": []\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"id\": \"21261847-d576-4b0e-93ab-1515e84212ee\",\n                    \"key\": \"file_uploader\",\n                    \"name\": \"Best Quotes\",\n                    \"show\": true,\n                    \"type\": \"file_uploader\",\n                    \"uuid\": \"ba3db79a-8358-4570-806d-853ed24c4265\",\n                    \"label\": {\n                        \"text\": \"Please upload the best quotes\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"best_quotes\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"9bc93462-4ae4-4e16-9750-804074b94272\",\n                        \"name\": \"CYH RFQ Process\",\n                        \"order\": 4,\n                        \"is_main\": false\n                    },\n                    \"field_name\": \"custom::21261847-d576-4b0e-93ab-1515e84212ee\",\n                    \"lookup_key\": \"jsonb::7\",\n                    \"uploadButtonColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"id\": \"21261847-d576-4b0e-93ab-1515e84212ee\",\n                \"key\": \"file_uploader\",\n                \"name\": \"Best Quotes\",\n                \"show\": true,\n                \"type\": \"file_uploader\",\n                \"uuid\": \"ba3db79a-8358-4570-806d-853ed24c4265\",\n                \"label\": {\n                    \"text\": \"Please upload the best quotes\"\n                },\n                \"order\": 484,\n                \"handle\": \"best_quotes\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"9bc93462-4ae4-4e16-9750-804074b94272\",\n                    \"name\": \"CYH RFQ Process\",\n                    \"order\": 4,\n                    \"is_main\": false\n                },\n                \"field_name\": \"custom::21261847-d576-4b0e-93ab-1515e84212ee\",\n                \"lookup_key\": \"jsonb::7\",\n                \"uploadButtonColor\": \"#2196f3\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"84460b4a-5a09-4df3-8eb3-9a1ae09d912c\",\n        \"created\": \"2020-01-02T14:29:00.665106-06:00\",\n        \"name\": \"File Activity\",\n        \"fields\": [\n            {\n                \"id\": \"61bf839e-c22e-4a78-a59e-5c20b4f481b4\",\n                \"order\": 0,\n                \"uid\": \"custom::bb923dd8-770a-4904-991b-7b53868024d8\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Intercom Tickets\",\n                \"type\": \"file_uploader\",\n                \"storage_type\": \"jsonb\",\n                \"meta\": {\n                    \"id\": \"bb923dd8-770a-4904-991b-7b53868024d8\",\n                    \"key\": \"file_uploader\",\n                    \"name\": \"Intercom Tickets\",\n                    \"show\": true,\n                    \"type\": \"file_uploader\",\n                    \"uuid\": \"e482fd73-206b-4290-9872-5775ae5bfa93\",\n                    \"label\": {\n                        \"text\": \"Intercom Tickets\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"intercom_tickets\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"field_name\": \"custom::bb923dd8-770a-4904-991b-7b53868024d8\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"jsonb::3\",\n                    \"uploadButtonColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2020-01-10T10:54:58.454250-06:00\",\n                \"choices\": []\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"id\": \"bb923dd8-770a-4904-991b-7b53868024d8\",\n                    \"key\": \"file_uploader\",\n                    \"name\": \"Intercom Tickets\",\n                    \"show\": true,\n                    \"type\": \"file_uploader\",\n                    \"uuid\": \"e482fd73-206b-4290-9872-5775ae5bfa93\",\n                    \"label\": {\n                        \"text\": \"Intercom Tickets\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"intercom_tickets\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"field_name\": \"custom::bb923dd8-770a-4904-991b-7b53868024d8\",\n                    \"lookup_key\": \"jsonb::3\",\n                    \"uploadButtonColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"id\": \"bb923dd8-770a-4904-991b-7b53868024d8\",\n                \"key\": \"file_uploader\",\n                \"name\": \"Intercom Tickets\",\n                \"show\": true,\n                \"type\": \"file_uploader\",\n                \"uuid\": \"e482fd73-206b-4290-9872-5775ae5bfa93\",\n                \"label\": {\n                    \"text\": \"Intercom Tickets\"\n                },\n                \"order\": 484,\n                \"handle\": \"intercom_tickets\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"field_name\": \"custom::bb923dd8-770a-4904-991b-7b53868024d8\",\n                \"lookup_key\": \"jsonb::3\",\n                \"uploadButtonColor\": \"#2196f3\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"855db632-a743-4102-bbc4-41bb5b262695\",\n        \"created\": \"2019-12-19T14:09:46.195133-06:00\",\n        \"name\": \"Upload Intercome Ticket\",\n        \"fields\": [\n            {\n                \"id\": \"84934dc0-be47-45d3-8668-968d56ac8307\",\n                \"order\": 0,\n                \"uid\": \"custom::bb923dd8-770a-4904-991b-7b53868024d8\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Intercom Tickets\",\n                \"type\": \"file_uploader\",\n                \"storage_type\": \"jsonb\",\n                \"meta\": {\n                    \"id\": \"bb923dd8-770a-4904-991b-7b53868024d8\",\n                    \"key\": \"file_uploader\",\n                    \"name\": \"Intercom Tickets\",\n                    \"show\": true,\n                    \"type\": \"file_uploader\",\n                    \"uuid\": \"2eebcd38-27a9-4761-a3b0-31229ed9fa5f\",\n                    \"label\": {\n                        \"text\": \"Intercom Tickets\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"intercom_tickets\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"field_name\": \"custom::bb923dd8-770a-4904-991b-7b53868024d8\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"jsonb::3\",\n                    \"uploadButtonColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2019-12-19T14:10:03.226649-06:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"813d3a55-5b3f-4349-95e8-cd817f4dda7f\",\n                \"order\": 1,\n                \"uid\": \"cfa9586f-2f09-4dae-ba88-38f7426786f3\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Notes\",\n                \"type\": \"survey_textarea\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"survey_textarea\",\n                    \"name\": \"Long Text\",\n                    \"show\": true,\n                    \"type\": \"survey_textarea\",\n                    \"uuid\": \"cfa9586f-2f09-4dae-ba88-38f7426786f3\",\n                    \"label\": {\n                        \"text\": \"Notes\"\n                    },\n                    \"required\": false,\n                    \"isRequired\": false\n                },\n                \"created\": \"2020-09-09T16:05:02.294982-05:00\",\n                \"choices\": []\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"id\": \"bb923dd8-770a-4904-991b-7b53868024d8\",\n                    \"key\": \"file_uploader\",\n                    \"name\": \"Intercom Tickets\",\n                    \"show\": true,\n                    \"type\": \"file_uploader\",\n                    \"uuid\": \"2eebcd38-27a9-4761-a3b0-31229ed9fa5f\",\n                    \"label\": {\n                        \"text\": \"Intercom Tickets\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"intercom_tickets\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"field_name\": \"custom::bb923dd8-770a-4904-991b-7b53868024d8\",\n                    \"lookup_key\": \"jsonb::3\",\n                    \"uploadButtonColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"key\": \"survey_textarea\",\n                    \"name\": \"Long Text\",\n                    \"show\": true,\n                    \"type\": \"survey_textarea\",\n                    \"uuid\": \"cfa9586f-2f09-4dae-ba88-38f7426786f3\",\n                    \"label\": {\n                        \"text\": \"Notes\"\n                    },\n                    \"required\": false\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"id\": \"bb923dd8-770a-4904-991b-7b53868024d8\",\n                \"key\": \"file_uploader\",\n                \"name\": \"Intercom Tickets\",\n                \"show\": true,\n                \"type\": \"file_uploader\",\n                \"uuid\": \"2eebcd38-27a9-4761-a3b0-31229ed9fa5f\",\n                \"label\": {\n                    \"text\": \"Intercom Tickets\"\n                },\n                \"order\": 484,\n                \"handle\": \"intercom_tickets\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"field_name\": \"custom::bb923dd8-770a-4904-991b-7b53868024d8\",\n                \"lookup_key\": \"jsonb::3\",\n                \"uploadButtonColor\": \"#2196f3\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"key\": \"survey_textarea\",\n                \"name\": \"Long Text\",\n                \"show\": true,\n                \"type\": \"survey_textarea\",\n                \"uuid\": \"cfa9586f-2f09-4dae-ba88-38f7426786f3\",\n                \"label\": {\n                    \"text\": \"Notes\"\n                },\n                \"required\": false\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"61a903ba-d0a7-4786-98c9-c990c474328f\",\n        \"created\": \"2019-12-16T09:58:22.500752-06:00\",\n        \"name\": \"NWCCA Request Approval/Rejection\",\n        \"fields\": [\n            {\n                \"id\": \"eba49e03-5e20-43f6-a370-f2eedd661e50\",\n                \"order\": 0,\n                \"uid\": \"custom::092f3677-b7db-464d-b9f4-8f595170d79a\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Approve or Reject?\",\n                \"type\": \"dropdown\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"092f3677-b7db-464d-b9f4-8f595170d79a\",\n                    \"key\": \"dropdown\",\n                    \"name\": \"Approve or Reject?\",\n                    \"show\": true,\n                    \"type\": \"dropdown\",\n                    \"uuid\": \"d7ae56ad-ff47-41fb-9950-491b5d1f04f3\",\n                    \"label\": {\n                        \"text\": \"Approve or Reject?\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"approve_or_reject\",\n                    \"choices\": [\n                        {\n                            \"uuid\": \"2d68247e-947f-4146-8c9a-c559e3b3a7c0\",\n                            \"value\": \"Approve\"\n                        },\n                        {\n                            \"uuid\": \"249561fe-2d1b-4fe9-a63d-6f357976e1e1\",\n                            \"value\": \"Reject\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"546b7097-e518-4c9f-b124-6a87693af890\",\n                        \"name\": \"NWCCA Form\",\n                        \"order\": 2,\n                        \"is_main\": false\n                    },\n                    \"required\": true,\n                    \"field_name\": \"custom::092f3677-b7db-464d-b9f4-8f595170d79a\",\n                    \"isRequired\": true,\n                    \"lookup_key\": \"text::20\",\n                    \"defaultText\": \"Choose Approve or Reject?\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2019-12-16T09:59:40.282032-06:00\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"2d68247e-947f-4146-8c9a-c559e3b3a7c0\",\n                        \"value\": \"Approve\"\n                    },\n                    {\n                        \"uuid\": \"249561fe-2d1b-4fe9-a63d-6f357976e1e1\",\n                        \"value\": \"Reject\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"2d6a595c-6e7a-4ad7-b12e-11281702224d\",\n                \"order\": 1,\n                \"uid\": \"custom::ae5e5a15-17e7-4d5e-a3ce-18df3507c7df\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Approval Number\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"ae5e5a15-17e7-4d5e-a3ce-18df3507c7df\",\n                    \"key\": \"textbox\",\n                    \"name\": \"Approval Number\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"e0d9b30d-9ede-4ae2-9681-1d15546a13e2\",\n                    \"label\": {\n                        \"text\": \"Approval Number\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"approval_number\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"546b7097-e518-4c9f-b124-6a87693af890\",\n                        \"name\": \"NWCCA Form\",\n                        \"order\": 2,\n                        \"is_main\": false\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::ae5e5a15-17e7-4d5e-a3ce-18df3507c7df\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text::19\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2019-12-16T09:59:40.282178-06:00\",\n                \"choices\": []\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"id\": \"092f3677-b7db-464d-b9f4-8f595170d79a\",\n                    \"key\": \"dropdown\",\n                    \"name\": \"Approve or Reject?\",\n                    \"show\": true,\n                    \"type\": \"dropdown\",\n                    \"uuid\": \"d7ae56ad-ff47-41fb-9950-491b5d1f04f3\",\n                    \"label\": {\n                        \"text\": \"Approve or Reject?\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"approve_or_reject\",\n                    \"choices\": [\n                        {\n                            \"uuid\": \"2d68247e-947f-4146-8c9a-c559e3b3a7c0\",\n                            \"value\": \"Approve\"\n                        },\n                        {\n                            \"uuid\": \"249561fe-2d1b-4fe9-a63d-6f357976e1e1\",\n                            \"value\": \"Reject\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"546b7097-e518-4c9f-b124-6a87693af890\",\n                        \"name\": \"NWCCA Form\",\n                        \"order\": 2,\n                        \"is_main\": false\n                    },\n                    \"required\": true,\n                    \"field_name\": \"custom::092f3677-b7db-464d-b9f4-8f595170d79a\",\n                    \"lookup_key\": \"text::20\",\n                    \"defaultText\": \"Choose Approve or Reject?\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"ae5e5a15-17e7-4d5e-a3ce-18df3507c7df\",\n                    \"key\": \"textbox\",\n                    \"name\": \"Approval Number\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"e0d9b30d-9ede-4ae2-9681-1d15546a13e2\",\n                    \"label\": {\n                        \"text\": \"Approval Number\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"approval_number\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"546b7097-e518-4c9f-b124-6a87693af890\",\n                        \"name\": \"NWCCA Form\",\n                        \"order\": 2,\n                        \"is_main\": false\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::ae5e5a15-17e7-4d5e-a3ce-18df3507c7df\",\n                    \"lookup_key\": \"text::19\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {\n            \"fields\": [\n                {\n                    \"actions\": [\n                        {\n                            \"field\": \"custom::ae5e5a15-17e7-4d5e-a3ce-18df3507c7df\",\n                            \"action\": \"show\"\n                        }\n                    ],\n                    \"conditions\": [\n                        {\n                            \"field\": \"custom::092f3677-b7db-464d-b9f4-8f595170d79a\",\n                            \"value\": \"2d68247e-947f-4146-8c9a-c559e3b3a7c0\",\n                            \"operator\": \"in\"\n                        }\n                    ],\n                    \"conditions_reducer\": \"and\"\n                }\n            ]\n        },\n        \"field_blocks\": [\n            {\n                \"id\": \"092f3677-b7db-464d-b9f4-8f595170d79a\",\n                \"key\": \"dropdown\",\n                \"name\": \"Approve or Reject?\",\n                \"show\": true,\n                \"type\": \"dropdown\",\n                \"uuid\": \"d7ae56ad-ff47-41fb-9950-491b5d1f04f3\",\n                \"label\": {\n                    \"text\": \"Approve or Reject?\"\n                },\n                \"order\": 484,\n                \"handle\": \"approve_or_reject\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"2d68247e-947f-4146-8c9a-c559e3b3a7c0\",\n                        \"value\": \"Approve\"\n                    },\n                    {\n                        \"uuid\": \"249561fe-2d1b-4fe9-a63d-6f357976e1e1\",\n                        \"value\": \"Reject\"\n                    }\n                ],\n                \"category\": {\n                    \"id\": \"546b7097-e518-4c9f-b124-6a87693af890\",\n                    \"name\": \"NWCCA Form\",\n                    \"order\": 2,\n                    \"is_main\": false\n                },\n                \"required\": true,\n                \"field_name\": \"custom::092f3677-b7db-464d-b9f4-8f595170d79a\",\n                \"lookup_key\": \"text::20\",\n                \"defaultText\": \"Choose Approve or Reject?\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"ae5e5a15-17e7-4d5e-a3ce-18df3507c7df\",\n                \"key\": \"textbox\",\n                \"name\": \"Approval Number\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"e0d9b30d-9ede-4ae2-9681-1d15546a13e2\",\n                \"label\": {\n                    \"text\": \"Approval Number\"\n                },\n                \"order\": 484,\n                \"handle\": \"approval_number\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"546b7097-e518-4c9f-b124-6a87693af890\",\n                    \"name\": \"NWCCA Form\",\n                    \"order\": 2,\n                    \"is_main\": false\n                },\n                \"required\": false,\n                \"field_name\": \"custom::ae5e5a15-17e7-4d5e-a3ce-18df3507c7df\",\n                \"lookup_key\": \"text::19\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"278bc203-2cbd-4564-9334-a47f9895771a\",\n        \"created\": \"2019-12-09T11:29:13.031329-06:00\",\n        \"name\": \"8 week Onboarding Touch\",\n        \"fields\": [],\n        \"config\": {\n            \"blocks\": [],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"6fabe204-0e58-4e0a-882f-ac6b0aa2c8f5\",\n        \"created\": \"2019-12-09T11:28:51.129807-06:00\",\n        \"name\": \"7 month Onboarding touch\",\n        \"fields\": [],\n        \"config\": {\n            \"blocks\": [],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"42f1ee3b-ecb3-4bfd-8ba0-70b0dbea7462\",\n        \"created\": \"2019-08-21T13:08:31.469733-05:00\",\n        \"name\": \"Sales New Lead\",\n        \"fields\": [\n            {\n                \"id\": \"ceaf25ae-8c7a-4944-94cb-495b2ff1278c\",\n                \"order\": 0,\n                \"uid\": \"79c541bd-0740-44cc-80be-db4ddd714748\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"First Name\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"textbox\",\n                    \"name\": \"First Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"79c541bd-0740-44cc-80be-db4ddd714748\",\n                    \"label\": {\n                        \"text\": \"First Name\"\n                    },\n                    \"required\": true,\n                    \"field_name\": \"first_name\",\n                    \"isRequired\": true\n                },\n                \"created\": \"2019-08-21T13:10:05.517062-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"89e81b9d-3af1-4eaf-9d70-df40c2d6f7e2\",\n                \"order\": 1,\n                \"uid\": \"ace1350f-13b9-4df5-a9e6-6d85dfbe2172\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Last Name\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"textbox\",\n                    \"name\": \"Last Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"ace1350f-13b9-4df5-a9e6-6d85dfbe2172\",\n                    \"label\": {\n                        \"text\": \"Last Name\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"last_name\",\n                    \"isRequired\": false\n                },\n                \"created\": \"2019-08-21T13:10:05.517213-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"8b30ca4d-eb6d-4ecf-9e6f-c104779df81b\",\n                \"order\": 2,\n                \"uid\": \"c6d8d7cc-da8f-4ca4-9374-0bf19dbfbb04\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Email\",\n                \"type\": \"email\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"email\",\n                    \"name\": \"Email\",\n                    \"show\": true,\n                    \"type\": \"email\",\n                    \"uuid\": \"c6d8d7cc-da8f-4ca4-9374-0bf19dbfbb04\",\n                    \"label\": {\n                        \"text\": \"Email\"\n                    },\n                    \"required\": true,\n                    \"field_name\": \"email\",\n                    \"isRequired\": true\n                },\n                \"created\": \"2019-08-21T13:10:05.517280-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"82f886f2-bcfe-409a-95fb-6c982996d665\",\n                \"order\": 3,\n                \"uid\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Hobbies\",\n                \"type\": \"checkboxes\",\n                \"storage_type\": \"text_array\",\n                \"meta\": {\n                    \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"key\": \"checkboxes\",\n                    \"name\": \"Hobbies\",\n                    \"show\": true,\n                    \"type\": \"checkboxes\",\n                    \"uuid\": \"62c4d69f-80a4-4aec-9dd7-42a25e3e16c5\",\n                    \"label\": {\n                        \"text\": \"Hobbies\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"hobbies_1\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text_array::1\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2019-08-21T13:10:05.517339-05:00\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                        \"value\": \"Arts\"\n                    },\n                    {\n                        \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                        \"value\": \"Sports\"\n                    },\n                    {\n                        \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                        \"value\": \"Chess\"\n                    },\n                    {\n                        \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                        \"value\": \"Blogging\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"8fd581b9-8bff-491f-ae5e-531aeee83c50\",\n                \"order\": 4,\n                \"uid\": \"company_custom::49a4f81f-25eb-4d51-b4e2-65df7243928b\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Company Size\",\n                \"type\": \"dropdown\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"id\": \"49a4f81f-25eb-4d51-b4e2-65df7243928b\",\n                    \"key\": \"dropdown\",\n                    \"name\": \"Company Size\",\n                    \"show\": true,\n                    \"type\": \"dropdown\",\n                    \"uuid\": \"b39b6561-aa9a-4731-bcbc-76abc0ebd155\",\n                    \"label\": {\n                        \"text\": \"Company Size\"\n                    },\n                    \"order\": 87,\n                    \"handle\": \"company_size\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"ad587e48-c1a8-4e64-868f-c1a592e93d35\",\n                        \"name\": \"Company Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"company_custom::49a4f81f-25eb-4d51-b4e2-65df7243928b\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text::1\",\n                    \"defaultText\": \"Choose Company Size\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2019-08-21T13:10:05.517533-05:00\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"e8ec945d-af45-4ab4-85b3-961c53bf478d\",\n                        \"value\": \"1-10\"\n                    },\n                    {\n                        \"uuid\": \"9275bacc-ac36-41db-b4b0-0c15f2a64861\",\n                        \"value\": \">10\"\n                    }\n                ]\n            },\n            {\n                \"id\": \"9b512476-5172-4c3c-a9b5-1f308806bb3b\",\n                \"order\": 5,\n                \"uid\": \"0c410f5a-70f5-4169-bc6d-1a157ca5f4f6\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Amount\",\n                \"type\": \"price\",\n                \"storage_type\": \"number\",\n                \"meta\": {\n                    \"key\": \"price\",\n                    \"name\": \"Amount\",\n                    \"show\": true,\n                    \"type\": \"price\",\n                    \"uuid\": \"0c410f5a-70f5-4169-bc6d-1a157ca5f4f6\",\n                    \"label\": {\n                        \"text\": \"Amount\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"deal__amount\",\n                    \"isRequired\": false\n                },\n                \"created\": \"2019-08-21T13:10:05.517592-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"f0cbbbbd-2302-4b62-acc1-f12f092834d8\",\n                \"order\": 6,\n                \"uid\": \"82a54bfd-73ed-4085-9b7d-2504c7c145e6\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Deal Stage\",\n                \"type\": \"deal_stage_selector\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"deal_stage_selector\",\n                    \"name\": \"Stage\",\n                    \"show\": true,\n                    \"type\": \"deal_stage_selector\",\n                    \"uuid\": \"82a54bfd-73ed-4085-9b7d-2504c7c145e6\",\n                    \"label\": {\n                        \"text\": \"Deal Stage\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"deal__stage\",\n                    \"isRequired\": false\n                },\n                \"created\": \"2019-08-21T13:10:05.517647-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"37870b52-f81d-4ed1-944c-c65347e6ed8b\",\n                \"order\": 7,\n                \"uid\": \"deal_custom::d8488a4e-1e51-4ca6-b4dd-34cba89fe238\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Annual Budget\",\n                \"type\": \"price\",\n                \"storage_type\": \"number\",\n                \"meta\": {\n                    \"id\": \"d8488a4e-1e51-4ca6-b4dd-34cba89fe238\",\n                    \"key\": \"price\",\n                    \"name\": \"Annual Budget\",\n                    \"show\": true,\n                    \"type\": \"price\",\n                    \"uuid\": \"38071530-6205-42a3-ac31-0797dc8dfd9a\",\n                    \"label\": {\n                        \"text\": \"Annual Budget\"\n                    },\n                    \"order\": 17,\n                    \"handle\": \"annual_budget\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"2cc7d858-ad39-49e0-89ce-791115ae2318\",\n                        \"name\": \"Deal Info\",\n                        \"order\": 0,\n                        \"is_main\": true,\n                        \"pipeline_id\": \"56fa6322-4e26-41cf-ae48-8b68c0e39719\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"deal_custom::d8488a4e-1e51-4ca6-b4dd-34cba89fe238\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"numeric::1\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2019-08-21T13:10:05.517701-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"8d0ea401-29e2-4635-9476-6a4eb4bd9953\",\n                \"order\": 8,\n                \"uid\": \"5acbd26f-4389-417d-917f-2fc5c9d169dc\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Company - Contact\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"textbox\",\n                    \"name\": \"Company\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"5acbd26f-4389-417d-917f-2fc5c9d169dc\",\n                    \"label\": {\n                        \"text\": \"Company - Contact\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"company__name\",\n                    \"isRequired\": false\n                },\n                \"created\": \"2019-08-28T10:41:27.856210-05:00\",\n                \"choices\": []\n            },\n            {\n                \"id\": \"8b94e048-f903-46ea-9ab7-da2476c51e11\",\n                \"order\": 9,\n                \"uid\": \"28beef6d-dc08-4558-a179-edc49fd06135\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Company Name - Company\",\n                \"type\": \"textbox\",\n                \"storage_type\": \"text\",\n                \"meta\": {\n                    \"key\": \"textbox\",\n                    \"name\": \"Company Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"28beef6d-dc08-4558-a179-edc49fd06135\",\n                    \"label\": {\n                        \"text\": \"Company Name - Company\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"name\",\n                    \"isRequired\": false\n                },\n                \"created\": \"2019-08-28T10:41:27.856263-05:00\",\n                \"choices\": []\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"key\": \"textbox\",\n                    \"name\": \"First Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"79c541bd-0740-44cc-80be-db4ddd714748\",\n                    \"label\": {\n                        \"text\": \"First Name\"\n                    },\n                    \"required\": true,\n                    \"field_name\": \"first_name\"\n                },\n                {\n                    \"key\": \"textbox\",\n                    \"name\": \"Last Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"ace1350f-13b9-4df5-a9e6-6d85dfbe2172\",\n                    \"label\": {\n                        \"text\": \"Last Name\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"last_name\"\n                },\n                {\n                    \"key\": \"email\",\n                    \"name\": \"Email\",\n                    \"show\": true,\n                    \"type\": \"email\",\n                    \"uuid\": \"c6d8d7cc-da8f-4ca4-9374-0bf19dbfbb04\",\n                    \"label\": {\n                        \"text\": \"Email\"\n                    },\n                    \"required\": true,\n                    \"field_name\": \"email\"\n                },\n                {\n                    \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"key\": \"checkboxes\",\n                    \"name\": \"Hobbies\",\n                    \"show\": true,\n                    \"type\": \"checkboxes\",\n                    \"uuid\": \"62c4d69f-80a4-4aec-9dd7-42a25e3e16c5\",\n                    \"label\": {\n                        \"text\": \"Hobbies\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"hobbies_1\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"lookup_key\": \"text_array::1\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"id\": \"49a4f81f-25eb-4d51-b4e2-65df7243928b\",\n                    \"key\": \"dropdown\",\n                    \"name\": \"Company Size\",\n                    \"show\": true,\n                    \"type\": \"dropdown\",\n                    \"uuid\": \"b39b6561-aa9a-4731-bcbc-76abc0ebd155\",\n                    \"label\": {\n                        \"text\": \"Company Size\"\n                    },\n                    \"order\": 87,\n                    \"handle\": \"company_size\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"ad587e48-c1a8-4e64-868f-c1a592e93d35\",\n                        \"name\": \"Company Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"company_custom::49a4f81f-25eb-4d51-b4e2-65df7243928b\",\n                    \"lookup_key\": \"text::1\",\n                    \"defaultText\": \"Choose Company Size\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"key\": \"price\",\n                    \"name\": \"Amount\",\n                    \"show\": true,\n                    \"type\": \"price\",\n                    \"uuid\": \"0c410f5a-70f5-4169-bc6d-1a157ca5f4f6\",\n                    \"label\": {\n                        \"text\": \"Amount\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"deal__amount\"\n                },\n                {\n                    \"key\": \"deal_stage_selector\",\n                    \"name\": \"Stage\",\n                    \"show\": true,\n                    \"type\": \"deal_stage_selector\",\n                    \"uuid\": \"82a54bfd-73ed-4085-9b7d-2504c7c145e6\",\n                    \"label\": {\n                        \"text\": \"Deal Stage\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"deal__stage\"\n                },\n                {\n                    \"id\": \"d8488a4e-1e51-4ca6-b4dd-34cba89fe238\",\n                    \"key\": \"price\",\n                    \"name\": \"Annual Budget\",\n                    \"show\": true,\n                    \"type\": \"price\",\n                    \"uuid\": \"38071530-6205-42a3-ac31-0797dc8dfd9a\",\n                    \"label\": {\n                        \"text\": \"Annual Budget\"\n                    },\n                    \"order\": 17,\n                    \"handle\": \"annual_budget\",\n                    \"choices\": [],\n                    \"category\": {\n                        \"id\": \"2cc7d858-ad39-49e0-89ce-791115ae2318\",\n                        \"name\": \"Deal Info\",\n                        \"order\": 0,\n                        \"is_main\": true,\n                        \"pipeline_id\": \"56fa6322-4e26-41cf-ae48-8b68c0e39719\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"deal_custom::d8488a4e-1e51-4ca6-b4dd-34cba89fe238\",\n                    \"lookup_key\": \"numeric::1\",\n                    \"relationship_entity_type\": null,\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                {\n                    \"key\": \"textbox\",\n                    \"name\": \"Company\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"5acbd26f-4389-417d-917f-2fc5c9d169dc\",\n                    \"label\": {\n                        \"text\": \"Company - Contact\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"company__name\"\n                },\n                {\n                    \"key\": \"textbox\",\n                    \"name\": \"Company Name\",\n                    \"show\": true,\n                    \"type\": \"textbox\",\n                    \"uuid\": \"28beef6d-dc08-4558-a179-edc49fd06135\",\n                    \"label\": {\n                        \"text\": \"Company Name - Company\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"name\"\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"key\": \"textbox\",\n                \"name\": \"First Name\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"79c541bd-0740-44cc-80be-db4ddd714748\",\n                \"label\": {\n                    \"text\": \"First Name\"\n                },\n                \"required\": true,\n                \"field_name\": \"first_name\"\n            },\n            {\n                \"key\": \"textbox\",\n                \"name\": \"Last Name\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"ace1350f-13b9-4df5-a9e6-6d85dfbe2172\",\n                \"label\": {\n                    \"text\": \"Last Name\"\n                },\n                \"required\": false,\n                \"field_name\": \"last_name\"\n            },\n            {\n                \"key\": \"email\",\n                \"name\": \"Email\",\n                \"show\": true,\n                \"type\": \"email\",\n                \"uuid\": \"c6d8d7cc-da8f-4ca4-9374-0bf19dbfbb04\",\n                \"label\": {\n                    \"text\": \"Email\"\n                },\n                \"required\": true,\n                \"field_name\": \"email\"\n            },\n            {\n                \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"key\": \"checkboxes\",\n                \"name\": \"Hobbies\",\n                \"show\": true,\n                \"type\": \"checkboxes\",\n                \"uuid\": \"62c4d69f-80a4-4aec-9dd7-42a25e3e16c5\",\n                \"label\": {\n                    \"text\": \"Hobbies\"\n                },\n                \"order\": 484,\n                \"handle\": \"hobbies_1\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"lookup_key\": \"text_array::1\",\n                \"selectedBackgroundColor\": \"#2196f3\",\n                \"relationship_entity_type\": null,\n                \"unselectedBackgroundColor\": \"#FFFFFF\",\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"id\": \"49a4f81f-25eb-4d51-b4e2-65df7243928b\",\n                \"key\": \"dropdown\",\n                \"name\": \"Company Size\",\n                \"show\": true,\n                \"type\": \"dropdown\",\n                \"uuid\": \"b39b6561-aa9a-4731-bcbc-76abc0ebd155\",\n                \"label\": {\n                    \"text\": \"Company Size\"\n                },\n                \"order\": 87,\n                \"handle\": \"company_size\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"ad587e48-c1a8-4e64-868f-c1a592e93d35\",\n                    \"name\": \"Company Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"company_custom::49a4f81f-25eb-4d51-b4e2-65df7243928b\",\n                \"lookup_key\": \"text::1\",\n                \"defaultText\": \"Choose Company Size\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"key\": \"price\",\n                \"name\": \"Amount\",\n                \"show\": true,\n                \"type\": \"price\",\n                \"uuid\": \"0c410f5a-70f5-4169-bc6d-1a157ca5f4f6\",\n                \"label\": {\n                    \"text\": \"Amount\"\n                },\n                \"required\": false,\n                \"field_name\": \"deal__amount\"\n            },\n            {\n                \"key\": \"deal_stage_selector\",\n                \"name\": \"Stage\",\n                \"show\": true,\n                \"type\": \"deal_stage_selector\",\n                \"uuid\": \"82a54bfd-73ed-4085-9b7d-2504c7c145e6\",\n                \"label\": {\n                    \"text\": \"Deal Stage\"\n                },\n                \"required\": false,\n                \"field_name\": \"deal__stage\"\n            },\n            {\n                \"id\": \"d8488a4e-1e51-4ca6-b4dd-34cba89fe238\",\n                \"key\": \"price\",\n                \"name\": \"Annual Budget\",\n                \"show\": true,\n                \"type\": \"price\",\n                \"uuid\": \"38071530-6205-42a3-ac31-0797dc8dfd9a\",\n                \"label\": {\n                    \"text\": \"Annual Budget\"\n                },\n                \"order\": 17,\n                \"handle\": \"annual_budget\",\n                \"choices\": [],\n                \"category\": {\n                    \"id\": \"2cc7d858-ad39-49e0-89ce-791115ae2318\",\n                    \"name\": \"Deal Info\",\n                    \"order\": 0,\n                    \"is_main\": true,\n                    \"pipeline_id\": \"56fa6322-4e26-41cf-ae48-8b68c0e39719\"\n                },\n                \"required\": false,\n                \"field_name\": \"deal_custom::d8488a4e-1e51-4ca6-b4dd-34cba89fe238\",\n                \"lookup_key\": \"numeric::1\",\n                \"relationship_entity_type\": null,\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            },\n            {\n                \"key\": \"textbox\",\n                \"name\": \"Company\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"5acbd26f-4389-417d-917f-2fc5c9d169dc\",\n                \"label\": {\n                    \"text\": \"Company - Contact\"\n                },\n                \"required\": false,\n                \"field_name\": \"company__name\"\n            },\n            {\n                \"key\": \"textbox\",\n                \"name\": \"Company Name\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"28beef6d-dc08-4558-a179-edc49fd06135\",\n                \"label\": {\n                    \"text\": \"Company Name - Company\"\n                },\n                \"required\": false,\n                \"field_name\": \"name\"\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"ec83c9bc-d97d-466e-a752-ddc519246df5\",\n        \"created\": \"2019-08-13T09:49:52.660500-05:00\",\n        \"name\": \"Sales Debrief\",\n        \"fields\": [\n            {\n                \"id\": \"507f8d32-5661-4ac6-9aee-f60ded0ca05e\",\n                \"order\": 0,\n                \"uid\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"survey\": null,\n                \"form\": null,\n                \"name\": \"Hobbies\",\n                \"type\": \"checkboxes\",\n                \"storage_type\": \"text_array\",\n                \"meta\": {\n                    \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"key\": \"checkboxes\",\n                    \"name\": \"Hobbies\",\n                    \"show\": true,\n                    \"type\": \"checkboxes\",\n                    \"uuid\": \"e015c425-293d-4ec1-bc30-0c81b47a0872\",\n                    \"label\": {\n                        \"text\": \"Hobbies\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"hobbies_1\",\n                    \"choices\": [\n                        {\n                            \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                            \"value\": \"Arts\"\n                        },\n                        {\n                            \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                            \"value\": \"Sports\"\n                        },\n                        {\n                            \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                            \"value\": \"Chess\"\n                        },\n                        {\n                            \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                            \"value\": \"Blogging\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"isRequired\": false,\n                    \"lookup_key\": \"text_array::1\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                },\n                \"created\": \"2019-08-13T17:02:23.979487-05:00\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                        \"value\": \"Arts\"\n                    },\n                    {\n                        \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                        \"value\": \"Sports\"\n                    },\n                    {\n                        \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                        \"value\": \"Chess\"\n                    },\n                    {\n                        \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                        \"value\": \"Blogging\"\n                    }\n                ]\n            }\n        ],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"key\": \"checkboxes\",\n                    \"name\": \"Hobbies\",\n                    \"show\": true,\n                    \"type\": \"checkboxes\",\n                    \"uuid\": \"e015c425-293d-4ec1-bc30-0c81b47a0872\",\n                    \"label\": {\n                        \"text\": \"Hobbies\"\n                    },\n                    \"order\": 484,\n                    \"handle\": \"hobbies_1\",\n                    \"choices\": [\n                        {\n                            \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                            \"value\": \"Arts\"\n                        },\n                        {\n                            \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                            \"value\": \"Sports\"\n                        },\n                        {\n                            \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                            \"value\": \"Chess\"\n                        },\n                        {\n                            \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                            \"value\": \"Blogging\"\n                        }\n                    ],\n                    \"category\": {\n                        \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                        \"name\": \"Contact Info\",\n                        \"order\": 0,\n                        \"is_main\": true\n                    },\n                    \"required\": false,\n                    \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                    \"lookup_key\": \"text_array::1\",\n                    \"selectedBackgroundColor\": \"#2196f3\",\n                    \"relationship_entity_type\": null,\n                    \"unselectedBackgroundColor\": \"#FFFFFF\",\n                    \"can_select_multiple_related\": false,\n                    \"relationship_entity_subtype\": null\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"id\": \"0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"key\": \"checkboxes\",\n                \"name\": \"Hobbies\",\n                \"show\": true,\n                \"type\": \"checkboxes\",\n                \"uuid\": \"e015c425-293d-4ec1-bc30-0c81b47a0872\",\n                \"label\": {\n                    \"text\": \"Hobbies\"\n                },\n                \"order\": 484,\n                \"handle\": \"hobbies_1\",\n                \"choices\": [\n                    {\n                        \"uuid\": \"8e734154-90bf-4eac-b11e-06f9beb72b4c\",\n                        \"value\": \"Arts\"\n                    },\n                    {\n                        \"uuid\": \"db2338fb-aa5c-49e1-9883-8425024f341f\",\n                        \"value\": \"Sports\"\n                    },\n                    {\n                        \"uuid\": \"bca8b96d-edd6-48b1-95a3-dd9689040c09\",\n                        \"value\": \"Chess\"\n                    },\n                    {\n                        \"uuid\": \"f27887a6-1264-4306-b8af-1f6e500d43a5\",\n                        \"value\": \"Blogging\"\n                    }\n                ],\n                \"category\": {\n                    \"id\": \"fd937d66-99dc-4f1e-aa90-32f724950600\",\n                    \"name\": \"Contact Info\",\n                    \"order\": 0,\n                    \"is_main\": true\n                },\n                \"required\": false,\n                \"field_name\": \"custom::0cce0665-02d4-466b-b771-4d9c31cff476\",\n                \"lookup_key\": \"text_array::1\",\n                \"selectedBackgroundColor\": \"#2196f3\",\n                \"relationship_entity_type\": null,\n                \"unselectedBackgroundColor\": \"#FFFFFF\",\n                \"can_select_multiple_related\": false,\n                \"relationship_entity_subtype\": null\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": true\n    },\n    {\n        \"id\": \"30fa6b8a-82d3-494f-b76b-3e2ddcc832a8\",\n        \"created\": \"2019-08-01T10:06:41.810652-05:00\",\n        \"name\": \"Inbound Call\",\n        \"fields\": [],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"key\": \"date\",\n                    \"name\": \"Activity Date\",\n                    \"show\": true,\n                    \"type\": \"date\",\n                    \"uuid\": \"410f2004-54c0-46f0-af1d-91275628f8df\",\n                    \"label\": {\n                        \"text\": \"Activity Date\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"created_date\"\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"key\": \"date\",\n                \"name\": \"Activity Date\",\n                \"show\": true,\n                \"type\": \"date\",\n                \"uuid\": \"410f2004-54c0-46f0-af1d-91275628f8df\",\n                \"label\": {\n                    \"text\": \"Activity Date\"\n                },\n                \"required\": false,\n                \"field_name\": \"created_date\"\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": false\n    },\n    {\n        \"id\": \"b0bbec3d-0ce4-49d5-a3cd-358cfa991f66\",\n        \"created\": \"2019-08-01T10:06:41.810602-05:00\",\n        \"name\": \"Outbound Call\",\n        \"fields\": [],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"key\": \"date\",\n                    \"name\": \"Activity Date\",\n                    \"show\": true,\n                    \"type\": \"date\",\n                    \"uuid\": \"410f2004-54c0-46f0-af1d-91275628f8df\",\n                    \"label\": {\n                        \"text\": \"Activity Date\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"created_date\"\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"key\": \"date\",\n                \"name\": \"Activity Date\",\n                \"show\": true,\n                \"type\": \"date\",\n                \"uuid\": \"410f2004-54c0-46f0-af1d-91275628f8df\",\n                \"label\": {\n                    \"text\": \"Activity Date\"\n                },\n                \"required\": false,\n                \"field_name\": \"created_date\"\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": false\n    },\n    {\n        \"id\": \"53971e36-ec07-4444-b693-82e23096364c\",\n        \"created\": \"2019-08-01T10:06:41.810550-05:00\",\n        \"name\": \"Meeting\",\n        \"fields\": [],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"key\": \"date\",\n                    \"name\": \"Activity Date\",\n                    \"show\": true,\n                    \"type\": \"date\",\n                    \"uuid\": \"410f2004-54c0-46f0-af1d-91275628f8df\",\n                    \"label\": {\n                        \"text\": \"Activity Date\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"created_date\"\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"key\": \"date\",\n                \"name\": \"Activity Date\",\n                \"show\": true,\n                \"type\": \"date\",\n                \"uuid\": \"410f2004-54c0-46f0-af1d-91275628f8df\",\n                \"label\": {\n                    \"text\": \"Activity Date\"\n                },\n                \"required\": false,\n                \"field_name\": \"created_date\"\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": false\n    },\n    {\n        \"id\": \"5d1addbe-bc64-4127-ac01-fd8a9a603a38\",\n        \"created\": \"2019-08-01T10:06:41.810484-05:00\",\n        \"name\": \"Note\",\n        \"fields\": [],\n        \"config\": {\n            \"blocks\": [\n                {\n                    \"key\": \"date\",\n                    \"name\": \"Activity Date\",\n                    \"show\": true,\n                    \"type\": \"date\",\n                    \"uuid\": \"410f2004-54c0-46f0-af1d-91275628f8df\",\n                    \"label\": {\n                        \"text\": \"Activity Date\"\n                    },\n                    \"required\": false,\n                    \"field_name\": \"created_date\"\n                }\n            ],\n            \"version\": 1\n        },\n        \"rules\": {},\n        \"field_blocks\": [\n            {\n                \"key\": \"date\",\n                \"name\": \"Activity Date\",\n                \"show\": true,\n                \"type\": \"date\",\n                \"uuid\": \"410f2004-54c0-46f0-af1d-91275628f8df\",\n                \"label\": {\n                    \"text\": \"Activity Date\"\n                },\n                \"required\": false,\n                \"field_name\": \"created_date\"\n            }\n        ],\n        \"subscribers\": [],\n        \"can_delete\": false\n    }\n]"}],"_postman_id":"585e9bdd-3d79-4228-ae3c-dec1536535b4"},{"name":"Retrieve A Specified Activity Type","id":"704ab20a-fd82-468f-867f-0b912e8f34ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/activities/{{Activity_Type_UUID}}","description":"<p>The activity Type UUID can be used to specify which activity type you want to retrieve. Get a list of the UUID's by using the \"Retrieve all Activity Types Route\".</p>\n","urlObject":{"path":["activities","{{Activity_Type_UUID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"9931855b-ba11-4ba4-958a-0d22a048ac7d","name":"Retrieve A Specified Activity Type","originalRequest":{"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/activity-type/278bc203-2cbd-4564-9334-a47f9895771a"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 10 Dec 2020 19:55:42 GMT"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"234"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"278bc203-2cbd-4564-9334-a47f9895771a\",\n    \"created\": \"2019-12-09T11:29:13.031329-06:00\",\n    \"name\": \"8 week Onboarding Touch\",\n    \"fields\": [],\n    \"config\": {\n        \"blocks\": [],\n        \"version\": 1\n    },\n    \"rules\": {},\n    \"field_blocks\": [],\n    \"subscribers\": [],\n    \"can_delete\": true\n}"}],"_postman_id":"704ab20a-fd82-468f-867f-0b912e8f34ba"}],"id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c","description":"<p>Activities are manual tasks that team members log to standardize data input through your team's daily operations. Examples of Activities include meetings, phone calls, and presentations.To learn more about Activities, visit <a href=\"https://support.kizen.com/en/articles/2021116-what-are-activities\">here.</a></p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"dd500ee2-f304-4843-828a-9c5db1a36c02","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3faa2b3c-4145-4d5b-8f83-3cc26d6e9013","type":"text/javascript","exec":[""]}}],"_postman_id":"b3501f29-be4d-4a7c-bb9a-1d63832a146c"},{"name":"Automations","item":[{"name":"automation","item":[{"name":"Filters","item":[{"name":"Search automation by name","id":"4dce18a5-94e4-4e6c-9029-5f38d5c7db8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"and\": true,\n    \"query\": [\n        {\n            \"id\": \"UUID\",\n            \"and\": true,\n            \"filters\": [\n                {\n                    \"type\": \"automation2\",\n                    \"subtype\": \"name\",\n                    \"condition\": \"contains\",\n                    \"value\": \"test\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/search","description":"<p>Possible values for condition is \"=|!=|contains|!contains|starts_with|!starts_with|ends_with|!ends_with\"</p>\n","urlObject":{"path":["automation2","automation","search"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"6310c310-4f0e-4a40-9bc3-ad9d1a68f1f3","name":"Search automation by name","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"and\": true,\n    \"query\": [\n        {\n            \"id\": \"UUID\",\n            \"and\": true,\n            \"filters\": [\n                {\n                    \"type\": \"automation2\",\n                    \"subtype\": \"name\",\n                    \"condition\": \"contains\",\n                    \"value\": \"test\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{API_URL}}/automation2/automation/search?page_size=2","host":["{{API_URL}}"],"path":["automation2","automation","search"],"query":[{"key":"page_size","value":"2","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:39:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 20,\n    \"next\": \"https://staging.kizen.com/api/automation2/automation/search?page=2&page_size=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"bcc7c307-74cb-4f79-911a-1afa80135af8\",\n            \"name\": \"0 - Testing Conditions\",\n            \"created\": \"2021-05-17T23:11:03.853927-05:00\",\n            \"active\": true,\n            \"revision\": 4,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 2,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"0476a5fe-ec29-4eac-af04-f6fe725c3b2b\",\n            \"name\": \"Chuck Test\",\n            \"created\": \"2021-05-07T10:35:11.996185-05:00\",\n            \"active\": false,\n            \"revision\": 1,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"4dce18a5-94e4-4e6c-9029-5f38d5c7db8e"},{"name":"Search automation with different query param","id":"d8949c2d-aaaa-4674-85e1-be66bec101ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"url":"{{API_URL}}/automation2/automation/search?ordering=-name&search&group_id&page_size=2","urlObject":{"path":["automation2","automation","search"],"host":["{{API_URL}}"],"query":[{"description":{"content":"<p>possible values: status, field_model_name, number_active, number_paused, number_completed, created</p>\n","type":"text/plain"},"key":"ordering","value":"-name"},{"description":{"content":"<p>Applied on automation name and field model name</p>\n","type":"text/plain"},"key":"search","value":null},{"description":{"content":"<p>UUID. The automation group ID.</p>\n","type":"text/plain"},"key":"group_id","value":null},{"key":"page_size","value":"2"}],"variable":[]}},"response":[{"id":"a194e2e2-9932-4a50-86c5-1aaafb7a6d72","name":"Search automation with different query param","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"url":{"raw":"{{API_URL}}/automation2/automation/search?ordering=-name&search&group_id&page_size=2","host":["{{API_URL}}"],"path":["automation2","automation","search"],"query":[{"key":"ordering","value":"-name","description":"possible values: status, field_model_name, number_active, number_paused, number_completed, created"},{"key":"search","value":null,"description":"Applied on automation name and field model name"},{"key":"group_id","value":null,"description":"UUID. The automation group ID."},{"key":"page_size","value":"2","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:40:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 205,\n    \"next\": \"https://staging.kizen.com/api/automation2/automation/search?group_id=&ordering=-name&page=2&page_size=2&search=\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"075e60cb-1e56-4b95-98db-8809f611f408\",\n            \"name\": \"Zapier Test\",\n            \"created\": \"2021-05-08T10:11:37.251006-05:00\",\n            \"active\": true,\n            \"revision\": 3,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 3,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"7d436839-339e-41fc-bf6b-1b14a454d221\",\n            \"name\": \"zapiercustomobjecttest\",\n            \"created\": \"2021-05-08T10:22:49.918528-05:00\",\n            \"active\": true,\n            \"revision\": 3,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"d8949c2d-aaaa-4674-85e1-be66bec101ab"},{"name":"Search automation by status","id":"8431d042-cb6c-4085-9f9c-6e4baaeecf01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"and\": true,\n    \"query\": [\n        {\n            \"id\": \"UUID\",\n            \"and\": true,\n            \"filters\": [\n                {\n                    \"type\": \"automation2\",\n                    \"subtype\": \"status\",\n                    \"condition\": \"!=\",\n                    \"value\": \"inactive\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/search?page_size=3","description":"<p>Possible values for condition is \"=|!=\"\nPossible values for value is \"active|inactive\"</p>\n","urlObject":{"path":["automation2","automation","search"],"host":["{{API_URL}}"],"query":[{"key":"page_size","value":"3"}],"variable":[]}},"response":[{"id":"5bd9e8dc-b52a-4c2c-a655-766b1aa6cfe6","name":"Search automation by status","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"and\": true,\n    \"query\": [\n        {\n            \"id\": \"UUID\",\n            \"and\": true,\n            \"filters\": [\n                {\n                    \"type\": \"automation2\",\n                    \"subtype\": \"status\",\n                    \"condition\": \"!=\",\n                    \"value\": \"inactive\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{API_URL}}/automation2/automation/search?page_size=3","host":["{{API_URL}}"],"path":["automation2","automation","search"],"query":[{"key":"page_size","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:42:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 72,\n    \"next\": \"https://staging.kizen.com/api/automation2/automation/search?page=2&page_size=3\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"bcc7c307-74cb-4f79-911a-1afa80135af8\",\n            \"name\": \"0 - Testing Conditions\",\n            \"created\": \"2021-05-17T23:11:03.853927-05:00\",\n            \"active\": true,\n            \"revision\": 4,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 2,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"e5b7c235-1c50-459f-ba68-4d3caa78c38a\",\n            \"name\": \"111\",\n            \"created\": \"2021-05-06T15:27:53.250006-05:00\",\n            \"active\": true,\n            \"revision\": 3,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 810,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"8d720ea1-60e0-42ec-bc8e-fbd70b2508ee\",\n            \"name\": \"1 - contact - assign team & notify by email\",\n            \"created\": \"2021-05-17T17:06:49.185138-05:00\",\n            \"active\": true,\n            \"revision\": 4,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 1,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"8431d042-cb6c-4085-9f9c-6e4baaeecf01"},{"name":"Search automation by created date","id":"983ae182-ee28-4aa7-a3e6-f06e016c82ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"and\": true,\n    \"query\": [\n        {\n            \"id\": \"UUID\",\n            \"and\": true,\n            \"filters\": [\n                {\n                    \"type\": \"automation2\",\n                    \"subtype\": \"created\",\n                    \"condition\": \">\",\n                    \"value\": \"2021-05-17 10:20\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/search","description":"<p>Possible values for condition is \"=|&gt;|&gt;=|&lt;|&lt;=\"\nThe value format is YYYY-MM-DD</p>\n","urlObject":{"path":["automation2","automation","search"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"8dd9a34e-9170-43af-8b30-e00eabfe0427","name":"Search automation by created date","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"and\": true,\n    \"query\": [\n        {\n            \"id\": \"UUID\",\n            \"and\": true,\n            \"filters\": [\n                {\n                    \"type\": \"automation2\",\n                    \"subtype\": \"created\",\n                    \"condition\": \">\",\n                    \"value\": \"2021-05-17 10:20\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:44:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 12,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"1d41439a-d527-4d6d-9aa6-4949cb76550f\",\n            \"name\": \"2710 - Noncontact\",\n            \"created\": \"2021-05-18T19:38:44.528059-05:00\",\n            \"active\": true,\n            \"revision\": 2,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 1,\n            \"custom_object\": {\n                \"id\": \"de816bd0-4d0d-43a4-bd63-1a4c9c5b9d71\",\n                \"name\": \"2277_2277-object\",\n                \"description\": \"2277\",\n                \"entity_name\": \"2277 Object\",\n                \"object_name\": \"2277\",\n                \"object_class\": \"custom_objects\",\n                \"object_type\": \"pipeline\"\n            }\n        },\n        {\n            \"id\": \"2261de9d-4d97-4fef-8c8c-64588f14db8f\",\n            \"name\": \"automation with a go to automation step 8\",\n            \"created\": \"2021-05-18T10:35:05.388059-05:00\",\n            \"active\": false,\n            \"revision\": 1,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"412777ea-0984-4328-8c44-1d5f466881e3\",\n            \"name\": \"Field Updated (Trigger)\",\n            \"created\": \"2021-05-19T05:06:02.824666-05:00\",\n            \"active\": false,\n            \"revision\": 2,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"255e1900-8a2b-449b-9651-f80b13ed2551\",\n            \"name\": \"Hotels\",\n            \"created\": \"2021-05-18T20:09:13.465913-05:00\",\n            \"active\": false,\n            \"revision\": 1,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"9074e695-552a-49fb-b180-65e19ca63da2\",\n                \"name\": \"hotels_room\",\n                \"description\": \"Hotels\",\n                \"entity_name\": \"room\",\n                \"object_name\": \"Hotels\",\n                \"object_class\": \"custom_objects\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"3e78d0e1-4413-4490-a538-2f0008a355d9\",\n            \"name\": \"http test asit\",\n            \"created\": \"2021-05-19T02:46:58.951567-05:00\",\n            \"active\": true,\n            \"revision\": 6,\n            \"number_active\": 2,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"3fcaa49c-dc5a-429e-9e4f-6b9f46c606f7\",\n            \"name\": \"pohui\",\n            \"created\": \"2021-05-19T06:04:00.510968-05:00\",\n            \"active\": false,\n            \"revision\": 1,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"18b12785-6308-454f-9dce-cf4bf72456b5\",\n            \"name\": \"Sergey.S 1\",\n            \"created\": \"2021-05-19T03:21:23.671737-05:00\",\n            \"active\": true,\n            \"revision\": 27,\n            \"number_active\": 5,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"c007049d-2721-4512-aaae-18e824a5d193\",\n            \"name\": \"Sergey.S 2\",\n            \"created\": \"2021-05-19T05:24:49.786228-05:00\",\n            \"active\": false,\n            \"revision\": 2,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"1665a083-3ee9-427e-8d50-92ac0fac74be\",\n                \"name\": \"sergey-co2_sergey_s2\",\n                \"description\": \"Sergey CO2\",\n                \"entity_name\": \"sergey_s2\",\n                \"object_name\": \"Sergey CO2\",\n                \"object_class\": \"custom_objects\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"5c185f34-1b87-4b21-9bb2-b65b63620435\",\n            \"name\": \"test activity time\",\n            \"created\": \"2021-05-19T06:53:08.509913-05:00\",\n            \"active\": true,\n            \"revision\": 2,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"b0c007a7-a6d1-4d76-a66d-5da24a9d9a8d\",\n            \"name\": \"test automation\",\n            \"created\": \"2021-05-18T10:35:59.706869-05:00\",\n            \"active\": true,\n            \"revision\": 1,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"1d515740-0ad5-407b-974c-e53f07010de9\",\n            \"name\": \"test multiple actions\",\n            \"created\": \"2021-05-19T03:24:23.897032-05:00\",\n            \"active\": true,\n            \"revision\": 2,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 3,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"45efe91b-31ca-4195-a683-4f9189bd0c82\",\n            \"name\": \"test multiple activity\",\n            \"created\": \"2021-05-19T04:53:04.977796-05:00\",\n            \"active\": true,\n            \"revision\": 2,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 1,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"983ae182-ee28-4aa7-a3e6-f06e016c82ba"},{"name":"Search automation by number active|completed|paused","id":"d0e3f781-6ddf-4818-ac05-b3846b55b573","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"and\": true,\n    \"query\": [\n        {\n            \"id\": \"UUID\",\n            \"and\": true,\n            \"filters\": [\n                {\n                    \"type\": \"automation2\",\n                    \"subtype\": \"number_active\",\n                    \"condition\": \">\",\n                    \"value\": \"17\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/search","description":"<p>Possible values for condition is \"=|!=|&gt;|&gt;=|&lt;|&lt;=\"\nPossible values for subtype is number_active|number_paused|number_completed</p>\n","urlObject":{"path":["automation2","automation","search"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"8e400a3b-1a70-4850-a04b-fc6014697125","name":"Search automation by number active|completed|paused","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"and\": true,\n    \"query\": [\n        {\n            \"id\": \"UUID\",\n            \"and\": true,\n            \"filters\": [\n                {\n                    \"type\": \"automation2\",\n                    \"subtype\": \"number_active\",\n                    \"condition\": \">\",\n                    \"value\": \"17\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:46:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 4,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"6a4598d2-377e-4b26-997f-e33f8d87cc7a\",\n            \"name\": \"Automation Engine - Activity Logged (Trigger)_Sergey CO2\",\n            \"created\": \"2021-05-18T03:33:29.586005-05:00\",\n            \"active\": true,\n            \"revision\": 4,\n            \"number_active\": 18,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"bc7f96d6-fe9a-4078-abae-bcc9f45e2dbe\",\n            \"name\": \"Field Updated\",\n            \"created\": \"2021-05-06T04:49:14.665424-05:00\",\n            \"active\": false,\n            \"revision\": 8,\n            \"number_active\": 184,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"03549070-d8e0-4527-b9f7-48290deaf4ed\",\n            \"name\": \"Field Updated_Contacts\",\n            \"created\": \"2021-05-06T05:24:40.186463-05:00\",\n            \"active\": false,\n            \"revision\": 8,\n            \"number_active\": 239,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        },\n        {\n            \"id\": \"5fd17c0a-0430-4b37-b13c-6575fc6d3344\",\n            \"name\": \"new entity trigger_CO\",\n            \"created\": \"2021-05-07T09:46:01.087630-05:00\",\n            \"active\": true,\n            \"revision\": 4,\n            \"number_active\": 42,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n                \"name\": \"client_client\",\n                \"description\": \"Contacts\",\n                \"entity_name\": \"Contacts\",\n                \"object_name\": \"Contacts\",\n                \"object_class\": \"contacts\",\n                \"object_type\": \"standard\"\n            }\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"d0e3f781-6ddf-4818-ac05-b3846b55b573"}],"id":"bc25b5e3-bb39-43cf-8f55-26729ee5b047","description":"<p>Implement the Kizen search for automation</p>\n","_postman_id":"bc25b5e3-bb39-43cf-8f55-26729ee5b047"},{"name":"Start an automation","id":"d9064bc7-f0a4-4fa8-8b6c-e3d6ef85baf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{CLIENT_ID}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/{{AUTOMATION_ID}}/start","description":"<p>It's possible to run a trigger manually on a contact.\nThis will then activate the actions that are this trigger's children.</p>\n","urlObject":{"path":["automation2","automation","{{AUTOMATION_ID}}","start"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"7e3e86ec-a013-4abd-bbfe-fd5766133b66","name":"Start an automation","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"dc14d81f-e3ef-46dd-9361-0f6f91aa5c51\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/95732f8d-6a0b-42f6-b840-e249c54e8cfa/start"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 19 May 2021 15:48:34 GMT"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"21"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d9064bc7-f0a4-4fa8-8b6c-e3d6ef85baf4"},{"name":"Duplicate an Automation","id":"523fe390-1232-4361-8fb0-b0d613f9a7cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{X-API-Key}}","type":"text"},{"key":"X-USER-ID","value":"{{X-User-Id}}","type":"text"},{"key":"X-BUSINESS-ID","value":"{{X-Business-Id}}","type":"text"}],"url":"{{API_URL}}/automation2/automation/{{AUTOMATION_ID}}/duplicate","urlObject":{"path":["automation2","automation","{{AUTOMATION_ID}}","duplicate"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"0781b402-7854-4dcc-bc0a-fc8278aa59ac","name":"Duplicate an Automation","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{X-API-Key}}","type":"text"},{"key":"X-USER-ID","value":"{{X-User-Id}}","type":"text"},{"key":"X-BUSINESS-ID","value":"{{X-Business-Id}}","type":"text"}],"url":"{{API_URL}}/automation2/automation/9f62a028-1a5a-4aab-b454-386fb94f4668/duplicate"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 16:00:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"66"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVysuWQzAAANAvck5R0S66EPVKUopQnY1j4lH1KsVUvn5m7vpW2j9Yvej9FUV55hKMnBpJZQAzuQc9e08zSRj4vHHyEBDCgs7qq1KzJlFos3Qd8-FApvt-Wq-q2KSxSwzuZZdY9L8WKlvhNI0FnKvz4fINVsGBj0A2P7OycW9MfgSot8e7TXYawihH-wYZtOYZ9WBuqfYk3sa_kurpUdvxwFmAbqmxmQoeIO2mFA7mAI27NtYNEXgZ7pDNx27jbjHU1fVcumF0yd2gd_Lhmd4c03izQBdbg9oNHTXJL5YbOIi-AmShJZ9Vnp_SEUR2-NxcRSuYGZUpBtXp9AtQfl_L:1ljOcj:EJuKEoAti_cRNV_Oo8vWwX6v2l0; Domain=staging.kizen.com; expires=Thu, 19 May 2022 16:00:41 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"bbe35207-b10a-42d7-9eef-b99891ab1402\",\n    \"name\": \"Dillon's HTTP Automation (copy #2)\",\n    \"created\": \"2021-05-19T11:00:41.444189-05:00\",\n    \"active\": true,\n    \"revision\": 0,\n    \"triggers\": [\n        {\n            \"id\": \"5794819f-2c70-49ac-bc1c-a67a544a1848\",\n            \"trigger_type\": \"manual\"\n        }\n    ],\n    \"steps\": [\n        {\n            \"id\": \"912d0fcc-ae87-43cd-a280-56af929cecac\",\n            \"step_type\": \"http_request\",\n            \"order\": 0,\n            \"parent_step_id\": null,\n            \"action_http_request\": {\n                \"method\": \"POST\",\n                \"data_payload\": [\n                    {\n                        \"type\": \"text\",\n                        \"value\": \" \\\",\\n    \\\"email\\\": \\\"dillonautomation3@kizen.com\\\"\\n}\"\n                    },\n                    {\n                        \"type\": \"merge_field\",\n                        \"value\": \"first_name\"\n                    },\n                    {\n                        \"type\": \"text\",\n                        \"value\": \" \\\",\\n    \\\"last_name\\\": \\\" \"\n                    },\n                    {\n                        \"type\": \"merge_field\",\n                        \"value\": \"last_name\"\n                    },\n                    {\n                        \"type\": \"text\",\n                        \"value\": \"  \\\"\\n            ]\\n        }\\n    ],\\n    \\\"first_name\\\": \\\" \"\n                    },\n                    {\n                        \"type\": \"merge_field\",\n                        \"value\": \"3404beea-0c4f-4f8b-a4dd-5dfd87a2a684\"\n                    },\n                    {\n                        \"type\": \"text\",\n                        \"value\": \"{\\n    \\\"fields\\\": [\\n        {\\n            \\\"field\\\": \\\"f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce\\\",\\n            \\\"values\\\": [\\n                \\\"  \"\n                    }\n                ],\n                \"url_parts\": [\n                    {\n                        \"type\": \"text\",\n                        \"value\": \"https://staging.kizen.com/api/client\"\n                    }\n                ],\n                \"pretty_data_payload\": \" \\\",    \\\"email\\\": \\\"dillonautomation3@kizen.com\\\"}first_name \\\",    \\\"last_name\\\": \\\" last_name  \\\"            ]        }    ],    \\\"first_name\\\": \\\" 3404beea-0c4f-4f8b-a4dd-5dfd87a2a684{    \\\"fields\\\": [        {            \\\"field\\\": \\\"f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce\\\",            \\\"values\\\": [                \\\"  \",\n                \"headers\": {\n                    \"x-api-key\": \"test\",\n                    \"x-business-id\": \"test\",\n                    \"x-user-id\": \"test\",\n                    \"accept\": \"application/json\",\n                    \"content-type\": \"application/json\"\n                }\n            }\n        }\n    ],\n    \"number_active\": 0,\n    \"number_paused\": 0,\n    \"number_completed\": 0,\n    \"custom_object\": {\n        \"id\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n        \"name\": \"client_client\",\n        \"description\": \"Contacts\",\n        \"entity_name\": \"Contacts\",\n        \"object_name\": \"Contacts\",\n        \"object_class\": \"contacts\",\n        \"object_type\": \"standard\"\n    }\n}"}],"_postman_id":"523fe390-1232-4361-8fb0-b0d613f9a7cb"},{"name":"Get Automations","id":"9960a9a2-b025-4dd6-91e1-be43a908f954","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation?ordering=custom_object_name&page_size=2","urlObject":{"path":["automation2","automation"],"host":["{{API_URL}}"],"query":[{"disabled":true,"description":{"content":"<p>Search is based on automation name and custom object name</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Possible values: name, custom_object_name, status, number_active, number_paused, number_completed, created</p>\n","type":"text/plain"},"key":"ordering","value":"custom_object_name"},{"description":{"content":"<p>Limits the response</p>\n","type":"text/plain"},"key":"page_size","value":"2"}],"variable":[]}},"response":[{"id":"b6ba6dfe-b3d3-49b8-9d20-19b47b7ea531","name":"Get Automations","originalRequest":{"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{API_URL}}/automation2/automation?ordering=custom_object_name&page_size=2","host":["{{API_URL}}"],"path":["automation2","automation"],"query":[{"key":"search","value":"","description":"Search is based on automation name and custom objectl name","disabled":true},{"key":"ordering","value":"custom_object_name","description":"Possible values: name, custom_object_name, status, number_active, number_paused, number_completed, created"},{"key":"page_size","value":"2","description":"Limits the response"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 15:51:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 205,\n    \"next\": \"https://staging.kizen.com/api/automation2/automation?ordering=custom_object_name&page=2&page_size=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"3d19bc0f-4740-4c83-ac75-b843207f62f9\",\n            \"name\": \"Automation Object Column Display\",\n            \"created\": \"2021-05-13T08:18:16.291074-05:00\",\n            \"active\": false,\n            \"revision\": 1,\n            \"number_active\": 0,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"de816bd0-4d0d-43a4-bd63-1a4c9c5b9d71\",\n                \"name\": \"2277_2277-object\",\n                \"description\": \"2277\",\n                \"entity_name\": \"2277 Object\",\n                \"object_name\": \"2277\",\n                \"object_class\": \"custom_objects\",\n                \"object_type\": \"pipeline\"\n            }\n        },\n        {\n            \"id\": \"594e357c-11fc-4a72-b0f3-3059110dcb2c\",\n            \"name\": \"2496 (Object)\",\n            \"created\": \"2021-05-14T15:45:29.084819-05:00\",\n            \"active\": true,\n            \"revision\": 6,\n            \"number_active\": 1,\n            \"number_paused\": 0,\n            \"number_completed\": 0,\n            \"custom_object\": {\n                \"id\": \"de816bd0-4d0d-43a4-bd63-1a4c9c5b9d71\",\n                \"name\": \"2277_2277-object\",\n                \"description\": \"2277\",\n                \"entity_name\": \"2277 Object\",\n                \"object_name\": \"2277\",\n                \"object_class\": \"custom_objects\",\n                \"object_type\": \"pipeline\"\n            }\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"9960a9a2-b025-4dd6-91e1-be43a908f954"},{"name":"Get Single Automation","id":"11c39777-8d24-4bf5-b036-e99dd6170d5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/{{AUTOMATION_ID}}","urlObject":{"path":["automation2","automation","{{AUTOMATION_ID}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"11c39777-8d24-4bf5-b036-e99dd6170d5b"},{"name":"Delete automation","id":"8fbf04d0-33a5-4551-8719-6b5b264bf9fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/{{AUTOMATION_ID}}","urlObject":{"path":["automation2","automation","{{AUTOMATION_ID}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"23385b0c-f4bf-4709-85eb-29bd8d3b0bf3","name":"Delete automation","originalRequest":{"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation/4cb6dfd2-9cba-4f66-8bbc-8f91351cf257"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 19 May 2021 15:58:31 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"25"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8fbf04d0-33a5-4551-8719-6b5b264bf9fd"}],"id":"ed71e520-bbae-45aa-9ceb-32eb7136d74f","description":"<p>CRUD automation</p>\n","_postman_id":"ed71e520-bbae-45aa-9ceb-32eb7136d74f"},{"name":"trigger","item":[{"name":"Create trigger when a field is updated","id":"cbf9703d-a65c-4a2e-8dfd-b9e7eb91066d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"field_updated\",\n    \"trigger_field_updated\": {\n        \"field_id\": \"3b217f46-04aa-46f6-9d2c-39499b605b76\" \n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>The request body needs \"trigger_field_updated\" which contains a \"field_id\" that needs to be a (new) custom field ID</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cbf9703d-a65c-4a2e-8dfd-b9e7eb91066d"},{"name":"Create manual trigger","id":"16ad23d9-2b93-4dc2-a725-ddb690ed8ed8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"manual\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>The request body needs \"trigger_field_updated\" which contains a \"field_id\" that needs to be a (new) custom field ID</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"16ad23d9-2b93-4dc2-a725-ddb690ed8ed8"},{"name":"Create trigger when a tag is added","id":"6dc82e5d-a773-4fe6-a2b9-f0112eba68f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"tag_added_contact\",\n    \"trigger_tag_added_contact\": {\n        \"tag_ids\": [\"ba9037ab-3f41-480c-9b1e-4432912acf3c\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>The request body needs \"trigger_tag_added_contact\" which contains a \"tag_ids\" which is an array of tag ID.</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6dc82e5d-a773-4fe6-a2b9-f0112eba68f3"},{"name":"Create trigger when a new contact is created","id":"2ef2fda6-a81f-4a3c-b028-694cd4f53520","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"aa929670-3860-4c39-b752-5fcf86b94f27\",\n    \"trigger_type\": \"new_client_created\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>The request body needs \"trigger_tag_added_contact\" which contains a \"tag_ids\" which is an array of tag ID.</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ef2fda6-a81f-4a3c-b028-694cd4f53520"},{"name":"Create trigger when a form is submitted","id":"943edc59-de67-4b5c-9847-458c40addbfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"form_submitted\",\n    \"trigger_form_submitted\": {\n        \"form_id\": \"39441b7d-73c0-4808-9ae0-ce4e81894dfb\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"943edc59-de67-4b5c-9847-458c40addbfc"},{"name":"Create trigger when an activity is logged","id":"5eb807b3-413e-4bd1-9488-4c4c9511b05c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"activity_logged\",\n    \"trigger_activity_logged\": {\n        \"activity_type_id\": \"810f1813-3b6e-443e-baee-7a38719265dd\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>The request body needs \"trigger_activity_logged\" which contains a \"activity_type_id\".</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5eb807b3-413e-4bd1-9488-4c4c9511b05c"},{"name":"Create trigger when a survey is submitted","id":"6b518da5-497f-461a-9b45-cddcfcb3cfbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"survey_submitted\",\n    \"trigger_survey_submitted\": {\n        \"survey_id\": \"6ebebf8d-4652-4b47-9bcb-46880bdb658f\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b518da5-497f-461a-9b45-cddcfcb3cfbf"},{"name":"Create trigger when an email is delivered","id":"203a29fb-85e4-4c9e-94fb-613240866ad9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"email_delivered\",\n    \"trigger_email_delivered\": {\n        \"email_template_id\": \"1d348eab-eec9-4665-b770-7a8b66340bb5\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"203a29fb-85e4-4c9e-94fb-613240866ad9"},{"name":"Create trigger when an email interaction happens","id":"78b46963-b10a-4458-91e3-89358a4b454b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"email_interaction\",\n    \"trigger_email_interaction\": {\n        \"email_template_id\": \"1d348eab-eec9-4665-b770-7a8b66340bb5\",\n        \"name\": \"opened\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>For now the only value for \"name\" is \"opened\". Other interactions will be supported in the future like \"clicked\", \"bounced\", etc.</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"78b46963-b10a-4458-91e3-89358a4b454b"},{"name":"Create trigger when a custom interaction happened","id":"5ef2e119-9a1a-446a-9752-4b32c56e7c6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"interaction_occurred\",\n    \"trigger_interaction_occurred\": {\n        \"interaction_type_id\": \"430434e2-2711-4575-b67c-2aec387daaab\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>To create a new custom interaction, you can use the \"interaction/Create interaction\" request then use \"interaction/interaction list\" to get the \"interaction_type_id\".</p>\n<p>To simulate a custom interaction happening on a client, you can use the same  \"interaction/Create interaction\"  request.</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ef2e119-9a1a-446a-9752-4b32c56e7c6f"},{"name":"Update trigger","id":"c74fe2c7-16d0-4ed5-8468-ea8b36da5fd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"manual\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger/0c513b22-f297-42ac-b1d1-20d90aa33dc0","urlObject":{"path":["automation2","trigger","0c513b22-f297-42ac-b1d1-20d90aa33dc0"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c74fe2c7-16d0-4ed5-8468-ea8b36da5fd4"},{"name":"Delete trigger","id":"11160d23-f6e3-4bca-a610-9d84a2dcda58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"a new name\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger/caf4db51-33c8-46b8-a6b3-fbb2b5bd9a6a","urlObject":{"path":["automation2","trigger","caf4db51-33c8-46b8-a6b3-fbb2b5bd9a6a"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"11160d23-f6e3-4bca-a610-9d84a2dcda58"},{"name":"Create on or around date trigger.","id":"a41f28c2-67af-49f3-9f60-d3587d63ef57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"on_or_around_date\",\n    \"trigger_on_or_around_date\": {\n        \"field_id\": \"be037a2d-82b6-48a9-9bb8-d71c17f721e3\",\n        \"date_offset\": \"days_before\",\n        \"time\": \"12:00\",\n        \"period\": \"pm\",\n        \"date_offset_days\": 2,\n        \"every_year\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>possible options for date_offset field: \"on_day|days_before|days_after\" # case sensitive.\nperiod: \"am|pm\" # case insensitive.</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"e219df54-6249-48f1-9485-df26414ec492","name":"Create on or around date trigger.","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"on_or_around_date\",\n    \"trigger_on_or_around_date\": {\n        \"field_id\": \"a365cb7b-7f84-40bc-b776-8da53919cfa1\",\n        \"date_offset\": \"days_before\",\n        \"time\": \"12:00\",\n        \"period\": \"pm\",\n        \"date_offset_days\": 2\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 19 Nov 2020 19:56:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"18a0e336-e23f-4d67-8d2c-da6c323d3551\",\n    \"automation\": {\n        \"id\": \"0b8723ef-b886-43df-907f-22c440944ec7\",\n        \"name\": \"josh\",\n        \"active\": true\n    },\n    \"trigger_type\": \"on_or_around_date\",\n    \"trigger_field_updated\": null,\n    \"trigger_tag_added_contact\": null,\n    \"trigger_activity_logged\": null,\n    \"trigger_form_submitted\": null,\n    \"trigger_survey_submitted\": null,\n    \"trigger_email_delivered\": null,\n    \"trigger_interaction_occurred\": null,\n    \"trigger_on_or_around_date\": {\n        \"field\": {\n            \"id\": \"a365cb7b-7f84-40bc-b776-8da53919cfa1\",\n            \"model\": \"d8ff1ab7-d732-4005-864b-f21ed4248bca\",\n            \"category\": \"6bb0474e-e634-4470-b5e8-6467f1f07477\",\n            \"name\": \"birthday\",\n            \"description\": \"Birthday\",\n            \"is_default\": true,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 10,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null\n        },\n        \"date_offset\": \"days_before\",\n        \"time\": \"12:00\",\n        \"period\": \"pm\",\n        \"date_offset_days\": 2\n    }\n}"}],"_postman_id":"a41f28c2-67af-49f3-9f60-d3587d63ef57"},{"name":"Create a website visited trigger","id":"d6259f2c-a699-4b49-8935-167d91b74b19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"website_visited\",\n    \"trigger_website_visited\": {\n        \"url\": \"https://staging.kizen.com\" \n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d6259f2c-a699-4b49-8935-167d91b74b19"},{"name":"Create trigger when an email attachment has been opened","id":"2f9f9d9f-6f44-45d3-a999-c907321f0d01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"email_interaction\",\n    \"trigger_email_interaction\": {\n        \"email_template_id\": \"a70f01fb-8f57-4a2e-9a0b-defee8d8e99e\",\n        \"name\": \"attachment_opened\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f9f9d9f-6f44-45d3-a999-c907321f0d01"},{"name":"Create trigger when an email link has been clicked","id":"a4f17dbc-c6ef-4c27-9807-71fe04627ae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"trigger_type\": \"email_interaction\",\n    \"trigger_email_interaction\": {\n        \"email_template_id\": \"a70f01fb-8f57-4a2e-9a0b-defee8d8e99e\",\n        \"name\": \"link_clicked\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a4f17dbc-c6ef-4c27-9807-71fe04627ae3"}],"id":"01413433-0c1f-4e0b-b376-46c6bb765846","description":"<p>CRUD automation</p>\n","_postman_id":"01413433-0c1f-4e0b-b376-46c6bb765846"},{"name":"step","item":[{"name":"Create step to change field","id":"0c28d06e-3ce9-4d6b-a97c-7bee1f5cac4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"af9f7370-3c49-4099-9ce5-1839c6798940\",\n    \"step_type\": \"change_field\",\n    \"action_change_field\": {\n        \"field_id\": \"719c3e62-9029-4c97-9a29-e8b375feeb36\", \n        \"new_values\": [\"test text\"]\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","description":"<p>Currently only \"change_field\" is supported. All fields in the example are required, except otherwise stated.</p>\n","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"68fb5a6b-c21d-496e-8390-a346ab7af4b5","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"0c28d06e-3ce9-4d6b-a97c-7bee1f5cac4a"},{"name":"Create step send survey","id":"bec5709e-16e7-46cb-8f6c-b8e276e7234d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"753c0897-18cf-43aa-a20b-839539e348ee\",\n    \"step_type\": \"send_survey\",\n    \"action_send_survey\": {\n        \"survey_id\": \"0840a4ab-2a50-4890-a0ea-4245c26874f6\"\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","description":"<p>Currently only \"change_field\" is supported. All fields in the example are required, except otherwise stated.</p>\n","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"9f87d66b-b64f-4c93-8722-8a0aee4dafe0","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"bec5709e-16e7-46cb-8f6c-b8e276e7234d"},{"name":"Create/update step schedule activity","id":"667ca9ab-ee34-436b-a5e2-56551e41d2b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"0d811b49-96e3-4414-ae24-8e3fda6ff82b\",\n    \"step_type\": \"schedule_activity\",\n    \"action_schedule_activity\": {\n        \"note\": \"NOTES\",\n        \"activity_type_id\": \"7246477a-4de5-4737-8507-9812471ce824\",\n        \"employee_id\": \"3746199f-7aaa-4cd1-80b4-d2b9a40d5246\",\n        \"notifications\": [\n            {\n                \"type\": \"email\",\n                \"time_unit\": \"minute\",\n                \"time_amount\": 20\n            }\n        ],\n        \"schedule\": {\n            \"type\": \"with_delay\",\n            \"with_delay\": {\n                \"delay_type\": \"minute\",\n                \"delay_value\": 20\n            }\n        }\n    },\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","description":"<p>To have the automation_id, you can use the \"automation2/create automation\" request.\nTo create a new activity type, you can use the \"activities/create activity type\" request.\nTo have the employee_id, you can use the \"My employee config\" endpoint</p>\n","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"2f1a56bc-cbd1-4dd1-aa0f-2007b2b9487c","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"667ca9ab-ee34-436b-a5e2-56551e41d2b8"},{"name":"Update step send survey","id":"a0213ba9-d965-4dce-afac-6b198947c193","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"753c0897-18cf-43aa-a20b-839539e348ee\",\n    \"step_type\": \"send_survey\",\n    \"action_send_survey\": {\n        \"survey_id\": \"0840a4ab-2a50-4890-a0ea-4245c26874f6\"\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step/4ad32dab-fec0-4857-bc92-1a64720c7eb2","description":"<p>Currently only \"change_field\" is supported. All fields in the example are required, except otherwise stated.</p>\n","urlObject":{"path":["automation2","step","4ad32dab-fec0-4857-bc92-1a64720c7eb2"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"b30c6d6f-cad6-46eb-8773-4608bfcf8679","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"a0213ba9-d965-4dce-afac-6b198947c193"},{"name":"List all steps","id":"a6cede0c-dc5c-42f9-a3ce-c21d8a34f2b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","description":"<p>Currently only \"change_field\" is supported. All fields in the example are required, except otherwise stated.</p>\n","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"256d6344-facf-47b0-840e-9bacad6509f9","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"a6cede0c-dc5c-42f9-a3ce-c21d8a34f2b8"},{"name":"Update step","id":"fc45a2b6-6e2e-4ecb-b99e-9f43407f94dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"6493cea6-cb00-469d-b686-4f49e10baaa5\", \n    \"new_values\": [\"2020-09-26\"]},\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step/778c150a-3fa0-4cde-85d6-615c53d2ad2c","urlObject":{"path":["automation2","step","778c150a-3fa0-4cde-85d6-615c53d2ad2c"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc45a2b6-6e2e-4ecb-b99e-9f43407f94dd"},{"name":"Delete step","id":"1a9917fb-77d7-4137-a430-001b4b0bee70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step/57b4be32-85b1-4dfd-952b-ff059efc2a72","urlObject":{"path":["automation2","step","57b4be32-85b1-4dfd-952b-ff059efc2a72"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a9917fb-77d7-4137-a430-001b4b0bee70"},{"name":"Create step to send text","id":"dd005668-e340-48c4-b38a-5f616d26af2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"send_text\",\n    \"action_send_text\": {\n        \"message_body\": \"test\"\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"cb3fc03b-c9a9-4ce0-b86b-be56df8a8c45","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"dd005668-e340-48c4-b38a-5f616d26af2b"},{"name":"Update send text action","id":"1ccb1e00-495e-4d68-9f4c-bb91b32e2f1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"send_text\",\n    \"action_send_text\": {\"message_body\": \"updated_message\"},\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step/a53bf1e7-5a4a-469e-a68c-09774e7c9273","urlObject":{"path":["automation2","step","a53bf1e7-5a4a-469e-a68c-09774e7c9273"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"efb50bb1-5ac6-4b63-b159-509460bb687e","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"1ccb1e00-495e-4d68-9f4c-bb91b32e2f1f"},{"name":"Update send email action","id":"0e9828a8-5e03-46d3-80c9-6580c0ff47df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"send_email\",\n    \"action_send_email\": {\n        \"email_id\": \"9e80b582-e1bb-41d0-884c-aaeb799f4c65\",\n        \"email_subject\": \"why are we still passing this!\",\n        \"hardcoded_from_name\": \"asit from kizen while updating\",\n        \"from_user\": {\n            \"type\": \"last_active\"\n        }\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step/7f00bea1-b0e8-4853-b822-189fce1edb47","urlObject":{"path":["automation2","step","7f00bea1-b0e8-4853-b822-189fce1edb47"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"f01e43f1-390f-4f08-876d-d8a2240350ae","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"0e9828a8-5e03-46d3-80c9-6580c0ff47df"},{"name":"Create delay step","id":"2ad329a6-0576-422a-95d7-32d788940147","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"delay\",\n    \"step_delay\": {\n        \"days_specific_time\": {\n            \"days\": 1,\n            \"time\": \"11:52\"\n        }\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"d7bf172f-7d6e-4ca0-a301-d6a560433662","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"2ad329a6-0576-422a-95d7-32d788940147"},{"name":"update delay step","id":"7ddf3422-9560-47aa-a318-8a5570b71e97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"delay\",\n    \"step_delay\": {\n        \"days_specific_time\": {\n            \"days\": 2,\n            \"time\": \"11:52\"\n        }\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step/ed38baf1-6941-4128-a8ec-b91bd386693f","urlObject":{"path":["automation2","step","ed38baf1-6941-4128-a8ec-b91bd386693f"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3f5e054b-2241-4f5a-b3e0-32a1764e4dd3","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"7ddf3422-9560-47aa-a318-8a5570b71e97"},{"name":"Create condition step","id":"d02235ea-fa8b-4563-8e5a-d880185c3965","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"condition\",\n    \"step_condition\": {\n        \"config\": {\n            \"and\": true,\n            \"query\": [\n                {\n                    \"id\": \"filter-uuid\",\n                    \"and\": true,\n                    \"filters\": [\n                        {\n                            \"type\": \"automation2\",\n                            \"subtype\": \"automation\",\n                            \"automation_id\": \"{{AUTOMATION_ID}}\",\n                            \"status\": \"paused\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"yes_step_id\": \"2055ac6a-a5de-4d6b-a333-caed27b55650\",\n        \"no_step_id\": \"89b33941-d7c2-4f0c-8900-a76f001e1490\"\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3daebfd8-30a5-45bd-b7b6-15fa5bffe6e7","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"d02235ea-fa8b-4563-8e5a-d880185c3965"},{"name":"Create change tags action","id":"565943b2-b55f-4322-b5c0-1cd0a99ca7e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"change_tags\",\n    \"action_change_tags\": {\n        \"tags_to_add\": [{\n            \"id\": \"tag-id\",\n            \"name\": \"tag name\"\n        }],\n        \"tags_to_remove\": [\n            \"tag-id\"\n        ]\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"79610059-7b8c-42a5-a079-b4857b8104d7","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"565943b2-b55f-4322-b5c0-1cd0a99ca7e3"},{"name":"Create start automation action","id":"fe391ee0-7d94-4383-acf5-40fe44ac0c5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"start_cancel_automation\",\n    \"action_start_cancel_automation\": {\n        \"action_type\": \"start\",\n        \"automation_id\": \"cfd2d098-9f16-4500-b237-5786fbbd62f3\"\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"974fa461-8e1a-4fe2-9b62-2aa3a9f969a7","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"fe391ee0-7d94-4383-acf5-40fe44ac0c5f"},{"name":"Create start sequence action","id":"e4cf0ee3-dd36-44f2-b133-f893ba2e0bcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"start_cancel_sequence\",\n    \"action_start_cancel_sequence\": {\n        \"action_type\": \"start\",\n        \"sequence_id\": \"44f37eb1-7c46-4fd8-9d5b-cb4582135620\"\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"ad5b89e2-863c-4087-997b-89b3b4b7b11e","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"e4cf0ee3-dd36-44f2-b133-f893ba2e0bcf"},{"name":"Create cancel automation action","id":"3ccc9f44-8f8d-4e88-bfc9-7535bd1499f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"start_cancel_automation\",\n    \"action_start_cancel_automation\": {\n        \"action_type\": \"cancel\",\n        \"automation_id\": \"cfd2d098-9f16-4500-b237-5786fbbd62f3\"\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"6ea7c877-cd06-4d6c-a0f6-5a8ce27d5a98","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"3ccc9f44-8f8d-4e88-bfc9-7535bd1499f4"},{"name":"Create cancel sequence action","id":"df2d3833-9176-413a-b3e1-6a8031cb5818","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"start_cancel_sequence\",\n    \"action_start_cancel_sequence\": {\n        \"action_type\": \"cancel\",\n        \"sequence_id\": \"44f37eb1-7c46-4fd8-9d5b-cb4582135620\"\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"4fdc7f63-cc63-4e71-8477-71866c9f72c3","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"df2d3833-9176-413a-b3e1-6a8031cb5818"},{"name":"Create send email action","id":"e65e73fd-61a7-445a-b0cf-a8109270d295","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"send_email\",\n    \"action_send_email\": {\n        \"email_id\": \"9e80b582-e1bb-41d0-884c-aaeb799f4c65\",\n        \"email_subject\": \"why are we still passing this!\",\n        \"hardcoded_from_name\": \"asit from kizen\",\n        \"from_user\": {\n            \"type\": \"last_active\"\n        }\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"21abdfcd-c700-42eb-a586-90a224abde62","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"e65e73fd-61a7-445a-b0cf-a8109270d295"},{"name":"Create notify member via email action","id":"693ceeb1-0dea-4fe5-8be5-72dd385e5f1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"notify_member_via_email\",\n    \"action_notify_member_via_email\": {\n        \"email_id\": \"9e80b582-e1bb-41d0-884c-aaeb799f4c65\",\n        \"team_member\": {\n            \"type\": \"last_active\"\n        }\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"61a4b265-d053-4f2b-811c-00c416609200","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"693ceeb1-0dea-4fe5-8be5-72dd385e5f1c"},{"name":"Create notify member via text action","id":"730cbd53-a029-4917-aa93-e0e5d4d11e1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"notify_member_via_text\",\n    \"action_notify_member_via_text\": {\n        \"text_body\": \"hi\",\n        \"team_member\": {\n            \"type\": \"last_active\"\n        }\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"161f3550-9238-4d9e-a294-a5d858c10b7e","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"730cbd53-a029-4917-aa93-e0e5d4d11e1f"},{"name":"Create assign team member action","id":"76675996-a52b-420d-ad08-dd6a6c8b954d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"step_type\": \"notify_member_via_text\",\n    \"action_notify_member_via_text\": {\n        \"text_body\": \"hi\",\n        \"team_member\": {\n            \"type\": \"last_active\"\n        }\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"86e0bc32-05d5-458a-9144-dda8be03de26","name":"Create action","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{AUTOMATION_ID}}\",\n    \"action_type\": \"change_field\",\n    \"action_change_field\": {\"field_id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\", \n    \"new_values\": [\"2020-09-15\"]},\n    \"parent_action_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 15 Sep 2020 11:42:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33309a40-d06d-46f1-a35b-9c83b752425f\",\n    \"automation\": {\n        \"id\": \"3fb50338-d3dc-49d7-a341-f04c87aaaa9d\",\n        \"name\": \"a new automation\",\n        \"active\": false\n    },\n    \"action_type\": \"change_field\",\n    \"parent_action\": null,\n    \"action_change_field\": {\n        \"field\": {\n            \"id\": \"5a94069d-960f-48a5-8392-1ce78bad199d\",\n            \"model\": \"1ba24c70-ca00-4f16-a175-5520c30d01db\",\n            \"category\": \"9639a73e-f3ab-4f12-8c8b-675bbf40c20d\",\n            \"name\": \"son_date\",\n            \"description\": \"Son Date\",\n            \"is_default\": false,\n            \"field_type\": \"date\",\n            \"is_required\": false,\n            \"allows_nulls\": true,\n            \"allows_empty\": true,\n            \"is_read_only\": false,\n            \"is_hidden\": false,\n            \"order\": 3,\n            \"meta\": {\n                \"cols\": 1\n            },\n            \"properties\": {\n                \"allow_options\": false,\n                \"allow_multiple\": false,\n                \"allow_relations\": false,\n                \"allow_add\": false,\n                \"type\": \"date\",\n                \"target_column\": \"value_date\"\n            },\n            \"options\": [],\n            \"relations\": [],\n            \"rating\": null,\n            \"phonenumber_options\": null,\n            \"money_options\": null,\n            \"access\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            }\n        },\n        \"new_values\": [\n            \"2020-09-15\"\n        ]\n    }\n}"}],"_postman_id":"76675996-a52b-420d-ad08-dd6a6c8b954d"}],"id":"0e5d24c2-0d11-46ef-8a38-f4ddd605ddde","description":"<p>CRUD automation</p>\n","_postman_id":"0e5d24c2-0d11-46ef-8a38-f4ddd605ddde"},{"name":"automation-group","item":[{"name":"Create automation group","id":"c75d7005-aa5d-479d-8824-ab15cd1342a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Group Name\",\n    \"config\": {\n        \"and\": true,\n        \"query\": [\n             {\n                 \"id\": \"UUID\",\n                 \"and\": true,\n                 \"filters\" : [\n                    {\n                        \"type\": \"automation2\",\n                        \"subtype\": \"name\",\n                        \"condition\": \"contains\",\n                        \"value\": \"test\"\n                    }\n                 ]\n             }\n         ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation-group","urlObject":{"path":["automation2","automation-group"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c75d7005-aa5d-479d-8824-ab15cd1342a5"},{"name":"Get automation groups","id":"e063b697-2195-4960-830f-7dfcc0737b9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"url":"{{API_URL}}/automation2/automation-group","urlObject":{"path":["automation2","automation-group"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e063b697-2195-4960-830f-7dfcc0737b9c"},{"name":"Edit automation group","id":"90412fc4-926c-4859-abd2-e36991db6d24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"New Name\"    \n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation-group/a4efe4be-8e4b-47e9-b294-07c863d57829","urlObject":{"path":["automation2","automation-group","a4efe4be-8e4b-47e9-b294-07c863d57829"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"90412fc4-926c-4859-abd2-e36991db6d24"},{"name":"Delete automation group","id":"1d6ba721-7ed6-4bb2-9b0c-4cfd8b0f125b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"url":"{{API_URL}}/automation2/automation-group/a4efe4be-8e4b-47e9-b294-07c863d57829","urlObject":{"path":["automation2","automation-group","a4efe4be-8e4b-47e9-b294-07c863d57829"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d6ba721-7ed6-4bb2-9b0c-4cfd8b0f125b"}],"id":"2e2b1237-6f19-4c61-9f16-a3c445eb8e26","_postman_id":"2e2b1237-6f19-4c61-9f16-a3c445eb8e26","description":""},{"name":"automation-execution","item":[{"name":"Pause an automation execution.","id":"6d696b3e-9af9-4f71-b8e9-3ee49596d7a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation-execution/{{AUTOMATION_EXECUTION_ID}}/pause","urlObject":{"path":["automation2","automation-execution","{{AUTOMATION_EXECUTION_ID}}","pause"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d696b3e-9af9-4f71-b8e9-3ee49596d7a0"},{"name":"play an automation execution.","id":"1bc292c3-ca73-4278-bedd-c744798020c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation-execution/{{AUTOMATION_EXECUTION_ID}}/play","urlObject":{"path":["automation2","automation-execution","{{AUTOMATION_EXECUTION_ID}}","play"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1bc292c3-ca73-4278-bedd-c744798020c6"},{"name":"get all automation execution","id":"7b325189-100b-4f7f-b79e-2dea1eae9841","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation-execution?page_size=100000","urlObject":{"path":["automation2","automation-execution"],"host":["{{API_URL}}"],"query":[{"key":"page_size","value":"100000"}],"variable":[]}},"response":[],"_postman_id":"7b325189-100b-4f7f-b79e-2dea1eae9841"}],"id":"89c5c81c-cf0e-47bd-85bf-1e915dc3c617","_postman_id":"89c5c81c-cf0e-47bd-85bf-1e915dc3c617","description":""},{"name":"scenarios","item":[{"name":"Test delay step","item":[{"name":"step 1 - get custom fields","id":"5ffc0781-bab6-47e7-95f1-fbd996d9a3d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/client/fields?only=custom","description":"<p>Pick one of the custom fields id from the response and check if custom field is getting updated with new value or not after completing all the steps.</p>\n","urlObject":{"path":["client","fields"],"host":["{{API_URL}}"],"query":[{"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"5ffc0781-bab6-47e7-95f1-fbd996d9a3d4"},{"name":"step 2 - create new automation","id":"9d165e9a-6181-4114-8455-96f640ed4d28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"automation for delay step\",\n    \"active\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation","description":"<p>Existing automation can also be used, but to make sure automation gets completed after all the steps, I will suggest using new automation.</p>\n","urlObject":{"path":["automation2","automation"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"9d165e9a-6181-4114-8455-96f640ed4d28"},{"name":"step 3 - get all client tags","id":"098c2748-2c1e-4425-9cc0-3f6d2a6e6b72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/client-tag","description":"<p>Use one of the tag id and tag name in step 4 and step 7 to create trigger and for triggering the automation respectively.</p>\n","urlObject":{"path":["client-tag"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"098c2748-2c1e-4425-9cc0-3f6d2a6e6b72"},{"name":"step 4 - create trigger for tags added to contacts","id":"194811a5-4995-4d49-bdc0-452dfdc032c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{automation id created from step 2}}\",\n    \"trigger_type\": \"tag_added_contact\",\n    \"trigger_tag_added_contact\": {\n        \"tag_ids\": [{{add one of the tag ids from the step 3}}]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/trigger","description":"<p>Create trigger to start the automation. Tags are the easiest I could think of :), you can use any other trigger for starting the automation.</p>\n","urlObject":{"path":["automation2","trigger"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"194811a5-4995-4d49-bdc0-452dfdc032c4"},{"name":"step 5 - create delay step","id":"bdd7375b-b478-450a-adfa-49dc6efd4f97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{automation id created from step 2}}\",\n    \"step_type\": \"delay\",\n    \"step_delay\": {\n        \"minutes\": 5\n    },\n    \"parent_step_id\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","description":"<p>create a delay action preferably with minutes parameter since you would like to check action are getting executed after the delay in real time.</p>\n","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"bdd7375b-b478-450a-adfa-49dc6efd4f97"},{"name":"step 6 - create step to change field","id":"6aa103f3-9465-4a43-94a1-ecf708fcec0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"automation_id\": \"{{automation id created from step 2}}\",\n    \"step_type\": \"change_field\",\n    \"action_change_field\": {\n        \"field_id\": {{use custom field id from step 1}}, \n        \"new_values\": [\"test text\"]\n    },\n    \"parent_step_id\": {{use action id created in step 5}}\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/step","description":"<p>Action to associate after delay, since delay doesnt actually do in itself, while change field help us figure out if the automation ran or not.</p>\n","urlObject":{"path":["automation2","step"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"6aa103f3-9465-4a43-94a1-ecf708fcec0a"},{"name":"step 7 - add tag to client","id":"98eb2481-fb33-4b75-81f3-b432632a3aa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"tags\": [\n        {\n            \"name\": \"same name of tag, which were added in step 4 for creating trigger\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/client/{{CLIENT_ID}}","description":"<p>add the tag name which was used in step 4, this will start the automation execution for the client.</p>\n<p>Once the execution is complete, check in the UI if the custom field picked in step 1 is actually updated or not.</p>\n","urlObject":{"path":["client","{{CLIENT_ID}}"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"98eb2481-fb33-4b75-81f3-b432632a3aa5"},{"name":"step 8 - get automation execution for automation [optional]","id":"2c72184e-7f66-41bf-839b-3c7c62a8a8a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation-execution?automation_id={{automation created in step 2}}","description":"<p>This can be used in playing and pausing the automation execution.</p>\n","urlObject":{"path":["automation2","automation-execution"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"},{"key":"automation_id","value":"{{automation created in step 2}}"}],"variable":[]}},"response":[],"_postman_id":"2c72184e-7f66-41bf-839b-3c7c62a8a8a5"},{"name":"step 9 - pause an automation execution [optional]","id":"da599ab0-97bf-42dc-8719-b55a9d6d8aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation-execution/{{AUTOMATION_EXECUTION_ID}}/pause","description":"<p>Use automation_execution_id from step 8, this can pause the delay execution for the amount of time you have paused the execution for.</p>\n","urlObject":{"path":["automation2","automation-execution","{{AUTOMATION_EXECUTION_ID}}","pause"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"da599ab0-97bf-42dc-8719-b55a9d6d8aa9"},{"name":"step 10 - play an automation execution [optional]","id":"0bbb1e79-44e7-4c8d-80cc-b007f90ede77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/automation2/automation-execution/{{AUTOMATION_EXECUTION_ID}}/play","description":"<p>use automation_execution_id from step 8, execution can be played back again to start the delay action again.</p>\n","urlObject":{"path":["automation2","automation-execution","{{AUTOMATION_EXECUTION_ID}}","play"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"only","value":"custom"}],"variable":[]}},"response":[],"_postman_id":"0bbb1e79-44e7-4c8d-80cc-b007f90ede77"}],"id":"13e85cf2-c55c-4a71-a6e2-ac2b48c3a385","description":"<p>This scenario creates automation, adds trigger to the automation, and runs delay action successfully.</p>\n","_postman_id":"13e85cf2-c55c-4a71-a6e2-ac2b48c3a385"}],"id":"fd5c191e-4154-4d2f-ace0-43b98d0952ae","description":"<p>This is for adding series of steps required to test complex PRs.</p>\n","_postman_id":"fd5c191e-4154-4d2f-ace0-43b98d0952ae"}],"id":"9f8e2932-f090-4f6f-98de-8995a0ccfed8","_postman_id":"9f8e2932-f090-4f6f-98de-8995a0ccfed8","description":""},{"name":"Business Account Settings","item":[{"name":"Create New Team Member","id":"0d8b6965-cf38-47b3-8b22-e7a8088e0455","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Drake\",\n    \"last_name\": \"Thomas\",\n    \"email\": \"testing@kizen.com\",\n    \"roles\": [\"{{Role_ID}}\"],\n    \"permission_groups\": [\n        \"{{Permission_Group_ID}}\"\n    ]\n}"},"url":"{{base_url}}/team","description":"<p>Creates a new team member(user) in your Kizen Account.</p>\n","urlObject":{"path":["team"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"233b2470-5eed-4f97-b037-b08902beaa42","name":"Create New Team Member","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Drake\",\n    \"last_name\": \"Thomas\",\n    \"email\": \"testing@kizen.com\"\n}"},"url":"{{base_url}}/team"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:12:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1d0f11bf-9e6c-479d-9179-2a84b0e7088c\",\n    \"full_name\": \"Drake Thomas\",\n    \"title\": null,\n    \"mobile_phone\": null,\n    \"email\": \"testing@kizen.com\",\n    \"verified\": false,\n    \"phone\": null,\n    \"first_name\": \"Drake\",\n    \"last_name\": \"Thomas\",\n    \"picture\": null,\n    \"is_team_member\": false,\n    \"is_admin\": false,\n    \"user\": \"1d35d59f-dc23-41b0-891f-0af703270805\",\n    \"display_name\": \"Drake Thomas\",\n    \"roles\": [],\n    \"permission_groups\": [],\n    \"permissions\": [],\n    \"added_permissions\": [],\n    \"revoked_permissions\": [],\n    \"email_signature\": null,\n    \"annual_sales_goal\": \"0.00\",\n    \"start_date\": \"2020-12-10T15:12:06.949529-05:00\"\n}"}],"_postman_id":"0d8b6965-cf38-47b3-8b22-e7a8088e0455"},{"name":"Retrieve Business Settings Information","id":"ef4b9696-293a-4dd3-8952-4919bee50a9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/business/mine?v2=true","description":"<p>Retrieve all Business Settings. </p>\n","urlObject":{"path":["business","mine"],"host":["{{base_url}}"],"query":[{"key":"v2","value":"true"}],"variable":[]}},"response":[{"id":"05a26dbe-6b84-49be-9435-ba00cf59e23a","name":"Retrieve Business Settings Information","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/business/mine?v2=true","host":["{{base_url}}"],"path":["business","mine"],"query":[{"key":"v2","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:07:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"725f64e5-4124-46cc-92c4-d16049add76e\",\n    \"default_payment_gateway\": \"af4ac4c0-f456-4b68-b3c8-d9233eda7249\",\n    \"client\": null,\n    \"crm_client_id\": \"xxxxx\",\n    \"crm_company_id\": \"xxxxxx\",\n    \"has_active_subscription\": true,\n    \"name\": \"xxxxxxxxx\",\n    \"timezone\": \"America/New_York\",\n    \"postal_code\": \"78705\",\n    \"state\": \"TX\",\n    \"country\": \"US\",\n    \"street_address\": \"127 E Riverside Dr. #307\",\n    \"city\": \"Austin2\",\n    \"phone\": \"+xxxxxxxx\",\n    \"reply_to_email\": \"xxxxxx\",\n    \"type\": \"golf_course\",\n    \"permissions\": [\n        \"admin\"\n    ],\n    \"employee_id\": \"4xxxxxxx\",\n    \"subdomain_url\": \"xxxxxxxx\",\n    \"primary_custom_domain_name\": null,\n    \"subdomain\": \"xxxxxxx\",\n    \"url\": \"https://08022018-qa-account.staging.kizen.com\",\n    \"logo\": {\n        \"id\": \"xxxxxxx5\",\n        \"created\": \"2020-10-13T08:31:12.540102-04:00\",\n        \"key\": \"xxxxxx.jpg\",\n        \"name\": \"rubiks-speed-cube-3x3-solved-2.jpg\",\n        \"url\": \"xxxxxxxx5.jpg\",\n        \"thumbnail_url\": \"xxxxxxxxxxxs=12c5729d18592e6b4ab6d5f7a863bba2\",\n        \"size_bytes\": 25640,\n        \"size_formatted\": \"25.0KB\",\n        \"content_type\": \"image/jpeg\"\n    },\n    \"show_companies_page\": true,\n    \"deal_list_page_config\": {\n        \"view\": \"board\",\n        \"columns\": {\n            \"025cb0ec-156a-4ecc-bb1f-85129424704b\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"07172a61-0042-4dd8-a6de-ac4de6dfb588\": [\n                \"name\",\n                \"stage\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\",\n                \"amount\"\n            ],\n            \"19b05d1b-a526-4ea1-8542-a5b659b7e978\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"1cb70d55-2de3-4665-afc7-42707638dfa1\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"257c3b75-a4e7-4c3e-bcba-55e51c82b56c\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"25b3686d-f6eb-4f86-b221-de8a0612ac3a\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"446aff98-8ca6-494d-9998-e468de70a83d\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"46b7be4b-d682-4a4f-b3f6-1c23b6f71e1f\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"4fa92012-9244-4c73-84a7-10fbb041ac94\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"6b0e046d-b9a8-4fbf-b366-be130482ca95\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"6f24278a-c2d3-438c-b0a5-07a54aa0abf3\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"735be11d-3c79-4fb7-92c9-b085d4e16abe\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"8963fb9c-0460-4b86-9fd7-a6c222f2a07b\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"981e7069-b53b-4966-995d-886dd50909ce\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"9dda56eb-5620-4401-adbe-dd1cb898b369\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"9e3a60e9-7976-437f-9787-a10e78f58097\": [\n                \"name\",\n                \"stage\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"a808e972-16bd-4f2d-beb8-12ceada0b492\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"b4c88299-634d-452f-8da7-342b643b5e33\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"b8b7a731-c7f7-4998-9005-66e542d449f7\": [\n                \"name\",\n                \"stage\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"dbb7cf3d-77cc-4a95-a111-44f2b0df23ca\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"e72fc0bc-2ed7-43c6-b952-4d3f83340e52\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ],\n            \"e8479145-2a17-4912-a464-f5461d89dea6\": [\n                \"name\",\n                \"stage\",\n                \"amount\",\n                \"estimated_close_date\",\n                \"created\",\n                \"primary_client\",\n                \"primary_company\",\n                \"owner\"\n            ]\n        },\n        \"version\": 1,\n        \"ordering\": \"created\",\n        \"pageSize\": 50,\n        \"reverseOrdering\": false\n    },\n    \"primary_color\": \"#2b86d0\",\n    \"secondary_color\": \"#226733\",\n    \"forwarding_phone_number\": \"+1 512-506-xxxx\",\n    \"marketing_cloud\": true,\n    \"sales_cloud\": false,\n    \"experience_cloud\": true,\n    \"business_intelligence\": true,\n    \"num_team_members\": 0,\n    \"current_num_team_members\": 100,\n    \"current_num_contacts\": 41581,\n    \"business_level\": \"PROFESSIONAL\",\n    \"num_sales_users\": 101,\n    \"num_experience_users\": 0,\n    \"num_contacts\": 100\n}"}],"_postman_id":"ef4b9696-293a-4dd3-8952-4919bee50a9c"},{"name":"Retrieve Team Members","id":"deafa8e6-757a-47d3-a9d4-0c9ef6f87604","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/team","description":"<p>Retrieve all Team Members in your business.</p>\n","urlObject":{"path":["team"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"fields","value":"id,email"}],"variable":[]}},"response":[{"id":"94ab03bf-2d5c-4855-b097-10b05f30f0f8","name":"Retrieve Team Members","originalRequest":{"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":{"raw":"{{base_url}}/team","host":["{{base_url}}"],"path":["team"],"query":[{"description":"optional","key":"fields","value":"id,email","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:10:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"bbb08efa-194f-475c-b8a3-7377f3d8fe2d\",\n        \"full_name\": \"Matt Weisberg\",\n        \"title\": null,\n        \"mobile_phone\": null,\n        \"email\": \"Matt@kizen.com\",\n        \"verified\": true,\n        \"phone\": \"+1 201-264-9169\",\n        \"first_name\": \"Matt\",\n        \"last_name\": \"Weisberg\",\n        \"picture\": null,\n        \"is_team_member\": false,\n        \"is_admin\": true,\n        \"user\": \"15830636-c19c-47b0-a26c-dd50ba969472\",\n        \"display_name\": \"Matt Weisberg\",\n        \"roles\": [\n            {\n                \"id\": \"acf3b927-d775-45a3-b0f0-9bdb4918d480\",\n                \"name\": \"All contact permissions including bulk action\"\n            }\n        ],\n        \"permission_groups\": [\n            {\n                \"id\": \"20c8eeb7-ffc3-4e88-82ee-e5961751c076\",\n                \"name\": \"Advanced permission group\"\n            }\n        ],\n        \"permissions\": [\n            null\n        ],\n        \"added_permissions\": [],\n        \"revoked_permissions\": [],\n        \"email_signature\": null,\n        \"annual_sales_goal\": \"0.00\",\n        \"start_date\": \"2019-01-10T18:55:48.426705-05:00\"\n    }\n]"}],"_postman_id":"deafa8e6-757a-47d3-a9d4-0c9ef6f87604"},{"name":"Retrieve Employee Profile","id":"30e8be18-0e4f-4ab7-8936-2424096cfa35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/me","urlObject":{"path":["me"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"386dbae9-aa34-41f6-bd7c-699d6c026955","name":"Retrieve Employee Profile","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:15:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"OPTIONS, GET, POST"},{"key":"Vary","value":"Cookie"},{"key":"Set-Cookie","value":"sessionid=.eJwVzNuSQzAAANAvMoOx0j70AWGTWtSlLn3pYCt1S4pJlK_v7vmAQ4x_ZiMzVA5LrYoK6m0hzAvU5w2h7f2mYthkX_WU_FmGieC17e9hXXPpa7pDx-4ATXut4H5XRM_HZmSzVyndQaGGdYnMfZFtFPzAWzH66hXKFXUYjrQahu7OAvfASh8QsiT5FGZxa4FNWvvCVV30SyRAX-f5L6nGIB6fYX6D0kgAPvYXzX2deRoMqyOhdhg0gW1hHpTQ9oSWrbLb7LLaLSkqU6LUC5486qjakZIcTN7E4mZmhRWQ_sqbjBk2thy6gZvPrQdPpKzPWv3-PZY6pgJ7g3E6fQAy62Id:1knSLS:RDWuioUzBcOik9jMaI-9BBHj8QM; Domain=staging.kizen.com; expires=Fri, 10 Dec 2021 20:15:22 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"client\": null,\n    \"num_businesses\": 5,\n    \"first_business\": null,\n    \"profile\": {\n        \"id\": \"3859497e-b150-4040-8ce7-2da39934b7ed\",\n        \"full_name\": \"Dillon@kizen.com\",\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"email\": \"Dillon@kizen.com\",\n        \"phone\": null,\n        \"created\": \"2019-09-23T10:16:57.916482-04:00\",\n        \"crm_client_id\": \"291f2585-0583-49ba-b55b-cb16e5065d11\"\n    },\n    \"is_superuser\": false\n}"}],"_postman_id":"30e8be18-0e4f-4ab7-8936-2424096cfa35"},{"name":"Update Team Member","id":"e4d077bc-6b2c-4770-9c7a-5b4a499a7952","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"content-type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Son 4\",\n    \"last_name\": \"Local\",\n    \"email\": \"testing@kizen.com\",\n    \"roles\": [\"{{Role_ID}}\"],\n    \"permission_groups\": [\n        \"{{Permission_Group_ID}}\"\n    ]\n}"},"url":"{{base_url}}/team/{{Team_Member_ID}}","description":"<p>Updates an existing team member. Get the Team Member ID from <a href=\"https://documenter.getpostman.com/view/7979800/TVYJ6cmQ#deafa8e6-757a-47d3-a9d4-0c9ef6f87604\">Retrieve Team Member API Request</a></p>\n","urlObject":{"path":["team","{{Team_Member_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"cc0a4d33-98ce-42b6-9dd4-d72f9072d34c","name":"Update Team Member","originalRequest":{"method":"PATCH","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"content-type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Son\",\n    \"last_name\": \"Local\",\n    \"email\": \"testing@kizen.com\"\n}"},"url":"{{base_url}}/team/1d0f11bf-9e6c-479d-9179-2a84b0e7088c"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:13:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1d0f11bf-9e6c-479d-9179-2a84b0e7088c\",\n    \"full_name\": \"Son Local\",\n    \"title\": null,\n    \"mobile_phone\": null,\n    \"email\": \"testing@kizen.com\",\n    \"verified\": false,\n    \"phone\": null,\n    \"first_name\": \"Son\",\n    \"last_name\": \"Local\",\n    \"picture\": null,\n    \"is_team_member\": false,\n    \"is_admin\": false,\n    \"user\": \"1d35d59f-dc23-41b0-891f-0af703270805\",\n    \"display_name\": \"Son Local\",\n    \"roles\": [],\n    \"permission_groups\": [],\n    \"permissions\": [\n        null\n    ],\n    \"added_permissions\": [],\n    \"revoked_permissions\": [],\n    \"email_signature\": null,\n    \"annual_sales_goal\": \"0.00\",\n    \"start_date\": \"2020-12-10T15:12:06.949529-05:00\"\n}"}],"_postman_id":"e4d077bc-6b2c-4770-9c7a-5b4a499a7952"}],"id":"66254ab1-2337-4d47-8fa5-22967384bca4","description":"<p>Business Settings are used to configure your account to your needs. This settings allow you to create and update team members, retrieve business settings information, and update employee profiles directly from the API.  </p>\n","_postman_id":"66254ab1-2337-4d47-8fa5-22967384bca4"},{"name":"Contacts","item":[{"name":"Create a Contact","id":"7f9986c8-1e2e-4123-a084-13b4b631abe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Dillon\",\n    \"last_name\": \"DAvenport\",\n    \"email\": \"dillon9212123823482973@kizen.com\",\n    \"fields\": [\n        {\n            \"field\": \"{{custom_field_id}}\",\n            \"values\": [\n                \"pleasetstthis\"\n            ]\n        }\n    ]\n}"},"url":"{{base_url}}/client","description":"<h1 id=\"create-a-contact-description\">Create a Contact Description</h1>\n<p>The request allows you to create a new contact record in Kizen. </p>\n<p>Email is not a required field, but it is best practice to provide an email in the payload. </p>\n<p>If a contact already exists within the system that has the same email address that you are specifying in the payload, this request will update that contact instead of creating a new one.</p>\n<h1 id=\"contact-fields\">Contact Fields</h1>\n<p>You can create a contact with fields that are already created. You will just need to specify the field_id in the payload. To get a list of fields, via  <code>GET /client/fields</code></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","name":"Contacts","type":"folder"}},"urlObject":{"path":["client"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"556e8c7e-bd30-4f23-b90b-4d24890df043","name":"Create a Contact","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Dillon\",\n    \"last_name\": \"DAvenport\",\n    \"email\": \"dillon9212123823482973@kizen.com\",\n    \"fields\": [\n        {\n            \"field\": \"f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce\",\n            \"values\": [\n                \"pleasetstthis\"\n            ]\n        }\n    ]\n}"},"url":"{{base_url}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 16:19:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"45"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVwVG3QjAAAOBf5JyEyUMPdYckmqHwcg9q04gxRL_-nvt99PDvSHnUJ7mnsdTz0VlJ1G_ao26KX2wKClMkGULA_cCIBMfHtf8dZF0hc2dtu5C-01syasYp3MUDz-rw6rSY6ydrBaw6ByWW0gpm-CUIB614-I3sfYJn494qN30W2Y6jDFt95Pv6vRfKhlx6HI7NzVjyaV5RW2OWydDFzJeKby6JwT_BDXGO3sX8MYqZrdKhvFdOOl5LddHpWddjkjyZra2QaAt2bHfuysvEuLXUVAGB7ADMpG5V4X1XCvEa7bcF2rq0YveRDyA0IOxMdUTBtqa04YNE9_s_4rJjJA:1ljOv1:ecaD3_TvUEPejm3BujnZ5MDKogM; Domain=staging.kizen.com; expires=Thu, 19 May 2022 16:19:35 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"fields\": [\n        {\n            \"field\": \"836f3744-7eab-4f03-a372-44449ebbf5bc\",\n            \"name\": null,\n            \"value\": 3,\n            \"field_display_name\": \"Another Number Field\"\n        },\n        {\n            \"field\": \"f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce\",\n            \"name\": null,\n            \"value\": \"pleasetstthis\",\n            \"field_display_name\": \"Another Text Field\"\n        }\n    ],\n    \"custom_fields\": {\n        \"text::34\": {\n            \"field_id\": \"7c7edf04-9936-46a2-9a70-0f9958407570\",\n            \"value\": \"yeah\"\n        }\n    },\n    \"id\": \"fd5acc8d-dcde-41af-93b0-1dd2d3345f37\",\n    \"tags\": [],\n    \"email\": \"dillon9212123823482973@kizen.com\",\n    \"company\": null,\n    \"titles\": [],\n    \"first_name\": \"Dillon\",\n    \"last_name\": \"DAvenport\",\n    \"display_name\": \"Dillon DAvenport (dillon9212123823482973@kizen.com)\",\n    \"business_phone\": null,\n    \"structured_business_phone\": null,\n    \"mobile_phone\": null,\n    \"structured_mobile_phone\": null,\n    \"home_phone\": null,\n    \"structured_home_phone\": null,\n    \"email_status\": \"not_opted_in\",\n    \"email_is_blacklisted\": false,\n    \"full_name\": \"Dillon DAvenport\",\n    \"created\": \"2021-05-17T16:46:06.349941-05:00\",\n    \"timezone\": null,\n    \"addresses\": [],\n    \"addresses_v2\": [],\n    \"birthday\": null,\n    \"access\": {\n        \"view\": true,\n        \"edit\": true,\n        \"remove\": true\n    }\n}"}],"_postman_id":"7f9986c8-1e2e-4123-a084-13b4b631abe5"},{"name":"Archive Contact","id":"335d1578-ba2d-4da2-92ee-517c57d565b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"url":"{{base_url}}/client/{{CLIENT_UUID}}/archive","description":"<h1 id=\"archive-contact-description\">Archive Contact Description</h1>\n<p>The request allows you to archive a contact record in Kizen. </p>\n<p>This will not permanently delete the contact, but will archive the contact from view of the users. You are able to unarchive a contact via the <a href=\"https://documenter.getpostman.com/view/7979800/TVYJ6cmQ#7f9986c8-1e2e-4123-a084-13b4b631abe5\">Create a contact</a> request and specifying the same email address.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","name":"Contacts","type":"folder"}},"urlObject":{"path":["client","{{CLIENT_UUID}}","archive"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"1e934d66-6297-431f-b656-1cbe43a6fd42","name":"Archive Contact","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"url":"{{base_url}}/client/dc14d81f-e3ef-46dd-9361-0f6f91aa5c51/archive"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 19 May 2021 16:38:34 GMT"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"16"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVwcuWQzAAANAv6jlSgiy6SNBWY7yGTtkV9ajGRJEMX98z9zb4H2l4YlKrSycVaTIKgAFFTmrSi6VUJyidp9TqigTfdzIuKzf9k-UXyiM1pXTSlgbXHYqRiKETMRe3XhtU5zkvJ8eGPKwuxPhjFH2NngSJ6x7NZdGVujj5xxXNJq2kKNqcsYSAfPuBKFIAIMsKoi5U7430e4tn-UaGByVziPVXxzLE6fM29uo0oN-z4ShDQareioKzZV-00_AGNHsLj_IdC2_7LZGxYHbcGMtrxY9MB-w1wv02idKGrTWXwke1p2HsXdZEp_z4Lq64bu_16gZp5-DD4QMtDmE8:1ljPDO:d8wrV_c-RikH6oSTLaG8EVsy554; Domain=staging.kizen.com; expires=Thu, 19 May 2022 16:38:34 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"335d1578-ba2d-4da2-92ee-517c57d565b4"},{"name":"Retrieve All Contacts","id":"c9b89f3a-a53d-45cb-9f7e-dd7228a12982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"url":"{{base_url}}/client/v2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","name":"Contacts","type":"folder"}},"urlObject":{"path":["client","v2"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>The ordering parameter specifies how you want to sort the results</p>\n","type":"text/plain"},"key":"ordering","value":"titles,created,email"},{"disabled":true,"description":{"content":"<p>You are able to search on any default field (first_name, last_name, email) in the results.</p>\n","type":"text/plain"},"key":"search","value":"1512"},{"disabled":true,"description":{"content":"<p>This parameter queries the results based on a group ID you've set previously with filters</p>\n","type":"text/plain"},"key":"group_id","value":"{{contact_group_id}}"},{"disabled":true,"description":{"content":"<p>This parameter limits the amount of results being brought back</p>\n","type":"text/plain"},"key":"page_size","value":"2"}],"variable":[]}},"response":[{"id":"6156a6cc-1cd8-4fcf-a6f8-4051c92bf49e","name":"Retrieve All Contacts","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"url":{"raw":"{{base_url}}/client/v2","host":["{{base_url}}"],"path":["client","v2"],"query":[{"key":"ordering","value":"titles","disabled":true},{"key":"search","value":"1512","disabled":true},{"key":"home_phone","value":"2817516716","disabled":true},{"key":"group_id","value":"55d330aa-1150-465d-989f-c6455496936c","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:17:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 41580,\n    \"next\": \"https://staging.kizen.com/api/client/v2?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"11e175ac-92e2-4d10-bdbb-7506500f1e36\",\n            \"first_name\": \"joe\",\n            \"last_name\": \"Silly\",\n            \"birthday\": null,\n            \"display_name\": \"joe Silly (sillysally@kizen.com)\",\n            \"email\": \"sillysally@kizen.com\",\n            \"company\": {\n                \"id\": \"e66c3e78-2622-4970-8352-d0f03ee62890\",\n                \"name\": \"324345345 Company (Contact)\",\n                \"display_name\": \"324345345 Company (Contact)\"\n            },\n            \"full_name\": \"joe Silly\",\n            \"created\": \"2018-08-02T20:35:15.124626-04:00\",\n            \"custom\": {\n                \"custom_field_new\": \"\",\n                \"test_\": \"\",\n                \"test_email\": null,\n                \"test_long_text\": null,\n                \"test_whole_number\": \"22\",\n                \"test_checkbox\": \"No\",\n                \"call_disposition\": \"\",\n                \"test_dropdown\": \"2\",\n                \"test_dynamic_tag\": null,\n                \"date_field\": \"2019-05-18\",\n                \"test_text\": \"Testing text field update speed\",\n                \"test_relationship\": null,\n                \"test_primary_deals\": null,\n                \"test_date\": \"2020-06-10\",\n                \"test_radio_buttons\": \"\",\n                \"contacts2\": null,\n                \"test_price\": \"$330.00\",\n                \"test_decimal_number\": \"\",\n                \"contacts\": null,\n                \"contacts_1\": null,\n                \"relate\": null,\n                \"contacts_3\": null,\n                \"deals_contacts\": null,\n                \"contacts_2\": null,\n                \"contact_relationship_327\": null,\n                \"my_files\": [],\n                \"802_company_relationship\": null,\n                \"802b_company_relationship\": null,\n                \"first_name\": null,\n                \"home_phone\": null,\n                \"test_file_upload_bla\": [],\n                \"related_contact_from\": null,\n                \"related_contact_to\": null,\n                \"related_company_to\": null,\n                \"related_company\": null,\n                \"has_lived_in_property\": null,\n                \"first_name_1\": null,\n                \"riel_rocks\": null,\n                \"radio_button_blah\": \"\",\n                \"test_dynamic_629\": null,\n                \"dropdown_1\": \"\",\n                \"test_checkbox_leni\": \"\",\n                \"test_checkbox_single_leni\": \"No\",\n                \"will_this_blow_it_up\": null,\n                \"filetestpostman\": [],\n                \"testing\": null,\n                \"has_converted\": \"No\",\n                \"checkbox_1\": \"No\",\n                \"awesome_tag_field\": null,\n                \"text\": null,\n                \"deals\": null,\n                \"parent\": null,\n                \"new_dynamic_tag\": null,\n                \"child\": null,\n                \"deal_relationship_from_contact_record\": null,\n                \"files\": [],\n                \"radio\": \"2\",\n                \"checkboxes\": \"2\",\n                \"custom_date\": null,\n                \"wnumber\": \"\",\n                \"custom_email\": null,\n                \"checkbox\": \"No\",\n                \"dropdown\": \"\",\n                \"longtext\": null,\n                \"dnumber\": \"\",\n                \"price\": \"$2.00\",\n                \"companies\": null,\n                \"contacts1\": null,\n                \"decimal_numbah\": \"\",\n                \"whole_numbah\": \"\",\n                \"text_1\": null,\n                \"radio_buttons\": \"\",\n                \"checkboxes_1\": \"\",\n                \"date_1\": null,\n                \"long_text\": \"1103 new data\",\n                \"whole_number\": \"\",\n                \"decimal_number\": \"\",\n                \"price_1\": \"\",\n                \"countrystate_test\": \"\",\n                \"relationship_deals\": null,\n                \"dynamic_tag_1\": null,\n                \"relationship_contacts_1\": null,\n                \"files_3\": [],\n                \"scotts_date_field\": null,\n                \"subscription_lists_multiple_field\": \"\",\n                \"demo_lists_2\": \"\"\n            },\n            \"home_phone\": null,\n            \"business_phone\": \"+1 207-712-0895\",\n            \"mobile_phone\": \"+1 512-506-0776\",\n            \"structured_home_phone\": null,\n            \"structured_business_phone\": {\n                \"country_code\": 1,\n                \"formatted_national_number\": \"(207) 712-0895\",\n                \"extension\": null\n            },\n            \"structured_mobile_phone\": {\n                \"country_code\": 1,\n                \"formatted_national_number\": \"(512) 506-0776\",\n                \"extension\": null\n            },\n            \"home_phone_no_punctuation_no_spaces\": null,\n            \"business_phone_no_punctuation_no_spaces\": \"12077120895\",\n            \"mobile_phone_no_punctuation_no_spaces\": \"15125060776\",\n            \"home_phone_dots\": null,\n            \"business_phone_dots\": \".1.207.712.0895\",\n            \"mobile_phone_dots\": \".1.512.506.0776\",\n            \"addresses\": [],\n            \"addresses_v2\": [\n                {\n                    \"id\": \"7267f4a4-e2af-496d-a36e-69f473d1c4bb\",\n                    \"full_name\": \"some person\",\n                    \"street_address\": \"12 Fake Ln.\",\n                    \"street_address_2\": \"Apt A\",\n                    \"city\": \"Sometown\",\n                    \"postal_code\": \"12213\",\n                    \"state\": \"BR-PB\",\n                    \"country\": \"BR\",\n                    \"address_name\": \"822\",\n                    \"is_primary_address\": true\n                },\n                {\n                    \"id\": \"9de31d48-8cc8-4d44-88e5-041c99d85116\",\n                    \"full_name\": \"some person\",\n                    \"street_address\": \"12 Fake Ln.\",\n                    \"street_address_2\": \"Apt A\",\n                    \"city\": \"Sometown\",\n                    \"postal_code\": \"12213\",\n                    \"state\": \"BR-PB\",\n                    \"country\": \"BR\",\n                    \"address_name\": \"8222\",\n                    \"is_primary_address\": false\n                }\n            ],\n            \"titles\": [],\n            \"tags\": [\n                {\n                    \"id\": \"1f3999e6-ba61-458f-9e4c-cb98632bcccb\",\n                    \"name\": \"a\"\n                },\n                {\n                    \"id\": \"39fffd62-9385-4aa5-acb2-27de1f4ecce5\",\n                    \"name\": \"1qaz2ws\"\n                },\n                {\n                    \"id\": \"80b3835f-a51d-4fb3-88ab-178dd6061304\",\n                    \"name\": \"2\"\n                },\n                {\n                    \"id\": \"85e2ad26-89cc-45c0-aa29-308d91bc5dc1\",\n                    \"name\": \"000000f\"\n                }\n            ],\n            \"fields\": [],\n            \"access\": {\n                \"remove\": true,\n                \"edit\": true,\n                \"view\": true\n            }\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"c9b89f3a-a53d-45cb-9f7e-dd7228a12982"},{"name":"Update a Contact","id":"f13b9b25-3fc7-4377-b092-2a6c69b1bd48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Dillon\",\n    \"last_name\": \"DAvenport\",\n    \"email\": \"dillon9212123823482973@kizen.com\",\n    \"fields\": [\n        {\n            \"field\": \"{{field_id}}\",\n            \"values\": [\n                \"pleasetstthis\"\n            ]\n        }\n    ]\n}"},"url":"{{base_url}}/client/{{contact_id}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","name":"Contacts","type":"folder"}},"urlObject":{"path":["client","{{contact_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"33e4a057-c5b9-481a-8708-ec90b45e6c5d","name":"Update a Contact","originalRequest":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Dillon\",\n    \"last_name\": \"DAvenport\",\n    \"email\": \"dillon9212123823482973@kizen.com\",\n    \"fields\": [\n        {\n            \"field\": \"f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce\",\n            \"values\": [\n                \"pleasetstthis\"\n            ]\n        }\n    ]\n}"},"url":"{{base_url}}/client/fd5acc8d-dcde-41af-93b0-1dd2d3345f37"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 16:29:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"44"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVz0tygjAAANATMZNS-WThAhqEJgg6SUrqhomRTxTRCkrg9G3fDV4T_AubO1uASGHI9OpptkFqiewuwEKQuiRFkRckBfb78vLw7lEu5KNoO6-6rNyLsSRKM-IREFVENwBn83wcrrwOjHI3I-grHG3rY-ajPNZANTkP4u35NvQt8sbT3kCh89DAYZwgnHkkvdWQMA53sgeT2Sih70_HHxxaTKWKnFdlXD-WOra_bPuD4HGYk-DKEqEwBe5xo2Lr3CGua9mGmifgEHHgg15Qm8rA8eWPLrq5ZuC7xYyph2fNsruh018CozOHyb4qPzm1JwrCMqL4mr0dmvX6F-qwX9U:1ljP4m:k1h2_EP5bd8XemMwN0PWJ4BpwFg; Domain=staging.kizen.com; expires=Thu, 19 May 2022 16:29:40 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fd5acc8d-dcde-41af-93b0-1dd2d3345f37\",\n    \"first_name\": \"Dillon\",\n    \"last_name\": \"DAvenport\",\n    \"birthday\": null,\n    \"display_name\": \"Dillon DAvenport (dillon9212123823482973@kizen.com)\",\n    \"email\": \"dillon9212123823482973@kizen.com\",\n    \"email_status\": \"not_opted_in\",\n    \"full_name\": \"Dillon DAvenport\",\n    \"created\": \"2021-05-17T21:46:06.349941Z\",\n    \"home_phone\": null,\n    \"business_phone\": null,\n    \"mobile_phone\": null,\n    \"structured_home_phone\": null,\n    \"structured_business_phone\": null,\n    \"structured_mobile_phone\": null,\n    \"home_phone_no_punctuation_no_spaces\": null,\n    \"business_phone_no_punctuation_no_spaces\": null,\n    \"mobile_phone_no_punctuation_no_spaces\": null,\n    \"home_phone_dots\": null,\n    \"business_phone_dots\": null,\n    \"mobile_phone_dots\": null,\n    \"company\": null,\n    \"addresses\": [],\n    \"addresses_v2\": [],\n    \"timezone\": null,\n    \"titles\": [],\n    \"tags\": [],\n    \"fields\": [\n        {\n            \"field\": \"836f3744-7eab-4f03-a372-44449ebbf5bc\",\n            \"name\": null,\n            \"value\": 3,\n            \"field_display_name\": \"Another Number Field\"\n        },\n        {\n            \"field\": \"f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce\",\n            \"name\": null,\n            \"value\": \"pleasetstthis\",\n            \"field_display_name\": \"Another Text Field\"\n        }\n    ],\n    \"access\": {\n        \"remove\": true,\n        \"edit\": true,\n        \"view\": true\n    }\n}"}],"_postman_id":"f13b9b25-3fc7-4377-b092-2a6c69b1bd48"},{"name":"Retrieve Contact Tags","id":"5d85f9f7-30b7-42a9-8800-13ac479fb787","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/client-tag","urlObject":{"path":["client-tag"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"ordering","value":"titles"},{"disabled":true,"key":"search","value":"5654"},{"disabled":true,"key":"fields","value":"id,name,count_related"}],"variable":[]}},"response":[{"id":"2bdbbeca-fcd4-44ae-92a1-3ff5323b2eff","name":"Retrieve Contact Tags","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/client-tag","host":["{{base_url}}"],"path":["client-tag"],"query":[{"key":"ordering","value":"titles","disabled":true},{"key":"search","value":"5654","disabled":true},{"key":"fields","value":"id,name,count_related","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:18:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"1f2c20f4-b73f-4994-a8fc-448e8801da93\",\n            \"name\": \"0\"\n        },\n        {\n            \"id\": \"85e2ad26-89cc-45c0-aa29-308d91bc5dc1\",\n            \"name\": \"000000f\"\n        }\n    ]\n}"}],"_postman_id":"5d85f9f7-30b7-42a9-8800-13ac479fb787"},{"name":"Retrieve Contact Titles","id":"a5a8e263-9db7-438d-b3ce-0c90aaee9731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"}],"url":"{{base_url}}/client-title","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","name":"Contacts","type":"folder"}},"urlObject":{"path":["client-title"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"ordering","value":"titles"},{"disabled":true,"key":"search","value":"nurse"},{"disabled":true,"key":"fields","value":"id,name,count_related"}],"variable":[]}},"response":[{"id":"6f0b2fd9-7266-4a51-9cae-3b0fd6edcfd7","name":"Retrieve Contact Titles","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"}],"url":{"raw":"{{base_url}}/client-title","host":["{{base_url}}"],"path":["client-title"],"query":[{"key":"ordering","value":"titles","disabled":true},{"key":"search","value":"nurse","disabled":true},{"key":"fields","value":"id,name,count_related","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:19:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"f828a363-c4b3-4642-8d21-237f2a9317dd\",\n            \"name\": \"Title 1\"\n        },\n        {\n            \"id\": \"803266de-5912-459b-ab67-c4b6cc382dc1\",\n            \"name\": \"Title 2\"\n        }\n    ]\n}"}],"_postman_id":"a5a8e263-9db7-438d-b3ce-0c90aaee9731"}],"id":"2bc345e0-0fe5-482e-afb6-913c5be491f4","description":"<h1 id=\"contacts-api\">Contacts API</h1>\n<p>Contacts is an object in Kizen. Contacts are described as the individual people that your team interacts with. </p>\n<p>You can interact and create Contacts via /client url.</p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"2bc345e0-0fe5-482e-afb6-913c5be491f4"},{"name":"Contact Groups","item":[{"name":"Create a Contact Group","id":"5fa30493-b395-49b1-aad1-a5d50ef49496","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"first name larry v2\",\n    \"config\": {\n        \"filters\":{\n\t        \"and\": true,\n\t        \"query\": [{\n\t\t\t    \"id\": \"11-22\",\n\t\t\t    \"and\": true,\n\t    \t\t\"filters\": [{\n\t    \t\t\t\"type\": \"fields\",\n\t    \t\t\t\"subtype\": \"non_custom\",\n\t    \t\t\t\"field\": \"first_name\",\n                  \"condition\": \"=\",\n                   \"value\": \"larry\"\n\t    \t\t}]\n    \t\t}]\n        }\n    },\n    \"is_v2\": true\n}"},"url":"{{base_url}}/client-group","urlObject":{"path":["client-group"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"f4e9c5a4-70f9-44c2-b54c-d80869e2963f","name":"Create a Contact Group","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"first name larry v2\",\n    \"config\": {\n        \"filters\":{\n\t        \"and\": true,\n\t        \"query\": [{\n\t\t\t    \"id\": \"11-22\",\n\t\t\t    \"and\": true,\n\t    \t\t\"filters\": [{\n\t    \t\t\t\"type\": \"fields\",\n\t    \t\t\t\"subtype\": \"non_custom\",\n\t    \t\t\t\"field\": \"first_name\",\n                  \"condition\": \"=\",\n                   \"value\": \"larry\"\n\t    \t\t}]\n    \t\t}]\n        }\n    },\n    \"is_v2\": true\n}"},"url":"{{base_url}}/client-group"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:25:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"372f4456-e766-477e-a933-17c2661c98c2\",\n    \"created\": \"2020-12-10T15:25:47.895583-05:00\",\n    \"name\": \"first name larry v2\",\n    \"config\": {\n        \"filters\": {\n            \"and\": true,\n            \"query\": [\n                {\n                    \"id\": \"11-22\",\n                    \"and\": true,\n                    \"filters\": [\n                        {\n                            \"type\": \"fields\",\n                            \"subtype\": \"non_custom\",\n                            \"field\": \"first_name\",\n                            \"condition\": \"=\",\n                            \"value\": \"larry\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"is_v2\": true\n}"}],"_postman_id":"5fa30493-b395-49b1-aad1-a5d50ef49496"},{"name":"Update a Contact Group","id":"0af75432-b938-43ba-b630-760f1e00011e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"A New Name\"\n}"},"url":"{{base_url}}/client-group/{{Contact_Group_ID}}","urlObject":{"path":["client-group","{{Contact_Group_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"18f4136a-962e-4c47-b595-314465ee0079","name":"Update a Contact Group","originalRequest":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"First Name Larry Changed Name\"\n}"},"url":"{{base_url}}/client-group/372f4456-e766-477e-a933-17c2661c98c2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:26:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"372f4456-e766-477e-a933-17c2661c98c2\",\n    \"created\": \"2020-12-10T15:25:47.895583-05:00\",\n    \"name\": \"First Name Larry Changed Name\",\n    \"config\": {\n        \"filters\": {\n            \"and\": true,\n            \"query\": [\n                {\n                    \"id\": \"11-22\",\n                    \"and\": true,\n                    \"filters\": [\n                        {\n                            \"type\": \"fields\",\n                            \"field\": \"first_name\",\n                            \"value\": \"larry\",\n                            \"subtype\": \"non_custom\",\n                            \"condition\": \"=\"\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"is_v2\": true\n}"}],"_postman_id":"0af75432-b938-43ba-b630-760f1e00011e"},{"name":"Retrieve All Contact Groups","id":"d6b36f6e-f2df-404f-93c3-1303b43b607e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/client-group?is_v2=true","urlObject":{"path":["client-group"],"host":["{{base_url}}"],"query":[{"key":"is_v2","value":"true"},{"disabled":true,"description":{"content":"<p>Searchs for a specific contact group name</p>\n","type":"text/plain"},"key":"search","value":"a"},{"disabled":true,"description":{"content":"<p>Sorts the results of the response by the parameter specified</p>\n","type":"text/plain"},"key":"ordering","value":"-created"}],"variable":[]}},"response":[{"id":"c41d6b44-2b9d-4898-8b02-ec3c92956534","name":"Retrieve All Contact Groups","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/client-group?is_v2=true","host":["{{base_url}}"],"path":["client-group"],"query":[{"key":"is_v2","value":"true"},{"key":"search","value":"a","disabled":true},{"key":"ordering","value":"-created","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:23:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"[\n\n    {\n        \"id\": \"11712894-3be9-47b4-9073-adeeedc7b80c\",\n        \"created\": \"2020-12-04T09:43:14.585978-05:00\",\n        \"name\": \"tags\",\n        \"config\": {\n            \"and\": null,\n            \"query\": [\n                {\n                    \"id\": \"query-0\",\n                    \"and\": false,\n                    \"filters\": [\n                        {\n                            \"ids\": [\n                                \"38cac600-f682-4f92-b4b8-d5352ed03f99\"\n                            ],\n                            \"type\": \"tags\",\n                            \"subtype\": \"tag\",\n                            \"condition\": \"has\"\n                        }\n                    ]\n                }\n            ]\n        },\n        \"is_v2\": true\n    }\n]"}],"_postman_id":"d6b36f6e-f2df-404f-93c3-1303b43b607e"},{"name":"Retrieve a Specified Contact Group","id":"ac4c884d-432e-471c-9259-861f3e61933f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/client-group/{{Contact_Group_ID}}?is_v2=true","urlObject":{"path":["client-group","{{Contact_Group_ID}}"],"host":["{{base_url}}"],"query":[{"key":"is_v2","value":"true"},{"disabled":true,"key":"search","value":"a"},{"disabled":true,"key":"ordering","value":"-created"}],"variable":[]}},"response":[{"id":"b6064285-52f3-490f-9585-92084e3cf8cc","name":"Retrieve a Specified Contact Group","originalRequest":{"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":{"raw":"{{base_url}}/client-group/11712894-3be9-47b4-9073-adeeedc7b80c?is_v2=true","host":["{{base_url}}"],"path":["client-group","11712894-3be9-47b4-9073-adeeedc7b80c"],"query":[{"key":"is_v2","value":"true"},{"key":"search","value":"a","disabled":true},{"key":"ordering","value":"-created","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 20:25:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"11712894-3be9-47b4-9073-adeeedc7b80c\",\n    \"created\": \"2020-12-04T09:43:14.585978-05:00\",\n    \"name\": \"tags\",\n    \"config\": {\n        \"and\": null,\n        \"query\": [\n            {\n                \"id\": \"query-0\",\n                \"and\": false,\n                \"filters\": [\n                    {\n                        \"ids\": [\n                            \"38cac600-f682-4f92-b4b8-d5352ed03f99\"\n                        ],\n                        \"type\": \"tags\",\n                        \"subtype\": \"tag\",\n                        \"condition\": \"has\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"is_v2\": true\n}"}],"_postman_id":"ac4c884d-432e-471c-9259-861f3e61933f"},{"name":"Delete a Contact Group","id":"d653da15-2e4e-4191-928b-57cc365c4753","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"}],"url":"{{base_url}}/client-group/{{Contact_Group_ID}}","urlObject":{"path":["client-group","{{Contact_Group_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"f76bd3c1-8aff-4fb6-b44e-3cb3abb96825","name":"Delete a Contact Group","originalRequest":{"method":"DELETE","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"}],"url":"{{base_url}}/client-group/719edceb-5372-4a3c-9fff-cc7c1daac083"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 19 May 2021 19:05:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"3"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d653da15-2e4e-4191-928b-57cc365c4753"}],"id":"6d5c5393-b273-4b7a-939c-746c113fc3bf","description":"<h1 id=\"contact-group-description\">Contact Group Description</h1>\n<p>Contact Groups are created to segment and organize contacts on attributes of contacts.</p>\n","_postman_id":"6d5c5393-b273-4b7a-939c-746c113fc3bf"},{"name":"Contact Fields","item":[{"name":"Fields","item":[{"name":"Create Contact Fields","id":"8ef66013-044d-4f9d-b85b-8ea0ad1387ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"model\": \"{{object_id}}\",\n    \"category\": \"{{category_id}}\",\n    \"display_name\": \"test field documentation\",\n    \"description\": \"test field documentation description\",\n    \"is_default\": true,\n    \"field_type\": \"text\", //dynamictags, //integer, //dropdown, //date, //datetime //relationship, //selector, //files, //checkboxes, //rating, //choices, //checkbox,//money, //phonenumber\n    \"is_required\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"is_read_only\": false,\n    \"is_hidden\": false\n}"},"url":"{{base_url}}/client/fields","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","name":"Contact Fields","type":"folder"}},"urlObject":{"path":["client","fields"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"90e469c6-5080-4c06-8d05-f6f83fde2168","name":"Create Contact Fields","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"model\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n    \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n    \"display_name\": \"test field documentation\",\n    \"description\": \"test field documentation description\",\n    \"is_default\": true,\n    \"field_type\": \"text\", \n    \"is_required\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"is_read_only\": false,\n    \"is_hidden\": false\n}"},"url":"{{base_url}}/client/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:12:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"703"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7ff218f1-8b0c-4980-8cac-4d7324a6919e\",\n    \"name\": \"test_field_documentation\",\n    \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n    \"display_name\": \"test field documentation\",\n    \"is_default\": false,\n    \"field_type\": \"text\",\n    \"is_required\": true,\n    \"is_read_only\": false,\n    \"is_hidden\": false,\n    \"is_deletable\": true,\n    \"is_hideable\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"order\": 63,\n    \"meta\": {},\n    \"properties\": {\n        \"allow_options\": false,\n        \"allow_multiple\": false,\n        \"allow_relations\": false,\n        \"allow_add\": false,\n        \"type\": \"str\",\n        \"target_column\": \"value_string\"\n    },\n    \"options\": [],\n    \"relation\": null,\n    \"rating\": null,\n    \"phonenumber_options\": null,\n    \"money_options\": null\n}"}],"_postman_id":"8ef66013-044d-4f9d-b85b-8ea0ad1387ac"},{"name":"Create Contact Fields - Relationship Field","id":"8da16786-cf42-4dd7-8aa7-e3ebe5d9b3b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"content-type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"model\": \"{{object_id}}\",\n    \"category\": \"{{object_category_id}}\",\n    \"display_name\": \"A relationship Field\",\n    \"description\": \"A relationshiop Field Description\",\n    \"is_default\": false,\n    \"field_type\": \"relationship\",\n    \"is_required\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"is_read_only\": false,\n    \"is_hidden\": false,\n    \"relation\": \n        {\n            \"related_object\": \"{{related_object_id}}\",\n            \"related_category\": \"{{related_object_category_id}}\",\n            \"related_name\": \"related name field\",\n            \"cardinality\": \"many_to_many\"\n        }\n    \n}"},"url":"{{base_url}}/client/fields","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","name":"Contact Fields","type":"folder"}},"urlObject":{"path":["client","fields"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"fea510c3-948b-440f-bc15-a183a94aabd6","name":"Create Contact Fields - Relationship Field","originalRequest":{"method":"POST","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"content-type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"model\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n    \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n    \"display_name\": \"A relationship Field\",\n    \"description\": \"A relationshiop Field Description\",\n    \"is_default\": false,\n    \"field_type\": \"relationship\",\n    \"is_required\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"is_read_only\": false,\n    \"is_hidden\": false,\n    \"relation\": \n        {\n            \"related_object\": \"a2e031d1-f148-4fd4-a2ef-4ba489790a37\",\n            \"related_category\": \"f903c6e9-3229-4d64-8347-b92489ca5aba\",\n            \"related_name\": \"related name field\",\n            \"cardinality\": \"many_to_many\"\n        }\n    \n}"},"url":"{{base_url}}/client/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:18:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"713"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"da1eb891-60cd-4940-bbac-75ae0a12e585\",\n    \"name\": \"a_relationship_field\",\n    \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n    \"display_name\": \"A relationship Field\",\n    \"is_default\": false,\n    \"field_type\": \"relationship\",\n    \"is_required\": true,\n    \"is_read_only\": false,\n    \"is_hidden\": false,\n    \"is_deletable\": true,\n    \"is_hideable\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"order\": 65,\n    \"meta\": {},\n    \"properties\": {\n        \"allow_options\": false,\n        \"allow_multiple\": true,\n        \"allow_relations\": true,\n        \"allow_add\": false,\n        \"type\": \"UUID\",\n        \"target_column\": \"value_uuid\"\n    },\n    \"options\": [],\n    \"relation\": {\n        \"related_object\": \"a2e031d1-f148-4fd4-a2ef-4ba489790a37\",\n        \"related_category\": \"f903c6e9-3229-4d64-8347-b92489ca5aba\",\n        \"related_name\": \"related name field\",\n        \"cardinality\": \"many_to_many\",\n        \"fetch_url\": \"standard\"\n    },\n    \"rating\": null,\n    \"phonenumber_options\": null,\n    \"money_options\": null\n}"}],"_postman_id":"8da16786-cf42-4dd7-8aa7-e3ebe5d9b3b5"},{"name":"Update Contact Fields","id":"d11e97a0-5462-4b21-8443-84e3e6037792","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"model\": \"{{object_id}}\",\n    \"category\": \"{{category_id}}\",\n    \"display_name\": \"test field documentation\",\n    \"description\": \"test field documentation description\",\n    \"is_default\": true,\n    \"field_type\": \"text\", //dynamictags, //integer, //dropdown, //date, //datetime //relationship, //selector, //files, //checkboxes, //rating, //choices, //checkbox,//money, //phonenumber\n    \"is_required\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"is_read_only\": false,\n    \"is_hidden\": false\n}"},"url":"{{base_url}}/client/fields/7ff218f1-8b0c-4980-8cac-4d7324a6919e","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","name":"Contact Fields","type":"folder"}},"urlObject":{"path":["client","fields","7ff218f1-8b0c-4980-8cac-4d7324a6919e"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"b5bb12b9-5f10-4c81-a4bf-0f1f1a3d9c60","name":"Update Contact Fields","originalRequest":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"model\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n    \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n    \"display_name\": \"test field documentations\",\n    \"description\": \"test field documentation descriptions\",\n    \"is_default\": true,\n    \"field_type\": \"text\", \n    \"is_required\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"is_read_only\": false,\n    \"is_hidden\": false\n}"},"url":"{{base_url}}/client/fields/7ff218f1-8b0c-4980-8cac-4d7324a6919e"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:25:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"185"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7ff218f1-8b0c-4980-8cac-4d7324a6919e\",\n    \"name\": \"test_field_documentation\",\n    \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n    \"display_name\": \"test field documentations\",\n    \"is_default\": false,\n    \"field_type\": \"text\",\n    \"is_required\": true,\n    \"is_read_only\": false,\n    \"is_hidden\": false,\n    \"is_deletable\": true,\n    \"is_hideable\": true,\n    \"allows_nulls\": false,\n    \"allows_empty\": false,\n    \"order\": 63,\n    \"meta\": {},\n    \"properties\": {\n        \"allow_options\": false,\n        \"allow_multiple\": false,\n        \"allow_relations\": false,\n        \"allow_add\": false,\n        \"type\": \"str\",\n        \"target_column\": \"value_string\"\n    },\n    \"options\": [],\n    \"relation\": null,\n    \"rating\": null,\n    \"phonenumber_options\": null,\n    \"money_options\": null\n}"}],"_postman_id":"d11e97a0-5462-4b21-8443-84e3e6037792"},{"name":"Retrieve All Contact Fields","id":"953be153-4959-4ca5-af50-a0a0856f8e4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/client/fields","urlObject":{"path":["client","fields"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>Searches for a specified field</p>\n","type":"text/plain"},"key":"search","value":"d"},{"disabled":true,"description":{"content":"<p>Limits the size of the response</p>\n","type":"text/plain"},"key":"page_size","value":"5"}],"variable":[]}},"response":[{"id":"597d65ef-ebf5-4d11-a2f8-79cbb78465b7","name":"Retrieve All Contact Fields","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/client/fields","host":["{{base_url}}"],"path":["client","fields"],"query":[{"key":"search","value":"d","description":"Searches for a specified field","disabled":true},{"key":"page_size","value":"5","description":"Limits the size of the response","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:07:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"161"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"3ba45bd4-ea92-44c5-bfe9-39402ea69b9f\",\n        \"name\": \"111\",\n        \"category\": \"bed15bc2-e1f4-42f5-baf4-03a91afb6b31\",\n        \"display_name\": \"111\",\n        \"is_default\": false,\n        \"field_type\": \"integer\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 1,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"integer\",\n            \"target_column\": \"value_integer\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce\",\n        \"name\": \"another_text_field\",\n        \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n        \"display_name\": \"Another Text Field\",\n        \"is_default\": false,\n        \"field_type\": \"text\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 1,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"3b6866dd-d203-4797-b343-457c60f0b275\",\n        \"name\": \"first_name\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"First Name\",\n        \"is_default\": true,\n        \"field_type\": \"text\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": false,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 1,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"e484d946-7774-496d-96e3-4883cae8846d\",\n        \"name\": \"checkbox_2\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"checkbox\",\n        \"is_default\": false,\n        \"field_type\": \"checkbox\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 1,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"bool\",\n            \"target_column\": \"value_boolean\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"50ab3e2e-17a4-4493-862a-f30b953d2fd8\",\n        \"name\": \"test_number\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"test number\",\n        \"is_default\": false,\n        \"field_type\": \"phonenumber\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 1,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"phonenumber\",\n            \"target_column\": \"value_phonenumber\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": {\n            \"id\": \"4ff9db1d-1dbf-4c28-9a60-7a71a676662e\",\n            \"enable_country_code\": true,\n            \"enable_extension\": false,\n            \"default_country\": null,\n            \"meta\": {}\n        },\n        \"money_options\": null\n    },\n    {\n        \"id\": \"61b78ce4-7da6-4592-a1c6-0978cba5690d\",\n        \"name\": \"son_radio\",\n        \"category\": \"43579145-236c-4254-85ef-3fb513a8e06f\",\n        \"display_name\": \"son radio\",\n        \"is_default\": false,\n        \"field_type\": \"radio\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 1,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"f2c46797-a610-4ca3-b6bd-94bf9f20cb71\",\n                \"code\": \"\",\n                \"name\": \"Option 3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"14df59cc-e3a4-4ea1-b5e7-25b7d60f49d8\",\n                \"code\": \"\",\n                \"name\": \"Option 2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b7cb18ea-ae90-4a00-956f-3695f8d131b4\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"a7ec1bcd-6265-47a7-8e53-86c2b6da1769\",\n        \"name\": \"checkbox_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Checkbox\",\n        \"is_default\": false,\n        \"field_type\": \"checkbox\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 1,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"bool\",\n            \"target_column\": \"value_boolean\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d8403e63-e449-4349-b808-ad91dcf68b1f\",\n        \"name\": \"son_yesnomaybe\",\n        \"category\": \"43579145-236c-4254-85ef-3fb513a8e06f\",\n        \"display_name\": \"son yesnomaybe\",\n        \"is_default\": false,\n        \"field_type\": \"yesnomaybe\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 2,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"62827122-52eb-4eef-ac9f-2c4b3ed0a1e0\",\n                \"code\": \"maybe\",\n                \"name\": \"Maybe\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"38e55cfd-f0a3-449f-84f1-2da055b8675d\",\n                \"code\": \"no\",\n                \"name\": \"No\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5878f512-ce70-4f93-a501-893deea1c192\",\n                \"code\": \"yes\",\n                \"name\": \"Yes\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"684ee783-9745-425c-be97-1e4c2100a5e3\",\n        \"name\": \"primary_for_ticket_record_1\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for ticket Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 2,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"f8d6e9a5-5a39-498a-960f-112005964ae6\",\n            \"related_category\": \"bc7621d9-df09-414c-a114-677c9b458ceb\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"3fd98791-acdd-4908-a623-22a87ba2e464\",\n        \"name\": \"relationship\",\n        \"category\": \"bed15bc2-e1f4-42f5-baf4-03a91afb6b31\",\n        \"display_name\": \"Relationship\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 2,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"e8ff2c43-0316-4e49-bc5a-4d37ee70ce6c\",\n            \"related_category\": \"cacf8b20-5716-406d-aa0d-ccdc4756e4a2\",\n            \"related_name\": \"Stuarts Pl Field NAme\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"1bf3bcff-4118-46fe-bfeb-740b4ea71f02\",\n        \"name\": \"checkboxes_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Checkboxes\",\n        \"is_default\": false,\n        \"field_type\": \"checkboxes\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 2,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"38079a19-331c-416f-acc7-a5404a743be0\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"3288aec2-d55b-41a2-820f-d38fcee8dcc7\",\n        \"name\": \"last_name\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Last Name\",\n        \"is_default\": true,\n        \"field_type\": \"text\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": false,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 2,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"762c0c5c-7e4b-4b02-8a92-b6d7c37d8f28\",\n        \"name\": \"checkbox_3\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"checkboxes\",\n        \"is_default\": false,\n        \"field_type\": \"checkboxes\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 2,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"094652d5-a3b5-423b-aa9a-a881abd5fbde\",\n                \"code\": \"\",\n                \"name\": \"Option 3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9ad3615a-7139-4627-97a6-2f62027e5573\",\n                \"code\": \"\",\n                \"name\": \"Option 2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b6751f86-6c31-4b94-832a-1b2ceb3b568d\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"2468645a-4c8d-42d8-8f0b-5646e11ccec6\",\n        \"name\": \"another_checkbox_field\",\n        \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n        \"display_name\": \"Another Checkbox Field\",\n        \"is_default\": false,\n        \"field_type\": \"checkbox\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 2,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"bool\",\n            \"target_column\": \"value_boolean\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"16e9bbc9-2115-4e94-b49c-3ac775ffe7e5\",\n        \"name\": \"additional_for_ticket_records_1\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for ticket Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 3,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"f8d6e9a5-5a39-498a-960f-112005964ae6\",\n            \"related_category\": \"bc7621d9-df09-414c-a114-677c9b458ceb\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"0023193b-f767-425a-a402-70ee8dc19e02\",\n        \"name\": \"email\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Email\",\n        \"is_default\": true,\n        \"field_type\": \"email\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 3,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_email\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"4ec53a73-2c1e-479a-aa87-94e574dbd4d7\",\n        \"name\": \"another_checkboxes\",\n        \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n        \"display_name\": \"Another Checkboxes\",\n        \"is_default\": false,\n        \"field_type\": \"checkboxes\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 3,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"a5a8eadd-0718-4b06-a81f-5077deb034c8\",\n                \"code\": \"\",\n                \"name\": \"Option 3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e216dddf-a6f2-441c-9c55-b64ce1206aa8\",\n                \"code\": \"\",\n                \"name\": \"Option 2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c4f7e959-92e2-4d22-9e3b-b7bbaca9010d\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"77636b3f-9a54-48cf-9ed4-e67e1185806d\",\n        \"name\": \"date_4\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"date\",\n        \"is_default\": false,\n        \"field_type\": \"date\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 3,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"date\",\n            \"target_column\": \"value_date\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"46e480d5-e8e6-441c-b9d9-e8645001d714\",\n        \"name\": \"testurl\",\n        \"category\": \"bed15bc2-e1f4-42f5-baf4-03a91afb6b31\",\n        \"display_name\": \"testURL\",\n        \"is_default\": false,\n        \"field_type\": \"text\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 3,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"8170a242-f69c-4945-9383-7107fcba087c\",\n        \"name\": \"son_dropdown\",\n        \"category\": \"43579145-236c-4254-85ef-3fb513a8e06f\",\n        \"display_name\": \"son dropdown\",\n        \"is_default\": false,\n        \"field_type\": \"dropdown\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 3,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"3450c130-1465-4a45-8915-7279de557330\",\n                \"code\": \"\",\n                \"name\": \"Option 3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5538fe64-8f24-46e4-abf3-16e5e16fb8e9\",\n                \"code\": \"\",\n                \"name\": \"Option 2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6fb0cb5a-0763-451b-a354-6b1fcb3abce7\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"bf2a7040-7077-4249-b75c-0af8300d3309\",\n        \"name\": \"date_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Date\",\n        \"is_default\": false,\n        \"field_type\": \"date\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 3,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"date\",\n            \"target_column\": \"value_date\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"dbb12ad2-2021-4624-a543-6edf9ff5ad73\",\n        \"name\": \"son_status\",\n        \"category\": \"43579145-236c-4254-85ef-3fb513a8e06f\",\n        \"display_name\": \"son status\",\n        \"is_default\": false,\n        \"field_type\": \"status\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 4,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"b0ff188b-f11d-495b-9c89-9ace9906a478\",\n                \"code\": \"\",\n                \"name\": \"Option 3\",\n                \"order\": 3,\n                \"meta\": {\n                    \"color\": \"#085bee\"\n                },\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8fe3e68d-8884-49ac-bd43-21ac0da3d232\",\n                \"code\": \"\",\n                \"name\": \"Option 2\",\n                \"order\": 2,\n                \"meta\": {\n                    \"color\": \"#085bee\"\n                },\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c86ba10e-0d26-47eb-b101-ae10fbf9e157\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {\n                    \"color\": \"#085bee\"\n                },\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"6d8a430a-1e10-4f86-912a-00ba6d950bcc\",\n        \"name\": \"datetime_2\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"datetime\",\n        \"is_default\": false,\n        \"field_type\": \"datetime\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 4,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"dttm\",\n            \"target_column\": \"value_dttm\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d42e5b29-ba37-4310-98ee-2be92d436eae\",\n        \"name\": \"email_status\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Email Status\",\n        \"is_default\": true,\n        \"field_type\": \"choices\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 4,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"eeae1e9e-7d8a-4c2b-8bc4-67fc27bd05e6\",\n                \"code\": \"unsubscribed\",\n                \"name\": \"Unsubscribed From All\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8e2b7e46-7e1d-479a-b4a4-88dbcabc318a\",\n                \"code\": \"not_opted_in\",\n                \"name\": \"Not Opted In\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f8f09cf4-3b41-4ce3-ba0e-1f629cc46ab1\",\n                \"code\": \"opted_in\",\n                \"name\": \"Opted In\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"b4da5a85-3c4f-4d02-b4c5-b57b0ab81405\",\n        \"name\": \"another_dropdown\",\n        \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n        \"display_name\": \"another dropdown\",\n        \"is_default\": false,\n        \"field_type\": \"dropdown\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 4,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"8c748e32-7485-4e2b-8e71-6a35f77e85a9\",\n                \"code\": \"\",\n                \"name\": \"test 3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6a37a73e-e8cb-4d63-817d-b5357550095f\",\n                \"code\": \"\",\n                \"name\": \"test 2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"dc0dcf02-6648-4568-a4a3-8a990a51c277\",\n                \"code\": \"\",\n                \"name\": \"test1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"99847005-7a42-48ac-9be7-4db3d22cbb41\",\n        \"name\": \"test_1\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Rielation\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 4,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"03631599-a803-426f-b351-f82d6e570a54\",\n            \"related_category\": \"22c17e1a-7412-4d60-af0f-2d73e46cdc9b\",\n            \"related_name\": \"Rielation\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"9a2c1868-7b76-4502-871a-46e4cbede374\",\n        \"name\": \"datetime_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Datetime\",\n        \"is_default\": false,\n        \"field_type\": \"datetime\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 4,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"dttm\",\n            \"target_column\": \"value_dttm\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"ae981b43-2a8b-411b-a920-202f1caf1d1d\",\n        \"name\": \"testurlfile\",\n        \"category\": \"bed15bc2-e1f4-42f5-baf4-03a91afb6b31\",\n        \"display_name\": \"testURLFile\",\n        \"is_default\": false,\n        \"field_type\": \"files\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 4,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"898c375f-90f4-4437-bfd4-580cb526efcc\",\n        \"name\": \"dropdown_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Dropdown\",\n        \"is_default\": false,\n        \"field_type\": \"dropdown\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 5,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"5946599b-c457-43cb-b191-6ac3ce9e6450\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"ddf9604d-1e84-4b34-97f6-a6509d9105bf\",\n        \"name\": \"v-test\",\n        \"category\": \"bed15bc2-e1f4-42f5-baf4-03a91afb6b31\",\n        \"display_name\": \"v-test\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 5,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"769ebab9-a2c7-4ac9-aa62-fb8ebdf8bb77\",\n            \"related_category\": \"6544f75f-3496-4ebc-88ed-a5c383f656e8\",\n            \"related_name\": \"eeee\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"07ad4aa0-a7e0-4b92-904b-f260f2fb3d0f\",\n        \"name\": \"another_rating\",\n        \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n        \"display_name\": \"another rating\",\n        \"is_default\": false,\n        \"field_type\": \"rating\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 5,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"integer\",\n            \"target_column\": \"value_integer\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": {\n            \"id\": \"d3aacbbe-750d-40fa-a728-09127b057042\",\n            \"min_value\": 1,\n            \"max_value\": 5,\n            \"min_label\": \"Unsatisfied\",\n            \"max_label\": \"Satisfied\",\n            \"meta\": {}\n        },\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d29e7f98-531d-44c3-b60b-2976ef5dc2a7\",\n        \"name\": \"dropdown_4\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"dropdown\",\n        \"is_default\": false,\n        \"field_type\": \"dropdown\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 5,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"783e3c7a-91d0-43c8-86f8-9be67ee60f09\",\n                \"code\": \"\",\n                \"name\": \"Option 3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e7fe89a4-64ce-4792-bbaa-bedd6064bdf6\",\n                \"code\": \"\",\n                \"name\": \"Option 2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0ee46133-cb0b-44d9-b48c-f89a27347ad3\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"75bfc803-f5ea-443a-9609-d678900e2ca2\",\n        \"name\": \"business_phone\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Business Phone\",\n        \"is_default\": true,\n        \"field_type\": \"phonenumber\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 5,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"phonenumber\",\n            \"target_column\": \"value_phonenumber\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": {\n            \"id\": \"8caf482c-71d5-414d-8012-37945c4f7926\",\n            \"enable_country_code\": false,\n            \"enable_extension\": false,\n            \"default_country\": null,\n            \"meta\": {}\n        },\n        \"money_options\": null\n    },\n    {\n        \"id\": \"a140eaed-361a-4c09-afdd-0d040428a557\",\n        \"name\": \"name_2\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"name\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 5,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7fdeca8b-2856-4131-ae57-b51d07af19f0\",\n            \"related_category\": \"311842be-5a68-4cb5-bef1-f2f16701cba2\",\n            \"related_name\": \"relation\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"8b79b905-59de-4148-89b3-5136c216585e\",\n        \"name\": \"email_address_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Email Address\",\n        \"is_default\": false,\n        \"field_type\": \"email\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 6,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_email\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"34ff96ad-dc2a-4974-874e-a276b246ff47\",\n        \"name\": \"dynamic_tags_3\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"dynamic tags\",\n        \"is_default\": false,\n        \"field_type\": \"dynamictags\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 6,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": true,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"521aa2af-4cc9-451a-9ae3-0ac28ccf047a\",\n                \"code\": \"\",\n                \"name\": \"Tag3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 1\n            },\n            {\n                \"id\": \"a2404bfa-20fa-4d1a-afdf-8150c2ff332d\",\n                \"code\": \"\",\n                \"name\": \"Tag2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 1\n            },\n            {\n                \"id\": \"c859f939-9dec-441b-bc82-65a1a33c9df2\",\n                \"code\": \"\",\n                \"name\": \"Tag1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 1\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"1b955b1c-4987-4c79-bcc7-5e8ad2c1a67a\",\n        \"name\": \"v-test-2\",\n        \"category\": \"bed15bc2-e1f4-42f5-baf4-03a91afb6b31\",\n        \"display_name\": \"v-test-2\",\n        \"is_default\": false,\n        \"field_type\": \"selector\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 6,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"1ffa146a-6be1-45c5-8b95-23e19b12b21d\",\n            \"related_category\": null,\n            \"related_name\": null,\n            \"cardinality\": \"many_to_one\",\n            \"fetch_url\": \"team\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"14d1305b-93f4-4cf8-8a4d-b493e9a5fb99\",\n        \"name\": \"mobile_phone\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Mobile Phone\",\n        \"is_default\": true,\n        \"field_type\": \"phonenumber\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 6,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"phonenumber\",\n            \"target_column\": \"value_phonenumber\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": {\n            \"id\": \"e8ca311c-2341-4862-8e9b-9f4c816c3362\",\n            \"enable_country_code\": false,\n            \"enable_extension\": false,\n            \"default_country\": null,\n            \"meta\": {}\n        },\n        \"money_options\": null\n    },\n    {\n        \"id\": \"6152eeb3-f2b7-453b-8d2b-7ca006e19444\",\n        \"name\": \"primary_for_dillon_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Dillon Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 6,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a2e031d1-f148-4fd4-a2ef-4ba489790a37\",\n            \"related_category\": \"f903c6e9-3229-4d64-8347-b92489ca5aba\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"74ddf228-9634-4ab7-b13e-6b56163e11e6\",\n        \"name\": \"additional_for_dillon_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Dillon Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 7,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a2e031d1-f148-4fd4-a2ef-4ba489790a37\",\n            \"related_category\": \"f903c6e9-3229-4d64-8347-b92489ca5aba\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"4e6ba8f1-80b9-4e87-98d9-ddf95dcfa8a9\",\n        \"name\": \"email_address_2\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"email address\",\n        \"is_default\": false,\n        \"field_type\": \"email\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 7,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_email\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"022832a9-dea9-4300-9a0e-61d70cef26ed\",\n        \"name\": \"company\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Company\",\n        \"is_default\": true,\n        \"field_type\": \"selector\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 7,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7a1a2263-e13c-4fd6-ad0a-0532cd305ae4\",\n            \"related_category\": \"a131c99c-76f8-4a86-834e-65b305e276c0\",\n            \"related_name\": \"Dummy\",\n            \"cardinality\": \"many_to_one\",\n            \"fetch_url\": \"company\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"70fd7463-f0f1-49fc-90fd-16991e195e76\",\n        \"name\": \"files_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Files\",\n        \"is_default\": false,\n        \"field_type\": \"files\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 7,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"109d5208-65bd-4b9b-b0cc-6690196323e1\",\n        \"name\": \"files_2\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"files\",\n        \"is_default\": false,\n        \"field_type\": \"files\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 8,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"0dfb12c0-8f81-495b-a183-bf9f7d46ff3e\",\n        \"name\": \"long_text_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Long Text\",\n        \"is_default\": false,\n        \"field_type\": \"longtext\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 8,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"84d9453d-ab76-4fd2-9fd9-cb5821e8cbb0\",\n        \"name\": \"primary_for_product_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Product Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 8,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"43ddf53b-0a65-460d-90ff-8c7c39ed984b\",\n            \"related_category\": \"4f941e12-4d2b-4ae7-8800-d94ee7b157f8\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"da0b0940-ef4c-45d0-9b16-ff2f9bff0470\",\n        \"name\": \"home_phone\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Home Phone\",\n        \"is_default\": true,\n        \"field_type\": \"phonenumber\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 8,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"phonenumber\",\n            \"target_column\": \"value_phonenumber\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": {\n            \"id\": \"305f4ab1-72c1-4dd7-bbd4-2901ca2c8e7b\",\n            \"enable_country_code\": false,\n            \"enable_extension\": false,\n            \"default_country\": null,\n            \"meta\": {}\n        },\n        \"money_options\": null\n    },\n    {\n        \"id\": \"cf593486-fbd5-42d2-a0e1-1971f695aa48\",\n        \"name\": \"number_(decimal)\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Number (Decimal)\",\n        \"is_default\": false,\n        \"field_type\": \"decimal\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 9,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"float\",\n            \"target_column\": \"value_decimal\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"255db46e-8478-4874-a8c8-ec47a9f6c524\",\n        \"name\": \"titles\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Titles\",\n        \"is_default\": true,\n        \"field_type\": \"selector\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 9,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"8089db98-ae21-4689-b1d4-9e4ccf4c8cb4\",\n            \"related_category\": \"62b2bea7-ef84-4107-ba60-2d42afc41dd5\",\n            \"related_name\": \"Dummy\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"client-title\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"b685fc66-59f8-4287-969e-76988244e7b2\",\n        \"name\": \"long_text_2\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"long text\",\n        \"is_default\": false,\n        \"field_type\": \"longtext\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 9,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"669fe428-03df-4e27-a92a-7b07a106d879\",\n        \"name\": \"additional_for_product_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Product Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 9,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"43ddf53b-0a65-460d-90ff-8c7c39ed984b\",\n            \"related_category\": \"4f941e12-4d2b-4ae7-8800-d94ee7b157f8\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"e46b7d18-bd12-475e-b27d-6126f6ce27ba\",\n        \"name\": \"number_(decimal)_1\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"number (decimal)\",\n        \"is_default\": false,\n        \"field_type\": \"decimal\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 10,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"float\",\n            \"target_column\": \"value_decimal\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"1f03675b-f89d-40e9-8321-55951d31ef51\",\n        \"name\": \"additional_for_unit_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for unit Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 10,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"565659e3-42bf-4199-9faa-d01765091e2a\",\n            \"related_category\": \"dc0f8857-8268-4f46-9cf1-2873a58d3e07\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"ba9c8ad1-7ce0-441b-adb4-3e3bc6f16c34\",\n        \"name\": \"number_(whole)\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Number (Whole)\",\n        \"is_default\": false,\n        \"field_type\": \"integer\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 10,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"integer\",\n            \"target_column\": \"value_integer\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"c5f1bbe5-0035-4343-8526-9ee8ff5cc80c\",\n        \"name\": \"tags\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Tags\",\n        \"is_default\": true,\n        \"field_type\": \"selector\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 10,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"0af66455-3f70-4d01-b94c-3fa4a8ed215b\",\n            \"related_category\": \"55517ca0-0962-49d7-b069-9f79c84087ec\",\n            \"related_name\": \"Dummy\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"client-tag\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"f651b193-bf17-4229-8279-43be15c86a02\",\n        \"name\": \"phone_number_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Phone Number\",\n        \"is_default\": false,\n        \"field_type\": \"phonenumber\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 11,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"phonenumber\",\n            \"target_column\": \"value_phonenumber\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": {\n            \"id\": \"1dfb65dc-aadd-451b-9edc-212b7f3138ae\",\n            \"enable_country_code\": true,\n            \"enable_extension\": false,\n            \"default_country\": null,\n            \"meta\": {}\n        },\n        \"money_options\": null\n    },\n    {\n        \"id\": \"ef6a3324-e604-4f5b-beb1-223a11a9b5ec\",\n        \"name\": \"primary_for_flat_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for flat Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 11,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a32d15ab-01cd-4d18-90b6-4a3903aa8c9c\",\n            \"related_category\": \"b5a70fc9-6aeb-4317-a83a-95ac27a43907\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"2ff64797-ca6c-452c-a429-ec1245bc010d\",\n        \"name\": \"birthday\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Birthday\",\n        \"is_default\": true,\n        \"field_type\": \"date\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 11,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"date\",\n            \"target_column\": \"value_date\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"27ca9694-c314-4d7c-8d55-17cfe0ef3c36\",\n        \"name\": \"number_(whole)_1\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"number (whole)\",\n        \"is_default\": false,\n        \"field_type\": \"integer\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 11,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"integer\",\n            \"target_column\": \"value_integer\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"0289a17b-e053-4673-8c38-bb0044a0965d\",\n        \"name\": \"radio_buttons\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Radio Buttons\",\n        \"is_default\": false,\n        \"field_type\": \"radio\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 12,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"668d2849-5727-46c1-a22f-5010638f19e5\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"5f058561-8199-4853-952f-aff19a4723ac\",\n        \"name\": \"additional_for_flat_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for flat Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 12,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a32d15ab-01cd-4d18-90b6-4a3903aa8c9c\",\n            \"related_category\": \"b5a70fc9-6aeb-4317-a83a-95ac27a43907\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"4cb8d8b4-e49d-44c8-b300-87745e2ed7c0\",\n        \"name\": \"phone_number_cc+e\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"phone number_cc+e\",\n        \"is_default\": false,\n        \"field_type\": \"phonenumber\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 12,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"phonenumber\",\n            \"target_column\": \"value_phonenumber\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": {\n            \"id\": \"27773904-b204-4679-8de4-3acdd31e75ae\",\n            \"enable_country_code\": true,\n            \"enable_extension\": true,\n            \"default_country\": null,\n            \"meta\": {}\n        },\n        \"money_options\": null\n    },\n    {\n        \"id\": \"a8d64320-0d0f-4ea1-ab40-37bfe0b0aa98\",\n        \"name\": \"timezone\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Time Zone\",\n        \"is_default\": true,\n        \"field_type\": \"choices\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 12,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"6df4ff6b-3fa2-43ae-bd2b-4c8bcced85da\",\n                \"code\": \"Pacific/Saipan\",\n                \"name\": \"Pacific/Saipan\",\n                \"order\": 559,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ff542c9f-7dd0-4485-984c-7ed0f6a04d42\",\n                \"code\": \"Pacific/Rarotonga\",\n                \"name\": \"Pacific/Rarotonga\",\n                \"order\": 558,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b023a21d-de54-45da-b1f4-acdbe4337624\",\n                \"code\": \"Pacific/Port_Moresby\",\n                \"name\": \"Pacific/Port_Moresby\",\n                \"order\": 557,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"eb64c014-9618-4c60-b022-3f80335eb3fe\",\n                \"code\": \"Pacific/Ponape\",\n                \"name\": \"Pacific/Ponape\",\n                \"order\": 556,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f944240f-0f92-452c-8903-0f7784b790e9\",\n                \"code\": \"Pacific/Pohnpei\",\n                \"name\": \"Pacific/Pohnpei\",\n                \"order\": 555,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d9e6ad87-6084-42a3-af75-d780fafd8882\",\n                \"code\": \"Pacific/Pitcairn\",\n                \"name\": \"Pacific/Pitcairn\",\n                \"order\": 554,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"732f0f71-b8ba-4c7a-9879-9c97d8668349\",\n                \"code\": \"Pacific/Palau\",\n                \"name\": \"Pacific/Palau\",\n                \"order\": 553,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6a81bc0f-aedf-4e70-8ad7-1ecea31eb744\",\n                \"code\": \"Pacific/Pago_Pago\",\n                \"name\": \"Pacific/Pago_Pago\",\n                \"order\": 552,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4c3474c2-be45-4ff0-928e-de5dc8840cbe\",\n                \"code\": \"Pacific/Noumea\",\n                \"name\": \"Pacific/Noumea\",\n                \"order\": 551,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"94b307dc-893f-434a-b64f-c1d865dac89b\",\n                \"code\": \"Pacific/Norfolk\",\n                \"name\": \"Pacific/Norfolk\",\n                \"order\": 550,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8ce4e4a3-6893-4c1c-849b-396106775a27\",\n                \"code\": \"Pacific/Niue\",\n                \"name\": \"Pacific/Niue\",\n                \"order\": 549,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"26b6d0d6-9139-4a17-9f25-d6cab326e204\",\n                \"code\": \"Pacific/Nauru\",\n                \"name\": \"Pacific/Nauru\",\n                \"order\": 548,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2d3e6495-ead8-409e-a19b-4bf3f8bf34e5\",\n                \"code\": \"Pacific/Midway\",\n                \"name\": \"Pacific/Midway\",\n                \"order\": 547,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5c99f53c-7e68-4ae3-b7a1-0ee42c997dab\",\n                \"code\": \"Pacific/Marquesas\",\n                \"name\": \"Pacific/Marquesas\",\n                \"order\": 546,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1e3c84da-2471-4cb9-8576-6adc44a0fe60\",\n                \"code\": \"Pacific/Majuro\",\n                \"name\": \"Pacific/Majuro\",\n                \"order\": 545,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4ba6a691-affc-4f80-9ac6-1fbb0a869a2f\",\n                \"code\": \"Pacific/Kwajalein\",\n                \"name\": \"Pacific/Kwajalein\",\n                \"order\": 544,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e3ffa8b3-9a3d-48ef-bfc3-a909c76324ce\",\n                \"code\": \"Pacific/Kosrae\",\n                \"name\": \"Pacific/Kosrae\",\n                \"order\": 543,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"89ea33d1-aaaa-47d5-855e-0e12fd7dc060\",\n                \"code\": \"Pacific/Kiritimati\",\n                \"name\": \"Pacific/Kiritimati\",\n                \"order\": 542,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c7265957-350d-4330-a768-b64c59332156\",\n                \"code\": \"Pacific/Johnston\",\n                \"name\": \"Pacific/Johnston\",\n                \"order\": 541,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f0df5e1f-35c5-4a98-9c64-919a9184ff5b\",\n                \"code\": \"Pacific/Honolulu\",\n                \"name\": \"Pacific/Honolulu\",\n                \"order\": 540,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"96a90166-c6e3-49e5-8e68-184b2d88df24\",\n                \"code\": \"Pacific/Guam\",\n                \"name\": \"Pacific/Guam\",\n                \"order\": 539,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cf4e1f49-f465-4605-9f8e-13a50318e2b0\",\n                \"code\": \"Pacific/Guadalcanal\",\n                \"name\": \"Pacific/Guadalcanal\",\n                \"order\": 538,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"89e45f4e-3d1b-412b-b641-655ff2431e1f\",\n                \"code\": \"Pacific/Gambier\",\n                \"name\": \"Pacific/Gambier\",\n                \"order\": 537,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f57a20c2-d1d0-4567-9c4b-3a6ec82865c2\",\n                \"code\": \"Pacific/Galapagos\",\n                \"name\": \"Pacific/Galapagos\",\n                \"order\": 536,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"288b596b-ca95-4b20-827e-4972e84e7384\",\n                \"code\": \"Pacific/Funafuti\",\n                \"name\": \"Pacific/Funafuti\",\n                \"order\": 535,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"90bd71fc-cdd9-42f8-9a9f-dcf6d15d77ab\",\n                \"code\": \"Pacific/Fiji\",\n                \"name\": \"Pacific/Fiji\",\n                \"order\": 534,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e2f15c9e-0ff8-4867-85d5-fbeacf27745d\",\n                \"code\": \"Pacific/Fakaofo\",\n                \"name\": \"Pacific/Fakaofo\",\n                \"order\": 533,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"591906bf-d86d-40b6-84cb-a7ba709e86fc\",\n                \"code\": \"Pacific/Enderbury\",\n                \"name\": \"Pacific/Enderbury\",\n                \"order\": 532,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a1234325-f10e-44fd-9ddb-3306f774a62d\",\n                \"code\": \"Pacific/Efate\",\n                \"name\": \"Pacific/Efate\",\n                \"order\": 531,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fc085d5d-dbd4-4bd9-96cb-8d0f381551f0\",\n                \"code\": \"Pacific/Easter\",\n                \"name\": \"Pacific/Easter\",\n                \"order\": 530,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d2b37ae6-30ff-43eb-ba1d-81fbb6204408\",\n                \"code\": \"Pacific/Chuuk\",\n                \"name\": \"Pacific/Chuuk\",\n                \"order\": 529,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1e8f6531-8f04-428d-9342-5a2e09a56d50\",\n                \"code\": \"Pacific/Chatham\",\n                \"name\": \"Pacific/Chatham\",\n                \"order\": 528,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3a29cf5e-f59c-4721-a49a-4e893efc8104\",\n                \"code\": \"Pacific/Bougainville\",\n                \"name\": \"Pacific/Bougainville\",\n                \"order\": 527,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c2e2d0c1-3cd1-4149-9e56-fa40732ac3b1\",\n                \"code\": \"Pacific/Auckland\",\n                \"name\": \"Pacific/Auckland\",\n                \"order\": 526,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"13601634-051d-4830-86fa-2045a1db0040\",\n                \"code\": \"Pacific/Apia\",\n                \"name\": \"Pacific/Apia\",\n                \"order\": 525,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9720d6e6-5c40-4c80-8ca5-2b2baab31250\",\n                \"code\": \"PST8PDT\",\n                \"name\": \"PST8PDT\",\n                \"order\": 524,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1324e431-ca86-46d5-bbf4-c6b3c1cb381f\",\n                \"code\": \"PRC\",\n                \"name\": \"PRC\",\n                \"order\": 523,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"992ccf88-6629-4ae5-93f0-753e74c4d9dd\",\n                \"code\": \"Navajo\",\n                \"name\": \"Navajo\",\n                \"order\": 522,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"909aa323-b3a1-4b23-97dc-36323d3070c9\",\n                \"code\": \"NZ-CHAT\",\n                \"name\": \"NZ-CHAT\",\n                \"order\": 521,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a506878c-dcc2-473e-9ae8-74db64509d66\",\n                \"code\": \"NZ\",\n                \"name\": \"NZ\",\n                \"order\": 520,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f52328f6-34fd-4b39-acc4-b521d52882dd\",\n                \"code\": \"Mexico/General\",\n                \"name\": \"Mexico/General\",\n                \"order\": 519,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6e6a0d9e-8613-4e59-872a-f1c48e863046\",\n                \"code\": \"Mexico/BajaSur\",\n                \"name\": \"Mexico/BajaSur\",\n                \"order\": 518,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ae2be550-8d5a-42b9-b021-0faaedc68b98\",\n                \"code\": \"Mexico/BajaNorte\",\n                \"name\": \"Mexico/BajaNorte\",\n                \"order\": 517,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"76f1875f-8b5e-40c9-91fd-e23fc92fb1a3\",\n                \"code\": \"MST7MDT\",\n                \"name\": \"MST7MDT\",\n                \"order\": 516,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"19983200-237e-4fc4-a78b-68f2733b5d90\",\n                \"code\": \"MST\",\n                \"name\": \"MST\",\n                \"order\": 515,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8bade6c0-00ca-4eb8-b402-2aff1f2be74e\",\n                \"code\": \"MET\",\n                \"name\": \"MET\",\n                \"order\": 514,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"69ca31ea-548b-43b8-a5f0-94b665eadb32\",\n                \"code\": \"Libya\",\n                \"name\": \"Libya\",\n                \"order\": 513,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ed963bd7-2a82-4a94-99b8-521769cdc4fc\",\n                \"code\": \"Kwajalein\",\n                \"name\": \"Kwajalein\",\n                \"order\": 512,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"16da0756-fb53-47e6-ae40-d8544477d67e\",\n                \"code\": \"Japan\",\n                \"name\": \"Japan\",\n                \"order\": 511,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"dc3dd4a1-941e-444d-b210-fa7221136d2c\",\n                \"code\": \"Jamaica\",\n                \"name\": \"Jamaica\",\n                \"order\": 510,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4a214c82-2822-417d-af56-a9542dd6c15f\",\n                \"code\": \"Israel\",\n                \"name\": \"Israel\",\n                \"order\": 509,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c30c6c3c-5dea-4c01-a842-1e8d6b6a3903\",\n                \"code\": \"Iran\",\n                \"name\": \"Iran\",\n                \"order\": 508,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e17c4853-73ce-4870-8243-ccbd5750f0a5\",\n                \"code\": \"Indian/Reunion\",\n                \"name\": \"Indian/Reunion\",\n                \"order\": 507,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c8e0cce7-a131-4d46-b329-22a183eb8d55\",\n                \"code\": \"Indian/Mayotte\",\n                \"name\": \"Indian/Mayotte\",\n                \"order\": 506,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"52058680-8ecb-4870-ae82-34214014b89e\",\n                \"code\": \"Indian/Mauritius\",\n                \"name\": \"Indian/Mauritius\",\n                \"order\": 505,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"645b3764-0363-45e2-8b00-3b71bed0d095\",\n                \"code\": \"Indian/Maldives\",\n                \"name\": \"Indian/Maldives\",\n                \"order\": 504,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0d5d7d90-a1e9-4956-bd27-ba4fd9e6281f\",\n                \"code\": \"Indian/Mahe\",\n                \"name\": \"Indian/Mahe\",\n                \"order\": 503,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7b055c1b-99c5-4f1b-97cc-c84c888cf079\",\n                \"code\": \"Indian/Kerguelen\",\n                \"name\": \"Indian/Kerguelen\",\n                \"order\": 502,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"caeb22b8-d2a7-433e-97e8-aa1c7a632ed4\",\n                \"code\": \"Indian/Comoro\",\n                \"name\": \"Indian/Comoro\",\n                \"order\": 501,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"336781ca-6507-488d-80c7-a9ff2914602e\",\n                \"code\": \"Indian/Cocos\",\n                \"name\": \"Indian/Cocos\",\n                \"order\": 500,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5d120575-5d0e-4cc7-9b75-e636979def47\",\n                \"code\": \"Indian/Christmas\",\n                \"name\": \"Indian/Christmas\",\n                \"order\": 499,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"087aabfd-4b94-43f7-9f43-b24076738f41\",\n                \"code\": \"Indian/Chagos\",\n                \"name\": \"Indian/Chagos\",\n                \"order\": 498,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"95b55ddf-aa92-46a2-be50-b700e353921e\",\n                \"code\": \"Indian/Antananarivo\",\n                \"name\": \"Indian/Antananarivo\",\n                \"order\": 497,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2b7fb3f0-7acb-48be-b653-e0346532a77e\",\n                \"code\": \"Iceland\",\n                \"name\": \"Iceland\",\n                \"order\": 496,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"34384fe1-8929-49ae-bd48-e970c4295970\",\n                \"code\": \"Hongkong\",\n                \"name\": \"Hongkong\",\n                \"order\": 495,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"08f9cb1c-409d-4d65-94d1-de71bb1a292b\",\n                \"code\": \"HST\",\n                \"name\": \"HST\",\n                \"order\": 494,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"94a21601-9ec2-4c74-b88b-05859fd3b88e\",\n                \"code\": \"Greenwich\",\n                \"name\": \"Greenwich\",\n                \"order\": 493,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"16634b31-ced4-4306-aa88-b41cd72f6299\",\n                \"code\": \"GMT0\",\n                \"name\": \"GMT0\",\n                \"order\": 492,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3dd280a1-0aa3-4f69-8d39-4c30bde0d423\",\n                \"code\": \"GMT-0\",\n                \"name\": \"GMT-0\",\n                \"order\": 491,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"edd3f6cf-4c28-4731-be20-9c09e4f2d568\",\n                \"code\": \"GMT+0\",\n                \"name\": \"GMT+0\",\n                \"order\": 490,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6ff3506a-f4bb-47c3-8444-01088b73260d\",\n                \"code\": \"GMT\",\n                \"name\": \"GMT\",\n                \"order\": 489,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"44919794-65b9-42f7-a680-d248cf8fd0f7\",\n                \"code\": \"GB-Eire\",\n                \"name\": \"GB-Eire\",\n                \"order\": 488,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7d072758-4b49-473f-a0d1-ca7e3daaff9e\",\n                \"code\": \"GB\",\n                \"name\": \"GB\",\n                \"order\": 487,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"59f622cf-ae2a-4f2c-837e-1359849c69cf\",\n                \"code\": \"Europe/Zurich\",\n                \"name\": \"Europe/Zurich\",\n                \"order\": 486,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a0a373e7-3864-46ca-99c3-2d52f7c9fda7\",\n                \"code\": \"Europe/Zaporozhye\",\n                \"name\": \"Europe/Zaporozhye\",\n                \"order\": 485,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"aa8a29c0-e5de-4fdf-8daa-9d00d47ce97f\",\n                \"code\": \"Europe/Zagreb\",\n                \"name\": \"Europe/Zagreb\",\n                \"order\": 484,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1e28a52b-c78c-4272-88b7-be22ca2ca22d\",\n                \"code\": \"Europe/Warsaw\",\n                \"name\": \"Europe/Warsaw\",\n                \"order\": 483,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"017ff450-7ff6-4813-94d1-35113cb2d741\",\n                \"code\": \"Europe/Volgograd\",\n                \"name\": \"Europe/Volgograd\",\n                \"order\": 482,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"00f1ba0b-90b8-40c0-a21b-60ecdcc6daa9\",\n                \"code\": \"Europe/Vilnius\",\n                \"name\": \"Europe/Vilnius\",\n                \"order\": 481,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6bac1f3c-f0d5-4395-85c4-5a053f59fe8f\",\n                \"code\": \"Europe/Vienna\",\n                \"name\": \"Europe/Vienna\",\n                \"order\": 480,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"21104749-6a33-4509-9dd8-c93e118050e6\",\n                \"code\": \"Europe/Vatican\",\n                \"name\": \"Europe/Vatican\",\n                \"order\": 479,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"aefdd30d-063f-4b9f-812a-d5884958bfae\",\n                \"code\": \"Europe/Vaduz\",\n                \"name\": \"Europe/Vaduz\",\n                \"order\": 478,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"24353545-005c-4dd8-adab-142d0367526f\",\n                \"code\": \"Europe/Uzhgorod\",\n                \"name\": \"Europe/Uzhgorod\",\n                \"order\": 477,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"bf7ceb86-c657-4891-9a64-1aaf1e2c2445\",\n                \"code\": \"Europe/Ulyanovsk\",\n                \"name\": \"Europe/Ulyanovsk\",\n                \"order\": 476,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4853ca4c-8ce0-4d3d-a866-9ef5c2ab4a00\",\n                \"code\": \"Europe/Tiraspol\",\n                \"name\": \"Europe/Tiraspol\",\n                \"order\": 475,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"13c6d2e1-8ce9-4951-9cdc-10cb9d3460b2\",\n                \"code\": \"Europe/Tirane\",\n                \"name\": \"Europe/Tirane\",\n                \"order\": 474,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"29ee4358-e345-4702-93f1-71cfa410e927\",\n                \"code\": \"Europe/Tallinn\",\n                \"name\": \"Europe/Tallinn\",\n                \"order\": 473,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0ebdef94-9eeb-48f3-82d8-431cd0e3fba3\",\n                \"code\": \"Europe/Stockholm\",\n                \"name\": \"Europe/Stockholm\",\n                \"order\": 472,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"78e62539-f754-441d-83f3-520222f17ff2\",\n                \"code\": \"Europe/Sofia\",\n                \"name\": \"Europe/Sofia\",\n                \"order\": 471,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5cb732e7-e184-4fe4-badf-935f610fc6e6\",\n                \"code\": \"Europe/Skopje\",\n                \"name\": \"Europe/Skopje\",\n                \"order\": 470,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"738f20b4-2c29-4d84-9c05-fc47a6d8b7e5\",\n                \"code\": \"Europe/Simferopol\",\n                \"name\": \"Europe/Simferopol\",\n                \"order\": 469,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d5a455fa-c5ef-405f-9b3c-8ca86756d2cb\",\n                \"code\": \"Europe/Saratov\",\n                \"name\": \"Europe/Saratov\",\n                \"order\": 468,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"62b8094f-9889-4e5a-ae3a-b3419327fbd5\",\n                \"code\": \"Europe/Sarajevo\",\n                \"name\": \"Europe/Sarajevo\",\n                \"order\": 467,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"28483f84-e384-4eae-bccb-86f55274ceff\",\n                \"code\": \"Europe/San_Marino\",\n                \"name\": \"Europe/San_Marino\",\n                \"order\": 466,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ceb0b50a-e4c5-4738-b95a-2164b98c3729\",\n                \"code\": \"Europe/Samara\",\n                \"name\": \"Europe/Samara\",\n                \"order\": 465,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"933ab134-fa63-4cf8-ac3b-0437e3c1cce6\",\n                \"code\": \"Europe/Rome\",\n                \"name\": \"Europe/Rome\",\n                \"order\": 464,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b6fb82c8-2b39-4942-a41c-5fe205c96cf0\",\n                \"code\": \"Europe/Riga\",\n                \"name\": \"Europe/Riga\",\n                \"order\": 463,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a29da5f1-a8bb-4fa7-baec-144932c0bc92\",\n                \"code\": \"Europe/Prague\",\n                \"name\": \"Europe/Prague\",\n                \"order\": 462,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7c50c674-8d9f-4ac8-852b-b7c03e9b54c4\",\n                \"code\": \"Europe/Podgorica\",\n                \"name\": \"Europe/Podgorica\",\n                \"order\": 461,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fb397d64-bc8f-446d-8059-cd67e2ed74a9\",\n                \"code\": \"Europe/Paris\",\n                \"name\": \"Europe/Paris\",\n                \"order\": 460,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d6dd0acf-1577-4dfc-837f-f0935eec55f1\",\n                \"code\": \"Europe/Oslo\",\n                \"name\": \"Europe/Oslo\",\n                \"order\": 459,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7ee40043-f2af-4f3f-808c-1350d3108fa3\",\n                \"code\": \"Europe/Nicosia\",\n                \"name\": \"Europe/Nicosia\",\n                \"order\": 458,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"70746032-7daf-4871-bfe0-a48adf3e2784\",\n                \"code\": \"Europe/Moscow\",\n                \"name\": \"Europe/Moscow\",\n                \"order\": 457,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2cd7a570-982d-409e-8ff0-60e2b01c51ea\",\n                \"code\": \"Europe/Monaco\",\n                \"name\": \"Europe/Monaco\",\n                \"order\": 456,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6a492b84-e574-41bd-a1af-7fe5873d66fc\",\n                \"code\": \"Europe/Minsk\",\n                \"name\": \"Europe/Minsk\",\n                \"order\": 455,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cef27baa-11ca-4c7e-961d-b04ac4f8b2d9\",\n                \"code\": \"Europe/Mariehamn\",\n                \"name\": \"Europe/Mariehamn\",\n                \"order\": 454,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9063cb32-06a8-4363-a244-f9f49e482b61\",\n                \"code\": \"Europe/Malta\",\n                \"name\": \"Europe/Malta\",\n                \"order\": 453,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"df89612d-7e96-4d28-ae04-fb269714f174\",\n                \"code\": \"Europe/Madrid\",\n                \"name\": \"Europe/Madrid\",\n                \"order\": 452,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d20358ac-eaf2-4081-86e1-704306cc0d34\",\n                \"code\": \"Europe/Luxembourg\",\n                \"name\": \"Europe/Luxembourg\",\n                \"order\": 451,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d40a59b9-3768-422f-ba75-8d1a2c3f836b\",\n                \"code\": \"Europe/London\",\n                \"name\": \"Europe/London\",\n                \"order\": 450,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7e7c902a-1b51-4c4a-9119-9e5a3721f427\",\n                \"code\": \"Europe/Ljubljana\",\n                \"name\": \"Europe/Ljubljana\",\n                \"order\": 449,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5bc02aa1-db24-4594-addb-f8cfb1e79cb4\",\n                \"code\": \"Europe/Lisbon\",\n                \"name\": \"Europe/Lisbon\",\n                \"order\": 448,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b829073c-ef3a-49df-84f4-b1e1eaee6153\",\n                \"code\": \"Europe/Kirov\",\n                \"name\": \"Europe/Kirov\",\n                \"order\": 447,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"804f6f01-e3e8-4337-badc-ac2683827344\",\n                \"code\": \"Europe/Kiev\",\n                \"name\": \"Europe/Kiev\",\n                \"order\": 446,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"291bfa29-e59a-42f7-92d0-36b9c99355d4\",\n                \"code\": \"Europe/Kaliningrad\",\n                \"name\": \"Europe/Kaliningrad\",\n                \"order\": 445,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c3ba02a3-c874-468f-a701-72a628bf0b66\",\n                \"code\": \"Europe/Jersey\",\n                \"name\": \"Europe/Jersey\",\n                \"order\": 444,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7802d26d-4976-4015-b4a6-5176ec00c829\",\n                \"code\": \"Europe/Istanbul\",\n                \"name\": \"Europe/Istanbul\",\n                \"order\": 443,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"90de02ee-134e-4ad7-a878-757db54887b7\",\n                \"code\": \"Europe/Isle_of_Man\",\n                \"name\": \"Europe/Isle_of_Man\",\n                \"order\": 442,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ff62b8a0-a7df-44f1-b66c-961559c35c5c\",\n                \"code\": \"Europe/Helsinki\",\n                \"name\": \"Europe/Helsinki\",\n                \"order\": 441,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1eaf555d-21a4-4401-8732-c37e82efb825\",\n                \"code\": \"Europe/Guernsey\",\n                \"name\": \"Europe/Guernsey\",\n                \"order\": 440,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1df5274d-d673-4ffc-a9aa-8c6e4750b09e\",\n                \"code\": \"Europe/Gibraltar\",\n                \"name\": \"Europe/Gibraltar\",\n                \"order\": 439,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3fc89c66-0358-4992-9d39-74021af57007\",\n                \"code\": \"Europe/Dublin\",\n                \"name\": \"Europe/Dublin\",\n                \"order\": 438,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8cfef77a-909c-4bf0-84ee-ff41e6b622f6\",\n                \"code\": \"Europe/Copenhagen\",\n                \"name\": \"Europe/Copenhagen\",\n                \"order\": 437,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f2dbd3d0-14c9-4163-8039-83720d95044a\",\n                \"code\": \"Europe/Chisinau\",\n                \"name\": \"Europe/Chisinau\",\n                \"order\": 436,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ca2062c4-903c-46f9-807b-789a3531d078\",\n                \"code\": \"Europe/Busingen\",\n                \"name\": \"Europe/Busingen\",\n                \"order\": 435,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d03c88b3-34dd-4952-8c60-978664d6ab04\",\n                \"code\": \"Europe/Budapest\",\n                \"name\": \"Europe/Budapest\",\n                \"order\": 434,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fdabab21-5a77-44c3-bb6a-b928b914c98d\",\n                \"code\": \"Europe/Bucharest\",\n                \"name\": \"Europe/Bucharest\",\n                \"order\": 433,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fdfb409d-c69a-42f0-a1fd-fa124eb7568f\",\n                \"code\": \"Europe/Brussels\",\n                \"name\": \"Europe/Brussels\",\n                \"order\": 432,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"86d2e7a6-d25f-4919-bb70-ed95807d1428\",\n                \"code\": \"Europe/Bratislava\",\n                \"name\": \"Europe/Bratislava\",\n                \"order\": 431,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fe3f8539-eaab-4964-bd94-7818ec2167ae\",\n                \"code\": \"Europe/Berlin\",\n                \"name\": \"Europe/Berlin\",\n                \"order\": 430,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7f79a50f-2c72-47f2-89a3-309a4ec29af6\",\n                \"code\": \"Europe/Belgrade\",\n                \"name\": \"Europe/Belgrade\",\n                \"order\": 429,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3f43c8a2-f8de-4698-bf1e-3003d107aa53\",\n                \"code\": \"Europe/Belfast\",\n                \"name\": \"Europe/Belfast\",\n                \"order\": 428,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ce76c3e1-aef5-416a-86a0-4db889ac2403\",\n                \"code\": \"Europe/Athens\",\n                \"name\": \"Europe/Athens\",\n                \"order\": 427,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cb8e1d6a-870f-45d8-8d3e-4c341697f962\",\n                \"code\": \"Europe/Astrakhan\",\n                \"name\": \"Europe/Astrakhan\",\n                \"order\": 426,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9acf212a-1d90-4edb-873d-981b5d6bed57\",\n                \"code\": \"Europe/Andorra\",\n                \"name\": \"Europe/Andorra\",\n                \"order\": 425,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"777ab61c-b7bb-4911-805d-9ce0f058d565\",\n                \"code\": \"Europe/Amsterdam\",\n                \"name\": \"Europe/Amsterdam\",\n                \"order\": 424,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7a4835da-2b09-45b3-9ebb-239be935d2ee\",\n                \"code\": \"Etc/Zulu\",\n                \"name\": \"Etc/Zulu\",\n                \"order\": 423,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"22e08b39-d331-4968-b9ca-6107706aedce\",\n                \"code\": \"Etc/Universal\",\n                \"name\": \"Etc/Universal\",\n                \"order\": 422,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9a68d6e5-4334-40a9-bfeb-8b030beea4c8\",\n                \"code\": \"Etc/UTC\",\n                \"name\": \"Etc/UTC\",\n                \"order\": 421,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4ffca2de-ad23-4174-bba6-c73ba6afee55\",\n                \"code\": \"Etc/UCT\",\n                \"name\": \"Etc/UCT\",\n                \"order\": 420,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"df6d081b-f36b-42e7-b0b9-f256482db142\",\n                \"code\": \"Etc/Greenwich\",\n                \"name\": \"Etc/Greenwich\",\n                \"order\": 419,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6232c629-946a-4ecd-bb8a-9428b3c1ea72\",\n                \"code\": \"Etc/GMT0\",\n                \"name\": \"Etc/GMT0\",\n                \"order\": 418,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4ab7a8c3-dc6c-4439-8256-29971179f603\",\n                \"code\": \"Etc/GMT-9\",\n                \"name\": \"Etc/GMT-9\",\n                \"order\": 417,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"93cbbe24-e006-4885-8f49-bfe074abd57a\",\n                \"code\": \"Etc/GMT-8\",\n                \"name\": \"Etc/GMT-8\",\n                \"order\": 416,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"17fb980b-2c32-402b-907d-fa9a6d3cdf8f\",\n                \"code\": \"Etc/GMT-7\",\n                \"name\": \"Etc/GMT-7\",\n                \"order\": 415,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"37f3020f-743d-4434-861e-8a41d4b4eaf1\",\n                \"code\": \"Etc/GMT-6\",\n                \"name\": \"Etc/GMT-6\",\n                \"order\": 414,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"adf18db7-60de-4af0-a3e9-4a959484a519\",\n                \"code\": \"Etc/GMT-5\",\n                \"name\": \"Etc/GMT-5\",\n                \"order\": 413,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"bf5e843a-94a8-4c9c-aaa0-2cbbeebdb50f\",\n                \"code\": \"Etc/GMT-4\",\n                \"name\": \"Etc/GMT-4\",\n                \"order\": 412,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1d2800e9-63b1-4383-ac22-43e5d3409824\",\n                \"code\": \"Etc/GMT-3\",\n                \"name\": \"Etc/GMT-3\",\n                \"order\": 411,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"91162f65-53a1-4253-b9b8-ebaa94216121\",\n                \"code\": \"Etc/GMT-2\",\n                \"name\": \"Etc/GMT-2\",\n                \"order\": 410,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9b786788-1cdb-4e00-b891-e109f9c120e0\",\n                \"code\": \"Etc/GMT-14\",\n                \"name\": \"Etc/GMT-14\",\n                \"order\": 409,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"41bcae51-3fcc-4497-b231-69f3ec7caf67\",\n                \"code\": \"Etc/GMT-13\",\n                \"name\": \"Etc/GMT-13\",\n                \"order\": 408,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"60f3bd4f-610d-4ce8-b83b-b622bebcbb5c\",\n                \"code\": \"Etc/GMT-12\",\n                \"name\": \"Etc/GMT-12\",\n                \"order\": 407,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0ef4f849-4067-419c-bf60-85e988981c76\",\n                \"code\": \"Etc/GMT-11\",\n                \"name\": \"Etc/GMT-11\",\n                \"order\": 406,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fd271ade-65ba-40f5-855a-0bba6ccd5e61\",\n                \"code\": \"Etc/GMT-10\",\n                \"name\": \"Etc/GMT-10\",\n                \"order\": 405,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"29976103-47fe-4a2b-8f9c-bd1d3a7a7697\",\n                \"code\": \"Etc/GMT-1\",\n                \"name\": \"Etc/GMT-1\",\n                \"order\": 404,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d7660ffb-2839-479c-810e-f3e1774e07df\",\n                \"code\": \"Etc/GMT-0\",\n                \"name\": \"Etc/GMT-0\",\n                \"order\": 403,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"50cb1ce3-5270-4969-a6e1-39ab448ba5c2\",\n                \"code\": \"Etc/GMT+9\",\n                \"name\": \"Etc/GMT+9\",\n                \"order\": 402,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"de3ae0b5-73f1-4820-96a8-eaeb6a17a880\",\n                \"code\": \"Etc/GMT+8\",\n                \"name\": \"Etc/GMT+8\",\n                \"order\": 401,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"16d8b01a-d969-4f2c-b48b-cff605742869\",\n                \"code\": \"Etc/GMT+7\",\n                \"name\": \"Etc/GMT+7\",\n                \"order\": 400,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f655b68e-29a2-4379-9723-58556b5db6ed\",\n                \"code\": \"Etc/GMT+6\",\n                \"name\": \"Etc/GMT+6\",\n                \"order\": 399,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"21c89d29-4fcf-4e78-a0f3-2feeb67f2914\",\n                \"code\": \"Etc/GMT+5\",\n                \"name\": \"Etc/GMT+5\",\n                \"order\": 398,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f7bf6800-75c1-4f57-843c-9c21f9327660\",\n                \"code\": \"Etc/GMT+4\",\n                \"name\": \"Etc/GMT+4\",\n                \"order\": 397,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fd51aaaf-cc08-4de4-96a6-dad900c8b0a3\",\n                \"code\": \"Etc/GMT+3\",\n                \"name\": \"Etc/GMT+3\",\n                \"order\": 396,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4aa649dc-9a48-4420-88e1-e75659f2d71b\",\n                \"code\": \"Etc/GMT+2\",\n                \"name\": \"Etc/GMT+2\",\n                \"order\": 395,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c2402da4-ed47-4f39-a4b4-8344b46ed528\",\n                \"code\": \"Etc/GMT+12\",\n                \"name\": \"Etc/GMT+12\",\n                \"order\": 394,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5cb76d5c-3c1d-46a2-8878-e78891309daf\",\n                \"code\": \"Etc/GMT+11\",\n                \"name\": \"Etc/GMT+11\",\n                \"order\": 393,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"42050b25-c223-444d-bb00-850f894c9cd5\",\n                \"code\": \"Etc/GMT+10\",\n                \"name\": \"Etc/GMT+10\",\n                \"order\": 392,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"635b4c13-03f5-4673-b61a-567c3a789f01\",\n                \"code\": \"Etc/GMT+1\",\n                \"name\": \"Etc/GMT+1\",\n                \"order\": 391,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"34190270-3533-4122-91d7-27edf28f914d\",\n                \"code\": \"Etc/GMT+0\",\n                \"name\": \"Etc/GMT+0\",\n                \"order\": 390,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ab0b5c8b-1933-4b14-8779-89b9e33a02b6\",\n                \"code\": \"Etc/GMT\",\n                \"name\": \"Etc/GMT\",\n                \"order\": 389,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a2ae2b5a-833a-42e1-b346-9237a3205965\",\n                \"code\": \"Eire\",\n                \"name\": \"Eire\",\n                \"order\": 388,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e4f14043-6d77-4fb7-ad0f-712279c94254\",\n                \"code\": \"Egypt\",\n                \"name\": \"Egypt\",\n                \"order\": 387,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"19367672-d776-45bc-adf0-85988586a026\",\n                \"code\": \"EST5EDT\",\n                \"name\": \"EST5EDT\",\n                \"order\": 386,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ce14fca4-7c6a-442d-974e-11d3c82cd27a\",\n                \"code\": \"EST\",\n                \"name\": \"EST\",\n                \"order\": 385,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b4931631-55f9-442a-9998-b9a392a69b59\",\n                \"code\": \"EET\",\n                \"name\": \"EET\",\n                \"order\": 384,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"03082289-41c1-4bf9-a374-c906f7096b14\",\n                \"code\": \"Cuba\",\n                \"name\": \"Cuba\",\n                \"order\": 383,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"08ef21c5-88db-4f87-855f-47e54be34d4b\",\n                \"code\": \"Chile/EasterIsland\",\n                \"name\": \"Chile/EasterIsland\",\n                \"order\": 382,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a12ba660-8cb6-4a91-a3c9-96303cdee270\",\n                \"code\": \"Chile/Continental\",\n                \"name\": \"Chile/Continental\",\n                \"order\": 381,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2238c01e-e282-4bd7-907e-6b59d0f59a4c\",\n                \"code\": \"Canada/Yukon\",\n                \"name\": \"Canada/Yukon\",\n                \"order\": 380,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8e1ec621-01a2-4c1e-9dbc-8dc3b23a6212\",\n                \"code\": \"Canada/Saskatchewan\",\n                \"name\": \"Canada/Saskatchewan\",\n                \"order\": 379,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7ffb7f76-c7fa-483d-add7-cd19b3db9702\",\n                \"code\": \"Canada/Pacific\",\n                \"name\": \"Canada/Pacific\",\n                \"order\": 378,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d4961fdd-978c-4e7d-9d75-c0c802d78b88\",\n                \"code\": \"Canada/Newfoundland\",\n                \"name\": \"Canada/Newfoundland\",\n                \"order\": 377,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0de10cf9-3746-47ed-a42c-39a6ca7955e3\",\n                \"code\": \"Canada/Mountain\",\n                \"name\": \"Canada/Mountain\",\n                \"order\": 376,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c452154b-4138-4495-b8bb-c02715b9a0fe\",\n                \"code\": \"Canada/Eastern\",\n                \"name\": \"Canada/Eastern\",\n                \"order\": 375,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8ed18368-cd39-4120-a3bb-7ecaa26a912c\",\n                \"code\": \"Canada/Central\",\n                \"name\": \"Canada/Central\",\n                \"order\": 374,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e6f18463-629b-48e8-8256-f8ec123627fe\",\n                \"code\": \"Canada/Atlantic\",\n                \"name\": \"Canada/Atlantic\",\n                \"order\": 373,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"75578fb8-6aaf-429a-8486-2a75a119c856\",\n                \"code\": \"CST6CDT\",\n                \"name\": \"CST6CDT\",\n                \"order\": 372,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3fdeb67a-058d-4122-a0c5-dedbf1108709\",\n                \"code\": \"CET\",\n                \"name\": \"CET\",\n                \"order\": 371,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"03757324-8c14-4b54-83cd-a679b7014cc6\",\n                \"code\": \"Brazil/West\",\n                \"name\": \"Brazil/West\",\n                \"order\": 370,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"05de4ed6-3da0-4d10-a59e-f6d7821005c7\",\n                \"code\": \"Brazil/East\",\n                \"name\": \"Brazil/East\",\n                \"order\": 369,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6ef6931e-c358-475b-b3bc-7783c3a61d27\",\n                \"code\": \"Brazil/DeNoronha\",\n                \"name\": \"Brazil/DeNoronha\",\n                \"order\": 368,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b0d03ff1-5196-43df-84b1-b419de89ccdc\",\n                \"code\": \"Brazil/Acre\",\n                \"name\": \"Brazil/Acre\",\n                \"order\": 367,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a27f8895-aff0-4a5c-98ef-84465b1e92b5\",\n                \"code\": \"Australia/Yancowinna\",\n                \"name\": \"Australia/Yancowinna\",\n                \"order\": 366,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"717edcc5-0f6a-4003-b498-7ab2f728b362\",\n                \"code\": \"Australia/West\",\n                \"name\": \"Australia/West\",\n                \"order\": 365,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7ebbfbdf-074c-4998-9774-cde56c3ed42c\",\n                \"code\": \"Australia/Victoria\",\n                \"name\": \"Australia/Victoria\",\n                \"order\": 364,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6e089634-27dc-4016-86f6-c26a06c6f2af\",\n                \"code\": \"Australia/Tasmania\",\n                \"name\": \"Australia/Tasmania\",\n                \"order\": 363,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c8d1444e-9680-4fbe-abfd-c628b733fafc\",\n                \"code\": \"Australia/Sydney\",\n                \"name\": \"Australia/Sydney\",\n                \"order\": 362,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"99278290-dd32-4fc4-b420-9fdf9f3d7309\",\n                \"code\": \"Australia/South\",\n                \"name\": \"Australia/South\",\n                \"order\": 361,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"503f0808-8c41-4ffe-87d8-b1d9911310eb\",\n                \"code\": \"Australia/Queensland\",\n                \"name\": \"Australia/Queensland\",\n                \"order\": 360,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0b508a26-911a-456a-a7c7-ea518150c9aa\",\n                \"code\": \"Australia/Perth\",\n                \"name\": \"Australia/Perth\",\n                \"order\": 359,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"de81904e-533e-4006-a91a-0440d5a2101f\",\n                \"code\": \"Australia/North\",\n                \"name\": \"Australia/North\",\n                \"order\": 358,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4218970e-675b-424e-ae5c-6dc0471cf1f6\",\n                \"code\": \"Australia/NSW\",\n                \"name\": \"Australia/NSW\",\n                \"order\": 357,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1ac86b91-e81a-463d-96bd-da6b4a66d7b4\",\n                \"code\": \"Australia/Melbourne\",\n                \"name\": \"Australia/Melbourne\",\n                \"order\": 356,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4fc297d4-08e3-4a8e-8e12-fcb54eec07bb\",\n                \"code\": \"Australia/Lord_Howe\",\n                \"name\": \"Australia/Lord_Howe\",\n                \"order\": 355,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"42162b6f-1c13-4561-bf73-ef5030fed089\",\n                \"code\": \"Australia/Lindeman\",\n                \"name\": \"Australia/Lindeman\",\n                \"order\": 354,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"de39404c-a6fe-4f04-a665-a85a103ecb19\",\n                \"code\": \"Australia/LHI\",\n                \"name\": \"Australia/LHI\",\n                \"order\": 353,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d6848800-4db0-494b-a3f4-03e51ecf4d40\",\n                \"code\": \"Australia/Hobart\",\n                \"name\": \"Australia/Hobart\",\n                \"order\": 352,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4c52edd2-6af3-4911-9b9b-400fc4eafa63\",\n                \"code\": \"Australia/Eucla\",\n                \"name\": \"Australia/Eucla\",\n                \"order\": 351,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3ac242f5-8e5b-4317-b446-e2d0ede84940\",\n                \"code\": \"Australia/Darwin\",\n                \"name\": \"Australia/Darwin\",\n                \"order\": 350,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"97710f07-304e-420b-afa7-c9766101a800\",\n                \"code\": \"Australia/Currie\",\n                \"name\": \"Australia/Currie\",\n                \"order\": 349,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"be164cea-58d1-4563-bcdc-d8c4bbb37f20\",\n                \"code\": \"Australia/Canberra\",\n                \"name\": \"Australia/Canberra\",\n                \"order\": 348,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8ef2c3ea-a384-484e-abd2-2723403d35df\",\n                \"code\": \"Australia/Broken_Hill\",\n                \"name\": \"Australia/Broken_Hill\",\n                \"order\": 347,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a2ecb27f-3f15-4564-8c0c-e39f836e961e\",\n                \"code\": \"Australia/Brisbane\",\n                \"name\": \"Australia/Brisbane\",\n                \"order\": 346,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"dd64677f-c93d-4e88-8351-ace9c8af1a16\",\n                \"code\": \"Australia/Adelaide\",\n                \"name\": \"Australia/Adelaide\",\n                \"order\": 345,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ae0ca0d6-da90-407a-ad2e-0758c34e18f3\",\n                \"code\": \"Australia/ACT\",\n                \"name\": \"Australia/ACT\",\n                \"order\": 344,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"90b0bf95-72de-477b-b56b-d232ff9917a2\",\n                \"code\": \"Atlantic/Stanley\",\n                \"name\": \"Atlantic/Stanley\",\n                \"order\": 343,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5c346097-c554-4b73-b543-ea368b60b58b\",\n                \"code\": \"Atlantic/St_Helena\",\n                \"name\": \"Atlantic/St_Helena\",\n                \"order\": 342,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"08f5fe5c-118a-45ca-9b2e-daadadda732e\",\n                \"code\": \"Atlantic/South_Georgia\",\n                \"name\": \"Atlantic/South_Georgia\",\n                \"order\": 341,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d5ed05c9-5326-4ced-8ae1-335e354b0dfc\",\n                \"code\": \"Atlantic/Reykjavik\",\n                \"name\": \"Atlantic/Reykjavik\",\n                \"order\": 340,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a1f09954-8eb9-4f25-80a4-790f35ed17ea\",\n                \"code\": \"Atlantic/Madeira\",\n                \"name\": \"Atlantic/Madeira\",\n                \"order\": 339,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6db2a9ef-688b-47d4-b6c5-54003bdb86a8\",\n                \"code\": \"Atlantic/Jan_Mayen\",\n                \"name\": \"Atlantic/Jan_Mayen\",\n                \"order\": 338,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"936fdd08-d1c6-4ac4-a409-58889eb4bd5a\",\n                \"code\": \"Atlantic/Faroe\",\n                \"name\": \"Atlantic/Faroe\",\n                \"order\": 337,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9273ba8e-f797-458f-961b-3970e1cdd0b2\",\n                \"code\": \"Atlantic/Faeroe\",\n                \"name\": \"Atlantic/Faeroe\",\n                \"order\": 336,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"53ec7221-a2ce-41d8-9f67-91d4c873b23d\",\n                \"code\": \"Atlantic/Cape_Verde\",\n                \"name\": \"Atlantic/Cape_Verde\",\n                \"order\": 335,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4a0902af-4776-4392-8027-e38bd8431bd8\",\n                \"code\": \"Atlantic/Canary\",\n                \"name\": \"Atlantic/Canary\",\n                \"order\": 334,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8521508b-2895-4faa-84b7-b7e56d3ed38a\",\n                \"code\": \"Atlantic/Bermuda\",\n                \"name\": \"Atlantic/Bermuda\",\n                \"order\": 333,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cf6c895e-ba5c-4ffc-bbb6-f31c49a07512\",\n                \"code\": \"Atlantic/Azores\",\n                \"name\": \"Atlantic/Azores\",\n                \"order\": 332,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4d0dd883-4f40-446e-88a2-5460c3470ab2\",\n                \"code\": \"Asia/Yerevan\",\n                \"name\": \"Asia/Yerevan\",\n                \"order\": 331,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9213c2ba-c6e8-46a5-bed0-6257ca1bebeb\",\n                \"code\": \"Asia/Yekaterinburg\",\n                \"name\": \"Asia/Yekaterinburg\",\n                \"order\": 330,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a37ce958-fc43-4b46-bf9a-3f66c0358670\",\n                \"code\": \"Asia/Yangon\",\n                \"name\": \"Asia/Yangon\",\n                \"order\": 329,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"44a06c75-e225-49e9-ba5d-e0fcb3d29745\",\n                \"code\": \"Asia/Yakutsk\",\n                \"name\": \"Asia/Yakutsk\",\n                \"order\": 328,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ed3ade4c-4383-4f54-b2d0-8d22239b18c9\",\n                \"code\": \"Asia/Vladivostok\",\n                \"name\": \"Asia/Vladivostok\",\n                \"order\": 327,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"37b8ba41-22ec-4faa-a57c-19bb251a5a0e\",\n                \"code\": \"Asia/Vientiane\",\n                \"name\": \"Asia/Vientiane\",\n                \"order\": 326,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e2ea6a7e-c2bb-4a38-93f9-28cc3d4faeec\",\n                \"code\": \"Asia/Ust-Nera\",\n                \"name\": \"Asia/Ust-Nera\",\n                \"order\": 325,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ef9f1d09-9af4-41fe-a4a0-f46be90daf20\",\n                \"code\": \"Asia/Urumqi\",\n                \"name\": \"Asia/Urumqi\",\n                \"order\": 324,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1249481c-7c70-4f3d-830f-dc987d104c1e\",\n                \"code\": \"Asia/Ulan_Bator\",\n                \"name\": \"Asia/Ulan_Bator\",\n                \"order\": 323,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c18265ce-d600-469a-8ecc-c9f1771f1754\",\n                \"code\": \"Asia/Ulaanbaatar\",\n                \"name\": \"Asia/Ulaanbaatar\",\n                \"order\": 322,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ae0bb59a-31ae-4eb4-b640-69b2b19f1aa5\",\n                \"code\": \"Asia/Ujung_Pandang\",\n                \"name\": \"Asia/Ujung_Pandang\",\n                \"order\": 321,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d3015f8a-da7b-4f97-a141-ce4d6a95a0d0\",\n                \"code\": \"Asia/Tomsk\",\n                \"name\": \"Asia/Tomsk\",\n                \"order\": 320,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"28cd0499-11d1-458b-b3ce-f22a0b8953cf\",\n                \"code\": \"Asia/Tokyo\",\n                \"name\": \"Asia/Tokyo\",\n                \"order\": 319,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"62168e7e-51ae-4884-ad4d-71bec3ad4541\",\n                \"code\": \"Asia/Thimphu\",\n                \"name\": \"Asia/Thimphu\",\n                \"order\": 318,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"04f69668-fcce-48a2-aafb-c4ea3bf63831\",\n                \"code\": \"Asia/Thimbu\",\n                \"name\": \"Asia/Thimbu\",\n                \"order\": 317,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e0a09d11-f80a-49b0-94c5-8e0e96dd1ca7\",\n                \"code\": \"Asia/Tel_Aviv\",\n                \"name\": \"Asia/Tel_Aviv\",\n                \"order\": 316,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"13fed6cc-46cf-42b2-ae05-8d8b294f4260\",\n                \"code\": \"Asia/Tehran\",\n                \"name\": \"Asia/Tehran\",\n                \"order\": 315,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"41ba1f65-2d7f-4ccf-bd19-b19e55332a40\",\n                \"code\": \"Asia/Tbilisi\",\n                \"name\": \"Asia/Tbilisi\",\n                \"order\": 314,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"90e0a65d-890a-4a8f-8c3c-bf442eaf64dd\",\n                \"code\": \"Asia/Tashkent\",\n                \"name\": \"Asia/Tashkent\",\n                \"order\": 313,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"768c454f-b6c9-4196-9aed-bc40890a1f2d\",\n                \"code\": \"Asia/Taipei\",\n                \"name\": \"Asia/Taipei\",\n                \"order\": 312,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"dcc6c282-3e46-48ff-8ed8-a1b5f70689db\",\n                \"code\": \"Asia/Srednekolymsk\",\n                \"name\": \"Asia/Srednekolymsk\",\n                \"order\": 311,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fa013d14-3f64-4719-b79c-0de8bdd4bb7f\",\n                \"code\": \"Asia/Singapore\",\n                \"name\": \"Asia/Singapore\",\n                \"order\": 310,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e2f0622c-a13c-455f-af8a-d223f0609933\",\n                \"code\": \"Asia/Shanghai\",\n                \"name\": \"Asia/Shanghai\",\n                \"order\": 309,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9b560298-8656-4ebb-8fb5-339dd30da29e\",\n                \"code\": \"Asia/Seoul\",\n                \"name\": \"Asia/Seoul\",\n                \"order\": 308,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c580fea3-c26b-41c5-9f24-810a16f6cb22\",\n                \"code\": \"Asia/Samarkand\",\n                \"name\": \"Asia/Samarkand\",\n                \"order\": 307,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b1637eef-48ce-45aa-8ed5-b041c0ddd2c6\",\n                \"code\": \"Asia/Sakhalin\",\n                \"name\": \"Asia/Sakhalin\",\n                \"order\": 306,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"673e2bdf-61a4-414d-b262-fabc8a0bc0b9\",\n                \"code\": \"Asia/Saigon\",\n                \"name\": \"Asia/Saigon\",\n                \"order\": 305,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6658a4fe-9445-4c29-a087-a29c87e82912\",\n                \"code\": \"Asia/Riyadh\",\n                \"name\": \"Asia/Riyadh\",\n                \"order\": 304,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ba2593f4-86fb-4a68-9b91-ed1fe24a6378\",\n                \"code\": \"Asia/Rangoon\",\n                \"name\": \"Asia/Rangoon\",\n                \"order\": 303,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6aeaca7d-5685-4904-ae92-e0b665faf020\",\n                \"code\": \"Asia/Qyzylorda\",\n                \"name\": \"Asia/Qyzylorda\",\n                \"order\": 302,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"79e21d12-dfce-48f9-af45-984ba2a63222\",\n                \"code\": \"Asia/Qatar\",\n                \"name\": \"Asia/Qatar\",\n                \"order\": 301,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"bc2c929a-b892-49f8-8294-b955c7448e62\",\n                \"code\": \"Asia/Pyongyang\",\n                \"name\": \"Asia/Pyongyang\",\n                \"order\": 300,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"13df41f8-a78c-4c0e-ac65-a992c6fe640f\",\n                \"code\": \"Asia/Pontianak\",\n                \"name\": \"Asia/Pontianak\",\n                \"order\": 299,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e409a78c-ee22-4528-a4e0-da17c5e6ce5b\",\n                \"code\": \"Asia/Phnom_Penh\",\n                \"name\": \"Asia/Phnom_Penh\",\n                \"order\": 298,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7a90bf09-f15f-4e9b-ac9d-2f0807a02754\",\n                \"code\": \"Asia/Oral\",\n                \"name\": \"Asia/Oral\",\n                \"order\": 297,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e2fc9695-0ab7-410e-b778-108d4f2475c7\",\n                \"code\": \"Asia/Omsk\",\n                \"name\": \"Asia/Omsk\",\n                \"order\": 296,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"11a369d1-d85d-484d-a9f2-c0367bcd1c66\",\n                \"code\": \"Asia/Novosibirsk\",\n                \"name\": \"Asia/Novosibirsk\",\n                \"order\": 295,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cf659f49-fb60-4665-8877-dc6b20fd45ea\",\n                \"code\": \"Asia/Novokuznetsk\",\n                \"name\": \"Asia/Novokuznetsk\",\n                \"order\": 294,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b2717b18-5547-48fc-a55f-3b9dfa1f30e3\",\n                \"code\": \"Asia/Nicosia\",\n                \"name\": \"Asia/Nicosia\",\n                \"order\": 293,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"93cc7d1a-9d70-4b34-87eb-e36346103ad2\",\n                \"code\": \"Asia/Muscat\",\n                \"name\": \"Asia/Muscat\",\n                \"order\": 292,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"67c1437d-b78b-42da-81a6-126925d889e8\",\n                \"code\": \"Asia/Manila\",\n                \"name\": \"Asia/Manila\",\n                \"order\": 291,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d02dd8c6-936e-4733-b40f-b26b23465cc9\",\n                \"code\": \"Asia/Makassar\",\n                \"name\": \"Asia/Makassar\",\n                \"order\": 290,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2fa0213a-93ad-42e9-9d23-7415bfdf3b34\",\n                \"code\": \"Zulu\",\n                \"name\": \"Zulu\",\n                \"order\": 591,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3ac9fdda-ed21-4432-984e-e7178bf1096e\",\n                \"code\": \"WET\",\n                \"name\": \"WET\",\n                \"order\": 590,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c3822f99-0cc6-4d26-9ef4-4f95036a3f31\",\n                \"code\": \"W-SU\",\n                \"name\": \"W-SU\",\n                \"order\": 589,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ba66d9a8-ba63-455d-bba8-d42c47959d9a\",\n                \"code\": \"Universal\",\n                \"name\": \"Universal\",\n                \"order\": 588,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"55cac895-25ae-4e83-a71e-ba547182eb0e\",\n                \"code\": \"UTC\",\n                \"name\": \"UTC\",\n                \"order\": 587,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d07fb301-4200-4ef0-965e-3981953399e6\",\n                \"code\": \"US/Samoa\",\n                \"name\": \"US/Samoa\",\n                \"order\": 586,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0381f04c-df82-4df8-b7d3-f1a98987f2ac\",\n                \"code\": \"US/Pacific\",\n                \"name\": \"US/Pacific\",\n                \"order\": 585,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4b82a92f-9be6-49c3-8381-815a366dd0f1\",\n                \"code\": \"US/Mountain\",\n                \"name\": \"US/Mountain\",\n                \"order\": 584,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"82c9667e-ef7b-4591-aec5-04978d1860f8\",\n                \"code\": \"US/Michigan\",\n                \"name\": \"US/Michigan\",\n                \"order\": 583,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"441b497b-3062-4c31-a4c0-d4c6ae8502d6\",\n                \"code\": \"US/Indiana-Starke\",\n                \"name\": \"US/Indiana-Starke\",\n                \"order\": 582,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0240ed90-ecaa-4d38-bc27-82b4e6520cf5\",\n                \"code\": \"US/Hawaii\",\n                \"name\": \"US/Hawaii\",\n                \"order\": 581,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"48cd84ca-f8fb-4c04-b50f-639eac3c3a2e\",\n                \"code\": \"US/Eastern\",\n                \"name\": \"US/Eastern\",\n                \"order\": 580,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d7fab1bb-989a-4560-9109-d23fd24642f3\",\n                \"code\": \"US/East-Indiana\",\n                \"name\": \"US/East-Indiana\",\n                \"order\": 579,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0dc3e404-3141-4377-8df7-8c967f56b3a0\",\n                \"code\": \"US/Central\",\n                \"name\": \"US/Central\",\n                \"order\": 578,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2b2994ce-e0bb-4ae0-b9aa-98e2430a9522\",\n                \"code\": \"US/Arizona\",\n                \"name\": \"US/Arizona\",\n                \"order\": 577,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8ad046fc-92cf-4156-a245-1d3c20dab1c4\",\n                \"code\": \"US/Aleutian\",\n                \"name\": \"US/Aleutian\",\n                \"order\": 576,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fe469fa1-a0aa-42ae-961f-344bac46f68c\",\n                \"code\": \"US/Alaska\",\n                \"name\": \"US/Alaska\",\n                \"order\": 575,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"36f87270-b737-4b23-b568-f20414dc3c47\",\n                \"code\": \"UCT\",\n                \"name\": \"UCT\",\n                \"order\": 574,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b12db398-f9c0-40b7-b294-552d15e5dba4\",\n                \"code\": \"Turkey\",\n                \"name\": \"Turkey\",\n                \"order\": 573,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a81d3dfc-bd44-47e8-a6a5-2cb0faade21a\",\n                \"code\": \"Singapore\",\n                \"name\": \"Singapore\",\n                \"order\": 572,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f11b977b-66b3-4241-bc20-38b027adb1ca\",\n                \"code\": \"ROK\",\n                \"name\": \"ROK\",\n                \"order\": 571,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f3b0ff03-d0b5-4647-a967-2e501cf76bed\",\n                \"code\": \"ROC\",\n                \"name\": \"ROC\",\n                \"order\": 570,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cd31e990-2999-47ca-a76b-8ca7b36f1c2c\",\n                \"code\": \"Portugal\",\n                \"name\": \"Portugal\",\n                \"order\": 569,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9e1cdd7d-8dec-45fc-a5c1-d1e98d5d48f0\",\n                \"code\": \"Poland\",\n                \"name\": \"Poland\",\n                \"order\": 568,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"952efdcc-a215-477f-b55b-4b8b31ba4197\",\n                \"code\": \"Pacific/Yap\",\n                \"name\": \"Pacific/Yap\",\n                \"order\": 567,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5145e34b-3c1e-4625-ae7b-6aa27ce637a8\",\n                \"code\": \"Pacific/Wallis\",\n                \"name\": \"Pacific/Wallis\",\n                \"order\": 566,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1101e73b-10d9-42c0-ad6d-9e176aa32765\",\n                \"code\": \"Pacific/Wake\",\n                \"name\": \"Pacific/Wake\",\n                \"order\": 565,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"43190ff2-4397-459b-b8ae-049911814f61\",\n                \"code\": \"Pacific/Truk\",\n                \"name\": \"Pacific/Truk\",\n                \"order\": 564,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"be689f3f-f975-4e87-95ab-96299f848729\",\n                \"code\": \"Pacific/Tongatapu\",\n                \"name\": \"Pacific/Tongatapu\",\n                \"order\": 563,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b12e1bde-9d3e-4920-8952-7ba044cee9f8\",\n                \"code\": \"Pacific/Tarawa\",\n                \"name\": \"Pacific/Tarawa\",\n                \"order\": 562,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b879250a-3eb7-4dfc-b41d-086f186acba5\",\n                \"code\": \"Pacific/Tahiti\",\n                \"name\": \"Pacific/Tahiti\",\n                \"order\": 561,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"13433062-86bd-410c-ac5c-3c5b3a695e95\",\n                \"code\": \"Pacific/Samoa\",\n                \"name\": \"Pacific/Samoa\",\n                \"order\": 560,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b68fa189-6412-4c08-a971-e31e91172b35\",\n                \"code\": \"Asia/Magadan\",\n                \"name\": \"Asia/Magadan\",\n                \"order\": 289,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e4ab8576-a1e0-43cf-801e-2c4f5603f114\",\n                \"code\": \"Asia/Macau\",\n                \"name\": \"Asia/Macau\",\n                \"order\": 288,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"474a7c6e-8f2f-4351-8809-3dc9323d9ec3\",\n                \"code\": \"Asia/Macao\",\n                \"name\": \"Asia/Macao\",\n                \"order\": 287,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1a83a6d7-0ab6-46c0-83c7-aeb63156c316\",\n                \"code\": \"Asia/Kuwait\",\n                \"name\": \"Asia/Kuwait\",\n                \"order\": 286,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"93a4e681-b216-4e1e-be3b-4ac88207aea8\",\n                \"code\": \"Asia/Kuching\",\n                \"name\": \"Asia/Kuching\",\n                \"order\": 285,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3dc291be-21a6-4ebb-b077-6348a30a4937\",\n                \"code\": \"Asia/Kuala_Lumpur\",\n                \"name\": \"Asia/Kuala_Lumpur\",\n                \"order\": 284,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e7fdbb74-cdca-4d48-bc25-a9eeca7fcc3f\",\n                \"code\": \"Asia/Krasnoyarsk\",\n                \"name\": \"Asia/Krasnoyarsk\",\n                \"order\": 283,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8df5aa6c-273a-457b-b151-30a06fe9518a\",\n                \"code\": \"Asia/Kolkata\",\n                \"name\": \"Asia/Kolkata\",\n                \"order\": 282,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c161dc57-5378-4a1e-a88c-3c092a31fa60\",\n                \"code\": \"Asia/Khandyga\",\n                \"name\": \"Asia/Khandyga\",\n                \"order\": 281,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5b8c97b7-adfb-4fed-8e0e-965e3c4502ff\",\n                \"code\": \"Asia/Katmandu\",\n                \"name\": \"Asia/Katmandu\",\n                \"order\": 280,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"618d84a9-05eb-4c53-8a73-f763f1428361\",\n                \"code\": \"Asia/Kathmandu\",\n                \"name\": \"Asia/Kathmandu\",\n                \"order\": 279,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"022f20b8-27ac-43af-a060-7866c1ff5a04\",\n                \"code\": \"Asia/Kashgar\",\n                \"name\": \"Asia/Kashgar\",\n                \"order\": 278,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ccab45f9-3615-4893-beab-6d907f0e6881\",\n                \"code\": \"Asia/Karachi\",\n                \"name\": \"Asia/Karachi\",\n                \"order\": 277,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b142dcb4-f526-48f2-afe1-5d05428dfcb8\",\n                \"code\": \"Asia/Kamchatka\",\n                \"name\": \"Asia/Kamchatka\",\n                \"order\": 276,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f9d4fc97-b3db-4724-80f6-ab59b76f014b\",\n                \"code\": \"Asia/Kabul\",\n                \"name\": \"Asia/Kabul\",\n                \"order\": 275,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c227dafe-710f-4ca6-9244-d442021a1f73\",\n                \"code\": \"Asia/Jerusalem\",\n                \"name\": \"Asia/Jerusalem\",\n                \"order\": 274,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a4eb5f79-0fd5-4a1b-b6c6-9e705ff0edff\",\n                \"code\": \"Asia/Jayapura\",\n                \"name\": \"Asia/Jayapura\",\n                \"order\": 273,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2c7ddbca-4d04-4d66-8073-e780036c46ef\",\n                \"code\": \"Asia/Jakarta\",\n                \"name\": \"Asia/Jakarta\",\n                \"order\": 272,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"19cd1054-a1e9-49e8-9118-1c8cd0cac1d2\",\n                \"code\": \"Asia/Istanbul\",\n                \"name\": \"Asia/Istanbul\",\n                \"order\": 271,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6ab53ada-381b-4c1f-ad2a-121fc4dcf5f9\",\n                \"code\": \"Asia/Irkutsk\",\n                \"name\": \"Asia/Irkutsk\",\n                \"order\": 270,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"dfe9894a-6a87-4871-9e79-d6385c7c1f81\",\n                \"code\": \"Asia/Hovd\",\n                \"name\": \"Asia/Hovd\",\n                \"order\": 269,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cb5ac872-5f39-468e-b6d6-983880bf5f3c\",\n                \"code\": \"Asia/Hong_Kong\",\n                \"name\": \"Asia/Hong_Kong\",\n                \"order\": 268,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c8e5db23-f457-43b0-bea1-403bb9ad2268\",\n                \"code\": \"Asia/Ho_Chi_Minh\",\n                \"name\": \"Asia/Ho_Chi_Minh\",\n                \"order\": 267,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2e77c347-db68-4c2f-93ad-29c12684ac21\",\n                \"code\": \"Asia/Hebron\",\n                \"name\": \"Asia/Hebron\",\n                \"order\": 266,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"16d61518-4250-4386-a82c-e01bc948bd69\",\n                \"code\": \"Asia/Harbin\",\n                \"name\": \"Asia/Harbin\",\n                \"order\": 265,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1b768092-4e13-4ce8-a180-990216743b61\",\n                \"code\": \"Asia/Gaza\",\n                \"name\": \"Asia/Gaza\",\n                \"order\": 264,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a5d6cd16-c764-4b1c-b65b-ab94659212a0\",\n                \"code\": \"Asia/Famagusta\",\n                \"name\": \"Asia/Famagusta\",\n                \"order\": 263,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f52ddcbc-c7aa-4a59-9f3d-89f54075c3bc\",\n                \"code\": \"Asia/Dushanbe\",\n                \"name\": \"Asia/Dushanbe\",\n                \"order\": 262,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"785df4cf-b2bf-494a-ae5a-2a0d380e0e03\",\n                \"code\": \"Asia/Dubai\",\n                \"name\": \"Asia/Dubai\",\n                \"order\": 261,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"99de931d-5e75-4d44-a319-10464d692b86\",\n                \"code\": \"Asia/Dili\",\n                \"name\": \"Asia/Dili\",\n                \"order\": 260,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9d78b2b2-c1fc-4f7a-bcc1-90aa7f5267d8\",\n                \"code\": \"Asia/Dhaka\",\n                \"name\": \"Asia/Dhaka\",\n                \"order\": 259,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7dae9c50-7716-4184-86e1-6e29c82ac5c5\",\n                \"code\": \"Asia/Damascus\",\n                \"name\": \"Asia/Damascus\",\n                \"order\": 258,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"59d2b635-5458-4281-bb23-e3f2427ccf76\",\n                \"code\": \"Asia/Dacca\",\n                \"name\": \"Asia/Dacca\",\n                \"order\": 257,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a9147f8d-3f20-4585-ad01-8e213f1c836c\",\n                \"code\": \"Asia/Colombo\",\n                \"name\": \"Asia/Colombo\",\n                \"order\": 256,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c53471ae-25c1-4292-a193-916b1206ad32\",\n                \"code\": \"Asia/Chungking\",\n                \"name\": \"Asia/Chungking\",\n                \"order\": 255,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5ea96692-af80-4d9e-a04b-fd5a7b328aef\",\n                \"code\": \"Asia/Chongqing\",\n                \"name\": \"Asia/Chongqing\",\n                \"order\": 254,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9baf805e-6940-4f32-bcda-b226e38b15d2\",\n                \"code\": \"Asia/Choibalsan\",\n                \"name\": \"Asia/Choibalsan\",\n                \"order\": 253,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"274f8d08-030e-4c60-8c9a-b61b763843b3\",\n                \"code\": \"Asia/Chita\",\n                \"name\": \"Asia/Chita\",\n                \"order\": 252,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"12a826c9-a7f6-4cec-b559-b43c0f7c94b3\",\n                \"code\": \"Asia/Calcutta\",\n                \"name\": \"Asia/Calcutta\",\n                \"order\": 251,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"98c9df9c-fe98-427e-9800-2194dd302cbe\",\n                \"code\": \"Asia/Brunei\",\n                \"name\": \"Asia/Brunei\",\n                \"order\": 250,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8c145dc1-c679-4b00-8089-e78f575eb717\",\n                \"code\": \"Asia/Bishkek\",\n                \"name\": \"Asia/Bishkek\",\n                \"order\": 249,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5fdba022-f0d6-4d93-bee7-e92061ec19c2\",\n                \"code\": \"Asia/Beirut\",\n                \"name\": \"Asia/Beirut\",\n                \"order\": 248,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fb6df3b1-c902-4fcb-8424-bbd6759a9b51\",\n                \"code\": \"Asia/Barnaul\",\n                \"name\": \"Asia/Barnaul\",\n                \"order\": 247,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a0f7abf5-a1cb-4d57-a6b6-cb537e8a14a8\",\n                \"code\": \"Asia/Bangkok\",\n                \"name\": \"Asia/Bangkok\",\n                \"order\": 246,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5be500dc-d89e-49e8-ae22-0633d66ac3d4\",\n                \"code\": \"Asia/Baku\",\n                \"name\": \"Asia/Baku\",\n                \"order\": 245,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c91a3b12-06c1-4d39-b36d-ed8db8570825\",\n                \"code\": \"Asia/Bahrain\",\n                \"name\": \"Asia/Bahrain\",\n                \"order\": 244,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fb3fac4a-0488-4549-96ec-4dde8d03dabf\",\n                \"code\": \"Asia/Baghdad\",\n                \"name\": \"Asia/Baghdad\",\n                \"order\": 243,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"52845ec2-6539-47cb-9a97-dd55b52f5e75\",\n                \"code\": \"Asia/Atyrau\",\n                \"name\": \"Asia/Atyrau\",\n                \"order\": 242,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6c642e6a-5726-48cb-85c7-a967361f0f28\",\n                \"code\": \"Asia/Ashkhabad\",\n                \"name\": \"Asia/Ashkhabad\",\n                \"order\": 241,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e4885a98-ace6-4711-9994-91c70f2f7c7f\",\n                \"code\": \"Asia/Ashgabat\",\n                \"name\": \"Asia/Ashgabat\",\n                \"order\": 240,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c6614eca-c05b-4624-bd2c-fa2de9f595b6\",\n                \"code\": \"Asia/Aqtobe\",\n                \"name\": \"Asia/Aqtobe\",\n                \"order\": 239,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"89bba033-1cfc-44cd-9bd4-fc5a3309c966\",\n                \"code\": \"Asia/Aqtau\",\n                \"name\": \"Asia/Aqtau\",\n                \"order\": 238,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9d42732d-58ca-4f1a-8ce6-5fdb794d7c77\",\n                \"code\": \"Asia/Anadyr\",\n                \"name\": \"Asia/Anadyr\",\n                \"order\": 237,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f85f2ec2-f38b-4187-8c61-b7b5b8a8f074\",\n                \"code\": \"Asia/Amman\",\n                \"name\": \"Asia/Amman\",\n                \"order\": 236,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"80285e68-fc05-461c-b434-4b4d88b95116\",\n                \"code\": \"Asia/Almaty\",\n                \"name\": \"Asia/Almaty\",\n                \"order\": 235,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"02ec5254-59fd-4c97-af52-37a8a658c572\",\n                \"code\": \"Asia/Aden\",\n                \"name\": \"Asia/Aden\",\n                \"order\": 234,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fdc0ab68-b390-4565-be2b-ce113be4992d\",\n                \"code\": \"Arctic/Longyearbyen\",\n                \"name\": \"Arctic/Longyearbyen\",\n                \"order\": 233,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"581c8ee0-f5a9-4a69-9939-ea8d27f90630\",\n                \"code\": \"Antarctica/Vostok\",\n                \"name\": \"Antarctica/Vostok\",\n                \"order\": 232,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7f3cf67d-be5b-4246-9fa4-67f8acd49ea9\",\n                \"code\": \"Antarctica/Troll\",\n                \"name\": \"Antarctica/Troll\",\n                \"order\": 231,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6378aa69-50a9-4184-bbe0-44fe6db21389\",\n                \"code\": \"Antarctica/Syowa\",\n                \"name\": \"Antarctica/Syowa\",\n                \"order\": 230,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9da22a6d-455f-4438-8b05-4f26f4138361\",\n                \"code\": \"Antarctica/South_Pole\",\n                \"name\": \"Antarctica/South_Pole\",\n                \"order\": 229,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b0f3d573-8273-4e57-b639-09a51971fb0e\",\n                \"code\": \"Antarctica/Rothera\",\n                \"name\": \"Antarctica/Rothera\",\n                \"order\": 228,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c6049eac-9c6b-49c2-936f-6798db1445d9\",\n                \"code\": \"Antarctica/Palmer\",\n                \"name\": \"Antarctica/Palmer\",\n                \"order\": 227,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fc06d4c3-1ec2-4610-ac84-054496c5e5e0\",\n                \"code\": \"Antarctica/McMurdo\",\n                \"name\": \"Antarctica/McMurdo\",\n                \"order\": 226,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d9bc2665-64a5-4830-9761-a2c39673881f\",\n                \"code\": \"Antarctica/Mawson\",\n                \"name\": \"Antarctica/Mawson\",\n                \"order\": 225,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0182745d-95af-4847-bc80-6a665e067c79\",\n                \"code\": \"Antarctica/Macquarie\",\n                \"name\": \"Antarctica/Macquarie\",\n                \"order\": 224,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"905979c1-5c60-40b3-9365-7be6c72963b4\",\n                \"code\": \"Antarctica/DumontDUrville\",\n                \"name\": \"Antarctica/DumontDUrville\",\n                \"order\": 223,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3e4c8775-547e-4c07-bcf5-d8b7c8c1e0d9\",\n                \"code\": \"Antarctica/Davis\",\n                \"name\": \"Antarctica/Davis\",\n                \"order\": 222,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8bd162e8-6a2a-4b13-83b1-18c325d9427d\",\n                \"code\": \"Antarctica/Casey\",\n                \"name\": \"Antarctica/Casey\",\n                \"order\": 221,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"76ba19cd-3194-4144-8690-cb51d0b9c320\",\n                \"code\": \"America/Yellowknife\",\n                \"name\": \"America/Yellowknife\",\n                \"order\": 220,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"754fd6ca-0c3e-48ab-8b8b-8b4173c9cce0\",\n                \"code\": \"America/Yakutat\",\n                \"name\": \"America/Yakutat\",\n                \"order\": 219,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"64d3e929-a502-4e1b-855a-27d50bab1f6b\",\n                \"code\": \"America/Winnipeg\",\n                \"name\": \"America/Winnipeg\",\n                \"order\": 218,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d8eba788-09e7-419c-a1ca-dae81e58f622\",\n                \"code\": \"America/Whitehorse\",\n                \"name\": \"America/Whitehorse\",\n                \"order\": 217,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3a8a57cc-bf70-4913-b53f-662b735905f4\",\n                \"code\": \"America/Virgin\",\n                \"name\": \"America/Virgin\",\n                \"order\": 216,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"eda21a97-3c63-4525-8e02-9f7df9b8a759\",\n                \"code\": \"America/Vancouver\",\n                \"name\": \"America/Vancouver\",\n                \"order\": 215,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6765a1fe-9e71-4264-ac21-1cdc9e80ebde\",\n                \"code\": \"America/Tortola\",\n                \"name\": \"America/Tortola\",\n                \"order\": 214,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"75e7dd26-1786-4373-9ff3-91bb4ee8606a\",\n                \"code\": \"America/Toronto\",\n                \"name\": \"America/Toronto\",\n                \"order\": 213,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6b3a3a19-3cda-471c-8970-5858611d98ac\",\n                \"code\": \"America/Tijuana\",\n                \"name\": \"America/Tijuana\",\n                \"order\": 212,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"17cc7fca-8f70-4fac-935f-8490558cf771\",\n                \"code\": \"America/Thunder_Bay\",\n                \"name\": \"America/Thunder_Bay\",\n                \"order\": 211,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3657f213-badf-4d6c-b10a-2a81a331a0b6\",\n                \"code\": \"America/Thule\",\n                \"name\": \"America/Thule\",\n                \"order\": 210,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"31cbbd0b-2639-44c1-8067-77bb3495559f\",\n                \"code\": \"America/Tegucigalpa\",\n                \"name\": \"America/Tegucigalpa\",\n                \"order\": 209,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3d3680b0-baf3-483a-868e-9ff85fd099c4\",\n                \"code\": \"America/Swift_Current\",\n                \"name\": \"America/Swift_Current\",\n                \"order\": 208,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fe2ae1bb-8975-4b22-a512-abdcce9ec424\",\n                \"code\": \"America/St_Vincent\",\n                \"name\": \"America/St_Vincent\",\n                \"order\": 207,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"992bf4c0-9d68-40f6-ae65-fdf4b2259587\",\n                \"code\": \"America/St_Thomas\",\n                \"name\": \"America/St_Thomas\",\n                \"order\": 206,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"660a4859-636e-4b76-80e9-a3dec619a8b2\",\n                \"code\": \"America/St_Lucia\",\n                \"name\": \"America/St_Lucia\",\n                \"order\": 205,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"33c6cfc2-c11d-4b4f-a95c-371812fa0b49\",\n                \"code\": \"America/St_Kitts\",\n                \"name\": \"America/St_Kitts\",\n                \"order\": 204,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"11ff0afb-2e1f-4306-94af-76d468b13962\",\n                \"code\": \"America/St_Johns\",\n                \"name\": \"America/St_Johns\",\n                \"order\": 203,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e69558c5-1504-41f4-b196-82b9c43cd7a3\",\n                \"code\": \"America/St_Barthelemy\",\n                \"name\": \"America/St_Barthelemy\",\n                \"order\": 202,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3e0fdc3d-69e2-4f92-82e0-61c5d515bb79\",\n                \"code\": \"America/Sitka\",\n                \"name\": \"America/Sitka\",\n                \"order\": 201,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"13aed287-b7cd-4e54-8854-b09c32b41b50\",\n                \"code\": \"America/Shiprock\",\n                \"name\": \"America/Shiprock\",\n                \"order\": 200,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"bf5779f8-e2c3-4c94-af00-658971978276\",\n                \"code\": \"America/Scoresbysund\",\n                \"name\": \"America/Scoresbysund\",\n                \"order\": 199,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"dff308d9-9d86-438e-a28e-1748101c5a59\",\n                \"code\": \"America/Sao_Paulo\",\n                \"name\": \"America/Sao_Paulo\",\n                \"order\": 198,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"625b0bda-daa4-435f-b974-115f638f6b75\",\n                \"code\": \"America/Santo_Domingo\",\n                \"name\": \"America/Santo_Domingo\",\n                \"order\": 197,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d83d4543-b6db-4117-8a4e-23e60a32c929\",\n                \"code\": \"America/Santiago\",\n                \"name\": \"America/Santiago\",\n                \"order\": 196,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7318118a-ab8a-443e-acd4-c5d8b1ab7378\",\n                \"code\": \"America/Santarem\",\n                \"name\": \"America/Santarem\",\n                \"order\": 195,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b1a8704d-1dd1-4ed2-9698-152321b257e5\",\n                \"code\": \"America/Santa_Isabel\",\n                \"name\": \"America/Santa_Isabel\",\n                \"order\": 194,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"70c6fd72-0540-4abb-9179-0400fdfa0575\",\n                \"code\": \"America/Rosario\",\n                \"name\": \"America/Rosario\",\n                \"order\": 193,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8892c170-db21-4589-8946-c5bdff826e99\",\n                \"code\": \"America/Rio_Branco\",\n                \"name\": \"America/Rio_Branco\",\n                \"order\": 192,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"bae914a1-98c7-4d6c-bfb7-3ae3edb5e25d\",\n                \"code\": \"America/Resolute\",\n                \"name\": \"America/Resolute\",\n                \"order\": 191,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"540f8557-cea0-4f76-8095-7bc86685ba15\",\n                \"code\": \"America/Regina\",\n                \"name\": \"America/Regina\",\n                \"order\": 190,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"83760b85-4d4f-4239-b865-4c5ca6dd42b6\",\n                \"code\": \"America/Recife\",\n                \"name\": \"America/Recife\",\n                \"order\": 189,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"995e504b-c864-4926-aad1-6579d515c52c\",\n                \"code\": \"America/Rankin_Inlet\",\n                \"name\": \"America/Rankin_Inlet\",\n                \"order\": 188,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e0af95bb-b231-40fe-871d-79df191e564e\",\n                \"code\": \"America/Rainy_River\",\n                \"name\": \"America/Rainy_River\",\n                \"order\": 187,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4fb0a302-328d-4430-9f6b-f01aefd34299\",\n                \"code\": \"America/Punta_Arenas\",\n                \"name\": \"America/Punta_Arenas\",\n                \"order\": 186,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"46e8d358-9b9d-4e31-83c1-4ec69ef7c50d\",\n                \"code\": \"America/Puerto_Rico\",\n                \"name\": \"America/Puerto_Rico\",\n                \"order\": 185,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d12402d4-f554-4106-a6ee-2a4dc7c9088f\",\n                \"code\": \"America/Porto_Velho\",\n                \"name\": \"America/Porto_Velho\",\n                \"order\": 184,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1ffb2660-68cb-4d73-9394-9f437942ff3d\",\n                \"code\": \"America/Porto_Acre\",\n                \"name\": \"America/Porto_Acre\",\n                \"order\": 183,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"81fc1a5f-922a-4868-a458-af6e37a5dc21\",\n                \"code\": \"America/Port_of_Spain\",\n                \"name\": \"America/Port_of_Spain\",\n                \"order\": 182,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"144516b5-6605-4ac1-8794-cc1b6ab6c368\",\n                \"code\": \"America/Port-au-Prince\",\n                \"name\": \"America/Port-au-Prince\",\n                \"order\": 181,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b96be767-1129-4aab-875c-f0a18b4a519f\",\n                \"code\": \"America/Phoenix\",\n                \"name\": \"America/Phoenix\",\n                \"order\": 180,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"036c3719-85be-47f2-aa03-19e0201f845c\",\n                \"code\": \"America/Paramaribo\",\n                \"name\": \"America/Paramaribo\",\n                \"order\": 179,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"743e7fa9-c134-4817-88e9-d8dd784f7734\",\n                \"code\": \"America/Pangnirtung\",\n                \"name\": \"America/Pangnirtung\",\n                \"order\": 178,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f6c96b76-6847-4c46-9fe9-cddee7976a94\",\n                \"code\": \"America/Panama\",\n                \"name\": \"America/Panama\",\n                \"order\": 177,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"307ddd4e-8b48-4f78-82cc-9d6789085d60\",\n                \"code\": \"America/Ojinaga\",\n                \"name\": \"America/Ojinaga\",\n                \"order\": 176,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cbaf1bd3-5daf-48f3-9617-9cf9fd7d1b33\",\n                \"code\": \"America/North_Dakota/New_Salem\",\n                \"name\": \"America/North_Dakota/New_Salem\",\n                \"order\": 175,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"74d3c77f-2817-4b58-988a-82cf9400de2c\",\n                \"code\": \"America/North_Dakota/Center\",\n                \"name\": \"America/North_Dakota/Center\",\n                \"order\": 174,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7b28e106-895a-4dd4-adc6-1dea8987dc15\",\n                \"code\": \"America/North_Dakota/Beulah\",\n                \"name\": \"America/North_Dakota/Beulah\",\n                \"order\": 173,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c8d1eb71-a3d0-4152-9631-851e280f2d1e\",\n                \"code\": \"America/Noronha\",\n                \"name\": \"America/Noronha\",\n                \"order\": 172,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9bd53cc3-e377-4aa7-b745-98540b074976\",\n                \"code\": \"America/Nome\",\n                \"name\": \"America/Nome\",\n                \"order\": 171,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a044a0e3-7b9c-4723-8fe6-56b93ea7f1a2\",\n                \"code\": \"America/Nipigon\",\n                \"name\": \"America/Nipigon\",\n                \"order\": 170,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c8bad443-380c-44e3-ae07-08a486813042\",\n                \"code\": \"America/New_York\",\n                \"name\": \"America/New_York\",\n                \"order\": 169,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"95fa687e-ca31-423c-a1a8-96036720b72f\",\n                \"code\": \"America/Nassau\",\n                \"name\": \"America/Nassau\",\n                \"order\": 168,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9dd3cbf1-28ee-4f3e-8007-d7bf5f4f41d5\",\n                \"code\": \"America/Montserrat\",\n                \"name\": \"America/Montserrat\",\n                \"order\": 167,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f45b89a6-2760-41ab-b189-59faf3516a06\",\n                \"code\": \"America/Montreal\",\n                \"name\": \"America/Montreal\",\n                \"order\": 166,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6eb52103-94ea-4cb7-b247-6be3234f756e\",\n                \"code\": \"America/Montevideo\",\n                \"name\": \"America/Montevideo\",\n                \"order\": 165,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9fbfaf63-b2f0-4000-a2a4-6e5b5af21265\",\n                \"code\": \"America/Monterrey\",\n                \"name\": \"America/Monterrey\",\n                \"order\": 164,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e1aaf57c-bd92-4f7f-a039-a51a19af6b75\",\n                \"code\": \"America/Moncton\",\n                \"name\": \"America/Moncton\",\n                \"order\": 163,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7f20e2fd-661e-4d60-b376-89ad2e07f6b3\",\n                \"code\": \"America/Miquelon\",\n                \"name\": \"America/Miquelon\",\n                \"order\": 162,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"24871654-8987-43c6-bb42-ad9a05737bc5\",\n                \"code\": \"America/Mexico_City\",\n                \"name\": \"America/Mexico_City\",\n                \"order\": 161,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c3d516b9-1e1a-45b2-ac55-961420bc5eea\",\n                \"code\": \"America/Metlakatla\",\n                \"name\": \"America/Metlakatla\",\n                \"order\": 160,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"234232c6-ecec-481c-b415-b87ba1644beb\",\n                \"code\": \"America/Merida\",\n                \"name\": \"America/Merida\",\n                \"order\": 159,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2542987a-8871-41db-ad4a-4f6877e78e79\",\n                \"code\": \"America/Menominee\",\n                \"name\": \"America/Menominee\",\n                \"order\": 158,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"675f7a44-72a3-4ec5-aa88-b9adb7f39267\",\n                \"code\": \"America/Mendoza\",\n                \"name\": \"America/Mendoza\",\n                \"order\": 157,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7faf7dcd-ca6c-41b0-a2df-4a82ff90522a\",\n                \"code\": \"America/Mazatlan\",\n                \"name\": \"America/Mazatlan\",\n                \"order\": 156,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6948387c-3677-4fad-869d-779e91384d18\",\n                \"code\": \"America/Matamoros\",\n                \"name\": \"America/Matamoros\",\n                \"order\": 155,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"867fb66b-fdb3-4c3e-a9eb-5f8faa334bc3\",\n                \"code\": \"America/Martinique\",\n                \"name\": \"America/Martinique\",\n                \"order\": 154,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"088d0e90-ac60-42cd-bddd-dd27d8912e58\",\n                \"code\": \"America/Marigot\",\n                \"name\": \"America/Marigot\",\n                \"order\": 153,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3a159f7e-39cb-4060-8b2b-6f980948d8e5\",\n                \"code\": \"America/Manaus\",\n                \"name\": \"America/Manaus\",\n                \"order\": 152,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"32c898dd-0c13-4eae-967a-b3615d796a58\",\n                \"code\": \"America/Managua\",\n                \"name\": \"America/Managua\",\n                \"order\": 151,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a4619cd1-935f-4cf4-9b00-cb969f4838fa\",\n                \"code\": \"America/Maceio\",\n                \"name\": \"America/Maceio\",\n                \"order\": 150,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a4711a8a-6e29-421d-9610-6737e644b374\",\n                \"code\": \"America/Lower_Princes\",\n                \"name\": \"America/Lower_Princes\",\n                \"order\": 149,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0e447b2f-8287-4abc-b93b-862ddafbdd7c\",\n                \"code\": \"America/Louisville\",\n                \"name\": \"America/Louisville\",\n                \"order\": 148,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"09374a03-251f-4300-9219-08a3f7f68d8a\",\n                \"code\": \"America/Los_Angeles\",\n                \"name\": \"America/Los_Angeles\",\n                \"order\": 147,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"561a20c1-ad83-4d7a-ac50-6a7abbd743ef\",\n                \"code\": \"America/Lima\",\n                \"name\": \"America/Lima\",\n                \"order\": 146,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ace4a9c4-3072-4abf-a46d-573262afd544\",\n                \"code\": \"America/La_Paz\",\n                \"name\": \"America/La_Paz\",\n                \"order\": 145,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"80323142-cb1e-445e-8a10-d93a19ba4f50\",\n                \"code\": \"America/Kralendijk\",\n                \"name\": \"America/Kralendijk\",\n                \"order\": 144,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0251895d-d78f-4749-b4bb-65a8641bb5c1\",\n                \"code\": \"America/Knox_IN\",\n                \"name\": \"America/Knox_IN\",\n                \"order\": 143,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"169128b4-4a76-437a-a336-32d2dbcc9c43\",\n                \"code\": \"America/Kentucky/Monticello\",\n                \"name\": \"America/Kentucky/Monticello\",\n                \"order\": 142,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"97d6c33f-7a43-4989-87f9-bfcc74542066\",\n                \"code\": \"America/Kentucky/Louisville\",\n                \"name\": \"America/Kentucky/Louisville\",\n                \"order\": 141,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"10235c95-dc53-4090-816b-a1e308fe5388\",\n                \"code\": \"America/Juneau\",\n                \"name\": \"America/Juneau\",\n                \"order\": 140,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"35f609b5-8326-454a-9ac2-2dd35dfd1eab\",\n                \"code\": \"America/Jujuy\",\n                \"name\": \"America/Jujuy\",\n                \"order\": 139,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"83af027a-5827-4eee-92a7-bffad8229e8b\",\n                \"code\": \"America/Jamaica\",\n                \"name\": \"America/Jamaica\",\n                \"order\": 138,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"625fa539-004a-4cf5-9770-e2014628179f\",\n                \"code\": \"America/Iqaluit\",\n                \"name\": \"America/Iqaluit\",\n                \"order\": 137,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ec9a8087-fcf2-4310-ab9c-37ab57576869\",\n                \"code\": \"America/Inuvik\",\n                \"name\": \"America/Inuvik\",\n                \"order\": 136,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c61c894f-6861-49ff-bdea-cc118e8ac715\",\n                \"code\": \"America/Indianapolis\",\n                \"name\": \"America/Indianapolis\",\n                \"order\": 135,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7bff4844-0e4b-4dd9-b061-c82a36e1497e\",\n                \"code\": \"America/Indiana/Winamac\",\n                \"name\": \"America/Indiana/Winamac\",\n                \"order\": 134,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d357af9c-949f-4075-ba41-bff775dc7c75\",\n                \"code\": \"America/Indiana/Vincennes\",\n                \"name\": \"America/Indiana/Vincennes\",\n                \"order\": 133,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9e801925-177a-4f83-8b16-1de350ded546\",\n                \"code\": \"America/Indiana/Vevay\",\n                \"name\": \"America/Indiana/Vevay\",\n                \"order\": 132,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5ff4a956-41ac-410c-bc41-19ad780ee2ff\",\n                \"code\": \"America/Indiana/Tell_City\",\n                \"name\": \"America/Indiana/Tell_City\",\n                \"order\": 131,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a49b6d76-612b-4681-98ee-f007f4c79e1e\",\n                \"code\": \"America/Indiana/Petersburg\",\n                \"name\": \"America/Indiana/Petersburg\",\n                \"order\": 130,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e907b030-12c4-4368-8e54-0b23709a83d2\",\n                \"code\": \"America/Indiana/Marengo\",\n                \"name\": \"America/Indiana/Marengo\",\n                \"order\": 129,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0d821327-3566-4704-b25a-65053d39d0ce\",\n                \"code\": \"America/Indiana/Knox\",\n                \"name\": \"America/Indiana/Knox\",\n                \"order\": 128,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2456e6fe-5d66-49ce-a677-aae4f539960b\",\n                \"code\": \"America/Indiana/Indianapolis\",\n                \"name\": \"America/Indiana/Indianapolis\",\n                \"order\": 127,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"51a4b3d1-46e6-402e-9513-b2d10d0bf97d\",\n                \"code\": \"America/Hermosillo\",\n                \"name\": \"America/Hermosillo\",\n                \"order\": 126,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e0c5ab26-6ca6-4205-9069-a599df2e763d\",\n                \"code\": \"America/Havana\",\n                \"name\": \"America/Havana\",\n                \"order\": 125,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"cc4e1594-10cf-438b-add5-a32616bd3b35\",\n                \"code\": \"America/Halifax\",\n                \"name\": \"America/Halifax\",\n                \"order\": 124,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3a8d1685-9154-481e-b9ee-9c138c126180\",\n                \"code\": \"America/Guyana\",\n                \"name\": \"America/Guyana\",\n                \"order\": 123,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8eb88b55-49eb-4893-b554-993ea4d83b42\",\n                \"code\": \"America/Guayaquil\",\n                \"name\": \"America/Guayaquil\",\n                \"order\": 122,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a7785444-f986-4fb1-b17a-1e6c7f04c126\",\n                \"code\": \"America/Guatemala\",\n                \"name\": \"America/Guatemala\",\n                \"order\": 121,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e2b11285-7f51-4156-83a5-3a7c5702f96c\",\n                \"code\": \"America/Guadeloupe\",\n                \"name\": \"America/Guadeloupe\",\n                \"order\": 120,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"93a38678-cd8a-47e7-a5d6-a9d0ba71abc2\",\n                \"code\": \"America/Grenada\",\n                \"name\": \"America/Grenada\",\n                \"order\": 119,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c4f41d27-61ba-4609-81a1-75197947daa2\",\n                \"code\": \"America/Grand_Turk\",\n                \"name\": \"America/Grand_Turk\",\n                \"order\": 118,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4a0562d6-8622-4f39-8281-90ee9a0924c4\",\n                \"code\": \"America/Goose_Bay\",\n                \"name\": \"America/Goose_Bay\",\n                \"order\": 117,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9c98bfe0-872d-49a3-8964-417708035b30\",\n                \"code\": \"America/Godthab\",\n                \"name\": \"America/Godthab\",\n                \"order\": 116,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"280245f7-64c5-4043-8818-dd4753955714\",\n                \"code\": \"America/Glace_Bay\",\n                \"name\": \"America/Glace_Bay\",\n                \"order\": 115,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"26ed4df4-68eb-4c6f-b8c9-f84f1ba26406\",\n                \"code\": \"America/Fortaleza\",\n                \"name\": \"America/Fortaleza\",\n                \"order\": 114,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c45491d4-00be-4cf5-9137-5066c36bd157\",\n                \"code\": \"America/Fort_Wayne\",\n                \"name\": \"America/Fort_Wayne\",\n                \"order\": 113,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"41f5e657-5750-4ff5-b6a7-9c8db5a65d09\",\n                \"code\": \"America/Fort_Nelson\",\n                \"name\": \"America/Fort_Nelson\",\n                \"order\": 112,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"22e77459-7eca-4fa0-a671-4bba139d77b0\",\n                \"code\": \"America/Ensenada\",\n                \"name\": \"America/Ensenada\",\n                \"order\": 111,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5c552537-fa61-42b8-bfc8-593133fb5fea\",\n                \"code\": \"America/El_Salvador\",\n                \"name\": \"America/El_Salvador\",\n                \"order\": 110,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fca02803-c0b7-42a6-aae8-e3dbf38b01b8\",\n                \"code\": \"America/Eirunepe\",\n                \"name\": \"America/Eirunepe\",\n                \"order\": 109,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4556306b-15f3-44ea-9074-434bc753f313\",\n                \"code\": \"America/Edmonton\",\n                \"name\": \"America/Edmonton\",\n                \"order\": 108,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"93efb52c-0a71-4aad-a23c-e83b0b86d2b8\",\n                \"code\": \"America/Dominica\",\n                \"name\": \"America/Dominica\",\n                \"order\": 107,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"aacf7645-298e-4b8c-90df-1dd34bb404dd\",\n                \"code\": \"America/Detroit\",\n                \"name\": \"America/Detroit\",\n                \"order\": 106,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"524482f6-ef64-42b1-8bef-8119379bd8fc\",\n                \"code\": \"America/Denver\",\n                \"name\": \"America/Denver\",\n                \"order\": 105,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"61fea1ee-c9c8-48c6-bcf9-b763a800c912\",\n                \"code\": \"America/Dawson_Creek\",\n                \"name\": \"America/Dawson_Creek\",\n                \"order\": 104,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6fa80830-0247-40e2-b73e-fa33a4ab54ef\",\n                \"code\": \"America/Dawson\",\n                \"name\": \"America/Dawson\",\n                \"order\": 103,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9eaf86a0-859e-442c-8945-ce8745f49412\",\n                \"code\": \"America/Danmarkshavn\",\n                \"name\": \"America/Danmarkshavn\",\n                \"order\": 102,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0a825cd9-31d0-4954-a8c2-310100fe803a\",\n                \"code\": \"America/Curacao\",\n                \"name\": \"America/Curacao\",\n                \"order\": 101,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f2511aba-15f3-4de6-88fb-60f667713c71\",\n                \"code\": \"America/Cuiaba\",\n                \"name\": \"America/Cuiaba\",\n                \"order\": 100,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0418d2cb-7852-4c76-b901-a81887dd0f24\",\n                \"code\": \"America/Creston\",\n                \"name\": \"America/Creston\",\n                \"order\": 99,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0a4bb7ce-6348-48c8-acb3-09cff2b1c4c5\",\n                \"code\": \"America/Costa_Rica\",\n                \"name\": \"America/Costa_Rica\",\n                \"order\": 98,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e12ea097-9347-44c6-88e0-9c7c8ff8f894\",\n                \"code\": \"America/Cordoba\",\n                \"name\": \"America/Cordoba\",\n                \"order\": 97,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ad51cb89-e48c-454d-9fff-33eca67af649\",\n                \"code\": \"America/Coral_Harbour\",\n                \"name\": \"America/Coral_Harbour\",\n                \"order\": 96,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5b0d34fe-d5cd-4577-9fea-4a843ea3e039\",\n                \"code\": \"America/Chihuahua\",\n                \"name\": \"America/Chihuahua\",\n                \"order\": 95,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7b56f203-4354-4ea9-a362-6b0f9bf39750\",\n                \"code\": \"America/Chicago\",\n                \"name\": \"America/Chicago\",\n                \"order\": 94,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4a93ca32-dc7a-4cf1-a431-f95083c08170\",\n                \"code\": \"America/Cayman\",\n                \"name\": \"America/Cayman\",\n                \"order\": 93,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5e742b32-b1d3-486f-8f39-0d00e56a9838\",\n                \"code\": \"America/Cayenne\",\n                \"name\": \"America/Cayenne\",\n                \"order\": 92,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fffc7179-2458-48df-8417-01b9c89250dd\",\n                \"code\": \"America/Catamarca\",\n                \"name\": \"America/Catamarca\",\n                \"order\": 91,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8e70d8c7-41ff-425f-950e-1163ccf00ca2\",\n                \"code\": \"America/Caracas\",\n                \"name\": \"America/Caracas\",\n                \"order\": 90,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c369d7f6-12be-43bc-83f5-464b5ba0dd60\",\n                \"code\": \"America/Cancun\",\n                \"name\": \"America/Cancun\",\n                \"order\": 89,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f61c0450-d5ce-437e-b447-045018acb3d4\",\n                \"code\": \"America/Campo_Grande\",\n                \"name\": \"America/Campo_Grande\",\n                \"order\": 88,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5a390004-7ad3-47c4-aa11-1ee12bf7b181\",\n                \"code\": \"America/Cambridge_Bay\",\n                \"name\": \"America/Cambridge_Bay\",\n                \"order\": 87,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e800c048-285b-4e85-8ccd-70bfecbad4b0\",\n                \"code\": \"America/Buenos_Aires\",\n                \"name\": \"America/Buenos_Aires\",\n                \"order\": 86,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"29d0dc00-54bf-4492-9d31-6e6164afb78e\",\n                \"code\": \"America/Boise\",\n                \"name\": \"America/Boise\",\n                \"order\": 85,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"37397713-2bb6-49a9-8b87-d88a9d935773\",\n                \"code\": \"America/Bogota\",\n                \"name\": \"America/Bogota\",\n                \"order\": 84,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0d42ff99-b9af-468f-9b6b-91edf41b88f9\",\n                \"code\": \"America/Boa_Vista\",\n                \"name\": \"America/Boa_Vista\",\n                \"order\": 83,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4921264a-dcfb-440a-bb98-0be3d9a2407a\",\n                \"code\": \"America/Blanc-Sablon\",\n                \"name\": \"America/Blanc-Sablon\",\n                \"order\": 82,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d7aae7e6-42b7-4522-9e98-235ea9034d88\",\n                \"code\": \"America/Belize\",\n                \"name\": \"America/Belize\",\n                \"order\": 81,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"08f7aa80-2677-44a1-b9ba-13228fdedc97\",\n                \"code\": \"America/Belem\",\n                \"name\": \"America/Belem\",\n                \"order\": 80,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"54cd4391-b1ad-4706-90e3-674b2430d9e5\",\n                \"code\": \"America/Barbados\",\n                \"name\": \"America/Barbados\",\n                \"order\": 79,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9bf5fa3b-e2c6-4e09-acff-6263f7f8191a\",\n                \"code\": \"America/Bahia_Banderas\",\n                \"name\": \"America/Bahia_Banderas\",\n                \"order\": 78,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"dbffa8a8-9e81-44d1-a001-df2161ee9eff\",\n                \"code\": \"America/Bahia\",\n                \"name\": \"America/Bahia\",\n                \"order\": 77,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"6e274d91-9adc-425f-9b17-afcba70b9286\",\n                \"code\": \"America/Atka\",\n                \"name\": \"America/Atka\",\n                \"order\": 76,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"36909e68-16ad-427e-867b-7ba96c13e5c1\",\n                \"code\": \"America/Atikokan\",\n                \"name\": \"America/Atikokan\",\n                \"order\": 75,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"335c8bba-467e-40ed-b677-a457d8b3ea75\",\n                \"code\": \"America/Asuncion\",\n                \"name\": \"America/Asuncion\",\n                \"order\": 74,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"89fe9dd2-5f2c-4cda-8cf3-214dfc66a713\",\n                \"code\": \"America/Aruba\",\n                \"name\": \"America/Aruba\",\n                \"order\": 73,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"eea7225c-5132-492c-ad26-9f8a6d498c4f\",\n                \"code\": \"America/Argentina/Ushuaia\",\n                \"name\": \"America/Argentina/Ushuaia\",\n                \"order\": 72,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9d875938-e1fb-45d4-af73-b74fc05448bb\",\n                \"code\": \"America/Argentina/Tucuman\",\n                \"name\": \"America/Argentina/Tucuman\",\n                \"order\": 71,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d49692c7-9856-4203-ae65-e70d86038233\",\n                \"code\": \"America/Argentina/San_Luis\",\n                \"name\": \"America/Argentina/San_Luis\",\n                \"order\": 70,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"012cbb5e-5714-41fd-a4d5-176b0517323b\",\n                \"code\": \"America/Argentina/San_Juan\",\n                \"name\": \"America/Argentina/San_Juan\",\n                \"order\": 69,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0969604c-e042-4046-af3d-7f9d5991382f\",\n                \"code\": \"America/Argentina/Salta\",\n                \"name\": \"America/Argentina/Salta\",\n                \"order\": 68,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b4079064-dbb7-48a2-bc14-95f8900bca4d\",\n                \"code\": \"America/Argentina/Rio_Gallegos\",\n                \"name\": \"America/Argentina/Rio_Gallegos\",\n                \"order\": 67,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d1f403e0-ac55-42a5-ad0e-c2067cccf5dd\",\n                \"code\": \"America/Argentina/Mendoza\",\n                \"name\": \"America/Argentina/Mendoza\",\n                \"order\": 66,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b7b76a87-15c2-4131-9e1c-c338f5aa28ce\",\n                \"code\": \"America/Argentina/La_Rioja\",\n                \"name\": \"America/Argentina/La_Rioja\",\n                \"order\": 65,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"bd116fa7-03ce-4bcd-a975-db40aa75f53f\",\n                \"code\": \"America/Argentina/Jujuy\",\n                \"name\": \"America/Argentina/Jujuy\",\n                \"order\": 64,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"09e91776-42e4-4cd5-b3fa-51f964bcd757\",\n                \"code\": \"America/Argentina/Cordoba\",\n                \"name\": \"America/Argentina/Cordoba\",\n                \"order\": 63,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"60d2ad4a-2848-44d6-8903-70654fb75c7a\",\n                \"code\": \"America/Argentina/ComodRivadavia\",\n                \"name\": \"America/Argentina/ComodRivadavia\",\n                \"order\": 62,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"fb2fd8cd-c2f0-4465-aa12-013d4705ed64\",\n                \"code\": \"America/Argentina/Catamarca\",\n                \"name\": \"America/Argentina/Catamarca\",\n                \"order\": 61,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ee923c3d-3cf0-4b4b-a075-9422ddcbce1d\",\n                \"code\": \"America/Argentina/Buenos_Aires\",\n                \"name\": \"America/Argentina/Buenos_Aires\",\n                \"order\": 60,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"076f7c33-d968-4c32-8de8-c09f275bff36\",\n                \"code\": \"America/Araguaina\",\n                \"name\": \"America/Araguaina\",\n                \"order\": 59,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a2ef2bbe-e92e-4675-8015-7f86ddb0031c\",\n                \"code\": \"America/Antigua\",\n                \"name\": \"America/Antigua\",\n                \"order\": 58,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f36e2c71-0a6d-4fbc-ba56-82eb919c2215\",\n                \"code\": \"America/Anguilla\",\n                \"name\": \"America/Anguilla\",\n                \"order\": 57,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5c64a841-622d-4801-bbf3-371467d8588e\",\n                \"code\": \"America/Anchorage\",\n                \"name\": \"America/Anchorage\",\n                \"order\": 56,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"85d1ab2f-198c-401e-9c2d-8081094b6691\",\n                \"code\": \"America/Adak\",\n                \"name\": \"America/Adak\",\n                \"order\": 55,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"eec89158-ef81-4173-904f-2586ad9a896a\",\n                \"code\": \"Africa/Windhoek\",\n                \"name\": \"Africa/Windhoek\",\n                \"order\": 54,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f3f30b1b-e154-4d3d-b509-798c857b36f1\",\n                \"code\": \"Africa/Tunis\",\n                \"name\": \"Africa/Tunis\",\n                \"order\": 53,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"940afbe9-6654-4b7b-a5bd-37cbefccb3d3\",\n                \"code\": \"Africa/Tripoli\",\n                \"name\": \"Africa/Tripoli\",\n                \"order\": 52,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d1230941-22cb-4f5e-a8ef-1f3ed8a728b3\",\n                \"code\": \"Africa/Timbuktu\",\n                \"name\": \"Africa/Timbuktu\",\n                \"order\": 51,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"008d5a77-7206-44c6-95d2-24ce7b8c359c\",\n                \"code\": \"Africa/Sao_Tome\",\n                \"name\": \"Africa/Sao_Tome\",\n                \"order\": 50,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"4055f654-b96e-4bb2-99a9-6131c5e50e32\",\n                \"code\": \"Africa/Porto-Novo\",\n                \"name\": \"Africa/Porto-Novo\",\n                \"order\": 49,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"243d8c6c-a528-4e4a-abd0-4bb3e652c7e9\",\n                \"code\": \"Africa/Ouagadougou\",\n                \"name\": \"Africa/Ouagadougou\",\n                \"order\": 48,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"98e1f9bd-6384-4661-a08e-ca2e84ecac39\",\n                \"code\": \"Africa/Nouakchott\",\n                \"name\": \"Africa/Nouakchott\",\n                \"order\": 47,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b7f1acf2-2605-45bd-8cb9-05a85a354552\",\n                \"code\": \"Africa/Niamey\",\n                \"name\": \"Africa/Niamey\",\n                \"order\": 46,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a396adad-240d-4431-8c10-7db6326fde93\",\n                \"code\": \"Africa/Ndjamena\",\n                \"name\": \"Africa/Ndjamena\",\n                \"order\": 45,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"20750944-ecd7-49b4-b89e-b2b6e0346b3a\",\n                \"code\": \"Africa/Nairobi\",\n                \"name\": \"Africa/Nairobi\",\n                \"order\": 44,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a0a1c560-1862-4acb-8f5a-5b30ab2c9e89\",\n                \"code\": \"Africa/Monrovia\",\n                \"name\": \"Africa/Monrovia\",\n                \"order\": 43,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"baa9ceaa-8bf4-49f5-852b-1af15e8122eb\",\n                \"code\": \"Africa/Mogadishu\",\n                \"name\": \"Africa/Mogadishu\",\n                \"order\": 42,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"f20b7d41-ddbf-4b7e-998c-1662c3372821\",\n                \"code\": \"Africa/Mbabane\",\n                \"name\": \"Africa/Mbabane\",\n                \"order\": 41,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a1040b20-9347-4105-9d86-a5c517c68a96\",\n                \"code\": \"Africa/Maseru\",\n                \"name\": \"Africa/Maseru\",\n                \"order\": 40,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"45c66304-6e9a-48ac-89bb-5f67de2d4cfd\",\n                \"code\": \"Africa/Maputo\",\n                \"name\": \"Africa/Maputo\",\n                \"order\": 39,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0da56ad2-edfc-495d-bc3f-49a757045cc2\",\n                \"code\": \"Africa/Malabo\",\n                \"name\": \"Africa/Malabo\",\n                \"order\": 38,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e2206810-13d7-4898-b103-d726a3f6303d\",\n                \"code\": \"Africa/Lusaka\",\n                \"name\": \"Africa/Lusaka\",\n                \"order\": 37,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"e2fd14a7-c67a-49b9-a41c-51732e1911c2\",\n                \"code\": \"Africa/Lubumbashi\",\n                \"name\": \"Africa/Lubumbashi\",\n                \"order\": 36,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"62a90e17-5a41-4cd3-ad56-cce9fae2b359\",\n                \"code\": \"Africa/Luanda\",\n                \"name\": \"Africa/Luanda\",\n                \"order\": 35,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"836aa3e5-9df9-4c70-9573-10705579f37b\",\n                \"code\": \"Africa/Lome\",\n                \"name\": \"Africa/Lome\",\n                \"order\": 34,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"edb86c30-807c-4d6a-9d4a-26edcf5b8c42\",\n                \"code\": \"Africa/Libreville\",\n                \"name\": \"Africa/Libreville\",\n                \"order\": 33,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"73afc078-0979-41c8-93b5-0ef7bb3da30b\",\n                \"code\": \"Africa/Lagos\",\n                \"name\": \"Africa/Lagos\",\n                \"order\": 32,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"70579400-f70c-4126-a582-14fae0d73bb7\",\n                \"code\": \"Africa/Kinshasa\",\n                \"name\": \"Africa/Kinshasa\",\n                \"order\": 31,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"0d5684ef-c41e-4fb6-9964-f020637c8aa5\",\n                \"code\": \"Africa/Kigali\",\n                \"name\": \"Africa/Kigali\",\n                \"order\": 30,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"ec531eea-6dd8-4f72-80b3-6b1cd0d50ade\",\n                \"code\": \"Africa/Khartoum\",\n                \"name\": \"Africa/Khartoum\",\n                \"order\": 29,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5cffc6af-3319-44ca-83e4-5f277c9ebdc0\",\n                \"code\": \"Africa/Kampala\",\n                \"name\": \"Africa/Kampala\",\n                \"order\": 28,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c672fe41-b20f-43db-8a33-5124f086dbc5\",\n                \"code\": \"Africa/Juba\",\n                \"name\": \"Africa/Juba\",\n                \"order\": 27,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7bc26ab9-68e2-46c2-9fa4-53455088679e\",\n                \"code\": \"Africa/Johannesburg\",\n                \"name\": \"Africa/Johannesburg\",\n                \"order\": 26,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a7749914-2b75-4782-8d6b-c8d06c0f7b06\",\n                \"code\": \"Africa/Harare\",\n                \"name\": \"Africa/Harare\",\n                \"order\": 25,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"1fe3d72f-62e3-40dd-a9cc-166cd759d120\",\n                \"code\": \"Africa/Gaborone\",\n                \"name\": \"Africa/Gaborone\",\n                \"order\": 24,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a99ca05e-e14f-408c-a4c0-9b4a19ba2212\",\n                \"code\": \"Africa/Freetown\",\n                \"name\": \"Africa/Freetown\",\n                \"order\": 23,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7c9b7e6a-80fd-47d1-8f5e-802a5e725954\",\n                \"code\": \"Africa/El_Aaiun\",\n                \"name\": \"Africa/El_Aaiun\",\n                \"order\": 22,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"15a23788-6ac9-4f9e-af3f-595cdbab8cff\",\n                \"code\": \"Africa/Douala\",\n                \"name\": \"Africa/Douala\",\n                \"order\": 21,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b2bc5fde-7a20-42bf-9c10-f2452b2c9fca\",\n                \"code\": \"Africa/Djibouti\",\n                \"name\": \"Africa/Djibouti\",\n                \"order\": 20,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"2d648a0b-7056-48ef-a7c8-778ec9032b2e\",\n                \"code\": \"Africa/Dar_es_Salaam\",\n                \"name\": \"Africa/Dar_es_Salaam\",\n                \"order\": 19,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"41c36576-50fa-4ce9-8851-ae6eb247a70f\",\n                \"code\": \"Africa/Dakar\",\n                \"name\": \"Africa/Dakar\",\n                \"order\": 18,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"9f2eedbf-72d5-4aa1-a8db-4456265e9ef6\",\n                \"code\": \"Africa/Conakry\",\n                \"name\": \"Africa/Conakry\",\n                \"order\": 17,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"b01aff64-4945-42b8-b89b-71077b31f0b6\",\n                \"code\": \"Africa/Ceuta\",\n                \"name\": \"Africa/Ceuta\",\n                \"order\": 16,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5b816ade-962c-4b57-95f9-a62326286827\",\n                \"code\": \"Africa/Casablanca\",\n                \"name\": \"Africa/Casablanca\",\n                \"order\": 15,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"82fcb291-58c8-4497-8843-a8bcfcc1d024\",\n                \"code\": \"Africa/Cairo\",\n                \"name\": \"Africa/Cairo\",\n                \"order\": 14,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7c5a5024-9f59-441b-96f9-e02bad82c70a\",\n                \"code\": \"Africa/Bujumbura\",\n                \"name\": \"Africa/Bujumbura\",\n                \"order\": 13,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"de0d5633-f9d0-4b44-b73c-c049c4824f09\",\n                \"code\": \"Africa/Brazzaville\",\n                \"name\": \"Africa/Brazzaville\",\n                \"order\": 12,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"95639f3c-f910-4cae-a080-4cbd56347a21\",\n                \"code\": \"Africa/Blantyre\",\n                \"name\": \"Africa/Blantyre\",\n                \"order\": 11,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5a51cf9a-7922-48c7-948c-44001985b80c\",\n                \"code\": \"Africa/Bissau\",\n                \"name\": \"Africa/Bissau\",\n                \"order\": 10,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"23741bed-039f-491f-b3b8-f59ed07fe71d\",\n                \"code\": \"Africa/Banjul\",\n                \"name\": \"Africa/Banjul\",\n                \"order\": 9,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"d0e8bc5f-ce18-4549-94dd-216b510f7331\",\n                \"code\": \"Africa/Bangui\",\n                \"name\": \"Africa/Bangui\",\n                \"order\": 8,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c7f016e6-1c51-4cde-a042-3db75c2b52b1\",\n                \"code\": \"Africa/Bamako\",\n                \"name\": \"Africa/Bamako\",\n                \"order\": 7,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"8e96945e-32cc-4eb8-8bb7-6f2c005f22e1\",\n                \"code\": \"Africa/Asmera\",\n                \"name\": \"Africa/Asmera\",\n                \"order\": 6,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"14c70a19-ccac-48e8-ac82-12be63bfd2b2\",\n                \"code\": \"Africa/Asmara\",\n                \"name\": \"Africa/Asmara\",\n                \"order\": 5,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"038597ac-7c13-4172-b241-cf374aa9f375\",\n                \"code\": \"Africa/Algiers\",\n                \"name\": \"Africa/Algiers\",\n                \"order\": 4,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"159047c1-f904-4837-883a-6a90ab499765\",\n                \"code\": \"Africa/Addis_Ababa\",\n                \"name\": \"Africa/Addis_Ababa\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3aea6fde-f6e4-4565-bd10-396c9f6423a2\",\n                \"code\": \"Africa/Accra\",\n                \"name\": \"Africa/Accra\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c029de34-56ed-45d4-9bf0-151f60eb9daf\",\n                \"code\": \"Africa/Abidjan\",\n                \"name\": \"Africa/Abidjan\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d177350a-039e-43bf-92b3-3de75193154f\",\n        \"name\": \"rating_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Rating\",\n        \"is_default\": false,\n        \"field_type\": \"rating\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 13,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"integer\",\n            \"target_column\": \"value_integer\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": {\n            \"id\": \"524f5982-39e3-46d2-b9c9-1c77360204d4\",\n            \"min_value\": 1,\n            \"max_value\": 5,\n            \"min_label\": \"Unsatisfied\",\n            \"max_label\": \"Satisfied\",\n            \"meta\": {}\n        },\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"6ee1f649-49bb-49ca-b796-22fc3d5dc7c4\",\n        \"name\": \"price_2\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"price\",\n        \"is_default\": false,\n        \"field_type\": \"money\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 13,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"money\",\n            \"target_column\": \"value_money\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": {\n            \"id\": \"0ef61b09-61e1-41f9-98a4-ba1f4d885193\",\n            \"currency\": \"USD\",\n            \"symbol\": \"$\"\n        }\n    },\n    {\n        \"id\": \"2e6a72b9-06d2-402e-8acd-125ac600c868\",\n        \"name\": \"test\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Test\",\n        \"is_default\": false,\n        \"field_type\": \"checkbox\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 13,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"bool\",\n            \"target_column\": \"value_boolean\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"31c3d6c0-7aed-47d8-bf0a-2b5571b0de28\",\n        \"name\": \"primary_for_sergey_s2_record_1\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for sergey_s2 Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 13,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"1665a083-3ee9-427e-8d50-92ac0fac74be\",\n            \"related_category\": \"0cda4ace-0fbc-40c1-ac24-602fa9af39c0\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"50951435-f6eb-4047-8f14-cc3e8d63df92\",\n        \"name\": \"status_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Status\",\n        \"is_default\": false,\n        \"field_type\": \"status\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 14,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"9a48e5e6-8581-4547-9f01-1242b8e222f5\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {\n                    \"color\": \"#085bee\"\n                },\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"6e1f7adf-96fe-4959-b301-c4e7f9ba2b5b\",\n        \"name\": \"primary_for_sergey_s_record\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Primary for sergey_s Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 14,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"ecc576be-8121-4710-8edc-6032802a221c\",\n            \"related_category\": \"ca611f75-a48c-4ec4-aeaa-dc613b2f9bea\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"df634102-c11a-49af-b556-2789c973981e\",\n        \"name\": \"primary_for_ticket_record_3\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Ticket Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 14,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a28d8490-46bc-4e43-a045-84a314f4053a\",\n            \"related_category\": \"259a9f7a-ce41-4a33-8fa6-518e2da77cbb\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"e547f2b9-e80f-49d2-8fe8-708083b49ddc\",\n        \"name\": \"radio_buttons_1\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"radio buttons\",\n        \"is_default\": false,\n        \"field_type\": \"radio\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 14,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"36efbf6a-fe3d-4115-b2c5-4a24926f694f\",\n                \"code\": \"\",\n                \"name\": \"Option 3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7ae7c30b-3f6c-463e-af88-dda41c18ad87\",\n                \"code\": \"\",\n                \"name\": \"Option 2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"5f12afb7-7321-4835-a5c3-eeeb487e3cbc\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d99a6fab-886b-4abc-917b-b1aacb1d19e9\",\n        \"name\": \"text_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Text\",\n        \"is_default\": false,\n        \"field_type\": \"text\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 15,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"74c52465-4f5d-49d1-ae2b-bec4aae1b16c\",\n        \"name\": \"rating_10\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"rating_10\",\n        \"is_default\": false,\n        \"field_type\": \"rating\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 15,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"integer\",\n            \"target_column\": \"value_integer\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": {\n            \"id\": \"229971bc-e36a-4abc-8793-b601cd46bbf7\",\n            \"min_value\": 1,\n            \"max_value\": 10,\n            \"min_label\": \"Unsatisfied\",\n            \"max_label\": \"Satisfied\",\n            \"meta\": {}\n        },\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"1f5861c4-7612-45b3-97a2-a5f4bbfc3329\",\n        \"name\": \"primary_for_riel's_entity_record\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Primary for Riel's entity Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 15,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"03631599-a803-426f-b351-f82d6e570a54\",\n            \"related_category\": \"996d517b-d32c-4051-8c08-6f5ba1220484\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"3a056207-f8d6-49cc-b4f7-6b1d25f35218\",\n        \"name\": \"additional_for_ticket_records_3\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Ticket Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 15,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a28d8490-46bc-4e43-a045-84a314f4053a\",\n            \"related_category\": \"259a9f7a-ce41-4a33-8fa6-518e2da77cbb\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"e0f2f3d9-5b3b-43ac-b681-174ea4ab9f22\",\n        \"name\": \"relationship_1\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"relationship\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 16,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7fdeca8b-2856-4131-ae57-b51d07af19f0\",\n            \"related_category\": \"fd17bbcb-5b9b-42db-9e77-7d8f29d19b99\",\n            \"related_name\": \"Dima's PL1\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"6ae9da09-5281-45e4-ad85-dbd2ff5dc7a8\",\n        \"name\": \"additional_for_riel's_entity_records\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Additional for Riel's entity Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 16,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"03631599-a803-426f-b351-f82d6e570a54\",\n            \"related_category\": \"996d517b-d32c-4051-8c08-6f5ba1220484\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d5fa97c1-9a24-4b8e-ae92-29d0a7b97700\",\n        \"name\": \"yes/no_question_1\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Yes/No Question\",\n        \"is_default\": false,\n        \"field_type\": \"yesnomaybe\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 16,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"adc0313b-648f-4ac2-a51d-a98b8e34eb89\",\n                \"code\": \"no\",\n                \"name\": \"No\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"483f25ef-d634-416d-aa7e-0ea455fca941\",\n                \"code\": \"yes\",\n                \"name\": \"Yes\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"a473f8f6-2982-457a-b4f2-80fb2acc85a4\",\n        \"name\": \"primary_for_pipe_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for pipe Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 16,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"fd31f16a-fa6b-4dfe-b32e-89099224249e\",\n            \"related_category\": \"dae8de3d-8f59-4065-9ef9-19f1ae32ae11\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"31f2472e-4f7b-4014-bc88-0fbf207e3b68\",\n        \"name\": \"dynamic_tags\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Dynamic Tags\",\n        \"is_default\": false,\n        \"field_type\": \"dynamictags\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 17,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": true,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"c7eb3c0a-eb0b-483b-a44c-6159829dc6c2\",\n                \"code\": \"\",\n                \"name\": \"Barge\",\n                \"order\": 13,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"827fbabd-cabc-4da6-abd7-6001580690d3\",\n                \"code\": \"\",\n                \"name\": \"Coyote\",\n                \"order\": 12,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"9c2984ac-08de-424e-8ad6-42e920eaf8ce\",\n                \"code\": \"\",\n                \"name\": \"Wolf\",\n                \"order\": 11,\n                \"meta\": {},\n                \"count_related\": 1\n            },\n            {\n                \"id\": \"7bde7c1e-81c6-4c6c-b17d-3d5e620658f7\",\n                \"code\": \"\",\n                \"name\": \"Chocolate\",\n                \"order\": 10,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"ca147b57-8bfe-4fc6-a54b-b70b27f0ab44\",\n                \"code\": \"\",\n                \"name\": \"Dynamic Tag 3\",\n                \"order\": 9,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"b3127863-d2fd-42d6-865f-76df4d541f87\",\n                \"code\": \"\",\n                \"name\": \"Tug\",\n                \"order\": 8,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"12d35aa2-9087-430b-bc15-52f281946170\",\n                \"code\": \"\",\n                \"name\": \"Another Tag\",\n                \"order\": 7,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"735935cc-7eb3-4da9-ac86-d62dc5f84bbb\",\n                \"code\": \"\",\n                \"name\": \"Wingo\",\n                \"order\": 6,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"d89154cc-6898-43bc-94c2-a53efc769a66\",\n                \"code\": \"\",\n                \"name\": \"Bingo\",\n                \"order\": 5,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"3aa4e803-353f-47a4-ae55-882ddd5cd0b3\",\n                \"code\": \"\",\n                \"name\": \"Stuart Groovy Tag\",\n                \"order\": 4,\n                \"meta\": {},\n                \"count_related\": 1\n            },\n            {\n                \"id\": \"43e26c88-b713-4268-8430-b4466dd2c508\",\n                \"code\": \"\",\n                \"name\": \"Tag #3\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 1\n            },\n            {\n                \"id\": \"b13b6aa9-5f48-44bc-b5e3-cd8928e33b88\",\n                \"code\": \"\",\n                \"name\": \"Dynamic Tag 2\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"ac38f0cb-1f84-408a-ac79-efd2f33c2fe6\",\n                \"code\": \"\",\n                \"name\": \"Dynamic Tag 1\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 1\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"da032342-0df2-476c-ad41-a030c8ca3d95\",\n        \"name\": \"primary_for_stuarts_objects_record\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Primary for Stuarts Objects Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 17,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"0de6b5c5-e819-4969-84fc-db807bf43102\",\n            \"related_category\": \"05578071-ee18-4f7c-af1a-61a35cb15eb8\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"c37d02ec-6edb-48fb-a20d-328d20d69086\",\n        \"name\": \"primary_for_unit_record_1\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for unit Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 17,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"74e80575-dea7-4e91-b3ef-c5fe89fb90c0\",\n            \"related_category\": \"53c94b01-1943-4e1a-b526-0e54244f79a3\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"27e29366-b689-4845-8493-41fa3b334575\",\n        \"name\": \"status_2\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"status\",\n        \"is_default\": false,\n        \"field_type\": \"status\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 17,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"dde990b4-2a8c-4acd-89ac-911ec42e4798\",\n                \"code\": \"\",\n                \"name\": \"Option 3\",\n                \"order\": 3,\n                \"meta\": {\n                    \"color\": \"#eee908\"\n                },\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"7f38d341-3dc5-4944-b439-0dc9ac293cbc\",\n                \"code\": \"\",\n                \"name\": \"Option 2\",\n                \"order\": 2,\n                \"meta\": {\n                    \"color\": \"#f55f04\"\n                },\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"a3d614de-a364-4896-9757-b752bf9fa1a8\",\n                \"code\": \"\",\n                \"name\": \"Option 1\",\n                \"order\": 1,\n                \"meta\": {\n                    \"color\": \"#dc1422\"\n                },\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"485d7345-9e95-4ecf-8b6c-fd8c39049b10\",\n        \"name\": \"team_selector_1\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"team selector\",\n        \"is_default\": false,\n        \"field_type\": \"selector\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 18,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"1ffa146a-6be1-45c5-8b95-23e19b12b21d\",\n            \"related_category\": null,\n            \"related_name\": null,\n            \"cardinality\": \"many_to_one\",\n            \"fetch_url\": \"team\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d681f612-3b6b-4962-a333-d1a8a39005fe\",\n        \"name\": \"additional_for_stuarts_objects_records\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Additional for Stuarts Objects Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 18,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"0de6b5c5-e819-4969-84fc-db807bf43102\",\n            \"related_category\": \"05578071-ee18-4f7c-af1a-61a35cb15eb8\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d9a5f24d-de7e-4ffc-bbbe-892b2c2da356\",\n        \"name\": \"additional_for_unit_records_1\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for unit Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 18,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"74e80575-dea7-4e91-b3ef-c5fe89fb90c0\",\n            \"related_category\": \"53c94b01-1943-4e1a-b526-0e54244f79a3\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"41c92038-956b-42cb-ad4c-dbdf59a511d3\",\n        \"name\": \"price_$\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Price\",\n        \"is_default\": false,\n        \"field_type\": \"money\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 18,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"money\",\n            \"target_column\": \"value_money\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": {\n            \"id\": \"591cdbf5-c660-4988-a326-a59cd118430b\",\n            \"currency\": \"USD\",\n            \"symbol\": \"$\"\n        }\n    },\n    {\n        \"id\": \"d0f8d5a8-251f-402f-abde-fa71485f8640\",\n        \"name\": \"text_2\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"text\",\n        \"is_default\": false,\n        \"field_type\": \"text\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 19,\n        \"meta\": {\n            \"cols\": 2\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"c35657a9-f7e5-4d0f-89d6-54a3d38cba4a\",\n        \"name\": \"primary_for_wilso_record\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Primary for Wilso Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 19,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"3ce6146a-c681-4656-adf4-2f1f5d4a278e\",\n            \"related_category\": \"c760067e-de28-44e2-a253-d00cb8fc0718\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"2bde795e-6b7d-4cd3-95b6-249f153c703f\",\n        \"name\": \"price_€\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Price €\",\n        \"is_default\": false,\n        \"field_type\": \"money\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 19,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"money\",\n            \"target_column\": \"value_money\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": {\n            \"id\": \"388bf702-3435-4756-bb51-589ac3708605\",\n            \"currency\": \"EUR\",\n            \"symbol\": \"€\"\n        }\n    },\n    {\n        \"id\": \"896bb6cd-7721-450d-9889-46ac181ab1ef\",\n        \"name\": \"primary_for_test_record_1\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for test Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 19,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"adc9e143-746b-4ef6-ba7d-dfe5545dae57\",\n            \"related_category\": \"7ba8dfd9-f2bf-4238-9a40-44683be7998e\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"f142e215-00fa-48c1-a215-a16bd7d55fac\",\n        \"name\": \"additional_for_wilso_records\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Additional for Wilso Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 20,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"3ce6146a-c681-4656-adf4-2f1f5d4a278e\",\n            \"related_category\": \"c760067e-de28-44e2-a253-d00cb8fc0718\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"3a5a96a3-871a-44e9-b3b1-074cb221166f\",\n        \"name\": \"yes/no/maybe_question\",\n        \"category\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"display_name\": \"yes/no/maybe question\",\n        \"is_default\": false,\n        \"field_type\": \"yesnomaybe\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 20,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"76485eb5-2420-423c-b003-3fc4c8568bec\",\n                \"code\": \"maybe\",\n                \"name\": \"Maybe\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"de2470ae-e5de-4fce-905b-281ee1037122\",\n                \"code\": \"no\",\n                \"name\": \"No\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"bb52e555-3f0a-41e0-ba80-a00678ae876f\",\n                \"code\": \"yes\",\n                \"name\": \"Yes\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"3404beea-0c4f-4f8b-a4dd-5dfd87a2a684\",\n        \"name\": \"relationship_for_contacts\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"Relationship for Contacts\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 20,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n            \"related_category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n            \"related_name\": \"Related to Contacts\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"client\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"c54c2b90-d24d-49fa-9019-ffdeb9afe35d\",\n        \"name\": \"primary_for_unit_record_2\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for unit Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 20,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"b018c8e4-8b9f-4353-88c8-903f98eda680\",\n            \"related_category\": \"bc081e6f-ae27-4dcc-8acf-36aaa19571de\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"e26af3c0-3b21-4e97-9771-aee17ade9d7a\",\n        \"name\": \"primary_for_stuarts_pl_record\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Primary for Stuarts PL Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 21,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"e8ff2c43-0316-4e49-bc5a-4d37ee70ce6c\",\n            \"related_category\": \"cacf8b20-5716-406d-aa0d-ccdc4756e4a2\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"9428c96a-15d4-4e27-9788-c83ee3209115\",\n        \"name\": \"relationship_with_custom_object\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"Relationship with Custom Object\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 21,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7fdeca8b-2856-4131-ae57-b51d07af19f0\",\n            \"related_category\": \"e055593f-4e19-4942-8cbf-e10d6fc06296\",\n            \"related_name\": \"Related to Contacts\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"333d80c3-1170-4e1f-9bbe-884fabc36b3c\",\n        \"name\": \"primary_for_(trigger)_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for (Trigger) Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 21,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"d21f4b58-93bc-4d21-9778-21403182dcb5\",\n            \"related_category\": \"1aba94e9-89d1-4f9c-b619-e2eb6b68eb1c\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"08bf9d42-f5f5-4e92-99c3-8afa04b15925\",\n        \"name\": \"all_-_team_selector\",\n        \"category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"display_name\": \"ALL - Team Selector\",\n        \"is_default\": false,\n        \"field_type\": \"selector\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 22,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"1ffa146a-6be1-45c5-8b95-23e19b12b21d\",\n            \"related_category\": null,\n            \"related_name\": null,\n            \"cardinality\": \"many_to_one\",\n            \"fetch_url\": \"team\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"949a1b4b-e4f6-406d-b25e-dd19a08b11ec\",\n        \"name\": \"additional_for_stuarts_pl_records\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Additional for Stuarts PL Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 22,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"e8ff2c43-0316-4e49-bc5a-4d37ee70ce6c\",\n            \"related_category\": \"cacf8b20-5716-406d-aa0d-ccdc4756e4a2\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"2fddb89f-eff7-477e-a60b-4826f517f1d9\",\n        \"name\": \"additional_for_(trigger)_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for (Trigger) Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 22,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"d21f4b58-93bc-4d21-9778-21403182dcb5\",\n            \"related_category\": \"1aba94e9-89d1-4f9c-b619-e2eb6b68eb1c\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"54bfba8f-aade-4a79-9e23-0bbb06ee6087\",\n        \"name\": \"primary_for_unit_record_3\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for unit Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 23,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"13ad01bc-adb8-48d3-b9c3-af050cc52ce7\",\n            \"related_category\": \"3639c379-58f0-4b74-a1b9-d894540f5825\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"aae3f699-f02e-471a-85d0-1c4249d6a3a5\",\n        \"name\": \"primary_for_ticket_record\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Primary for ticket Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 23,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7fdeca8b-2856-4131-ae57-b51d07af19f0\",\n            \"related_category\": \"0fd36fad-aeab-41d6-8e4c-351ec384a8c1\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"7b2f74c7-04b5-47b5-857b-8331f57ce7b3\",\n        \"name\": \"primary_for_son_entity_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Son Entity Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 24,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"41e4d95b-8160-4fe1-b9ac-4cce9c15c4f4\",\n            \"related_category\": \"58a6565f-5a9d-4db6-8148-38fb7a060e74\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"dd2e8e2a-433c-48e9-b879-7d67c2927b4a\",\n        \"name\": \"additional_for_ticket_records\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Additional for ticket Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 24,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": false,\n            \"edit\": false,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7fdeca8b-2856-4131-ae57-b51d07af19f0\",\n            \"related_category\": \"0fd36fad-aeab-41d6-8e4c-351ec384a8c1\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"5415d685-a141-40db-863a-39aff6bc6db1\",\n        \"name\": \"additional_for_son_entity_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Son Entity Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 25,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"41e4d95b-8160-4fe1-b9ac-4cce9c15c4f4\",\n            \"related_category\": \"58a6565f-5a9d-4db6-8148-38fb7a060e74\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"79d5dd19-1193-4186-a0ed-acae8946f249\",\n        \"name\": \"test_field\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Test field\",\n        \"is_default\": false,\n        \"field_type\": \"checkbox\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 25,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"bool\",\n            \"target_column\": \"value_boolean\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"50662496-551f-43ad-9356-9dbe2010bf43\",\n        \"name\": \"realtion\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"realtion\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 26,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"e8ff2c43-0316-4e49-bc5a-4d37ee70ce6c\",\n            \"related_category\": \"cacf8b20-5716-406d-aa0d-ccdc4756e4a2\",\n            \"related_name\": \"name\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"126d90df-b8b7-445d-9b90-40182f03b704\",\n        \"name\": \"primary_for_pipeline/workflow_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Pipeline/Workflow Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 26,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"2e1b3430-9366-4dda-b8fd-0ab4d6c55cfc\",\n            \"related_category\": \"25236f28-75b9-4464-83e1-de556c4f8578\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"e9967301-95c4-4066-89ec-d2e83e67240b\",\n        \"name\": \"additional_for_pipeline/workflow_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Pipeline/Workflow Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 27,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"2e1b3430-9366-4dda-b8fd-0ab4d6c55cfc\",\n            \"related_category\": \"25236f28-75b9-4464-83e1-de556c4f8578\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"a8c4f6ee-dc9d-4da4-a23f-036856969c0e\",\n        \"name\": \"related_to_contacts\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Related to Contacts\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 27,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"01dde087-4ad4-45b3-a297-61c2b796c328\",\n            \"related_category\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n            \"related_name\": \"Relationship for Contacts\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"client\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"3d68c05d-0940-4813-a6d0-8ceb433313e5\",\n        \"name\": \"wield\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Wield\",\n        \"is_default\": false,\n        \"field_type\": \"dynamictags\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 28,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": true,\n            \"allow_relations\": false,\n            \"allow_add\": true,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"7a2dc822-5c0d-434d-8349-e23e60a6cf08\",\n                \"code\": \"\",\n                \"name\": \"test\",\n                \"order\": 4,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"8b2f1418-a695-4296-ad2f-3f8204facfd5\",\n                \"code\": \"\",\n                \"name\": \"Tokens\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"24852c04-ef97-4546-a88d-a481f55639c2\",\n                \"code\": \"\",\n                \"name\": \"Some Money\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": null\n            },\n            {\n                \"id\": \"5127aad7-e49b-43e2-a4cc-149f76f1b845\",\n                \"code\": \"\",\n                \"name\": \"Big Money\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": null\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"a22245ae-4569-4f59-b0ed-0a508b2d3977\",\n        \"name\": \"primary_for_standard_v_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Standard V Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 28,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"0b9b3572-787d-4469-be12-196354afe7cc\",\n            \"related_category\": \"5a376817-7281-427a-80ce-a5696ac7419f\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d8f0faf3-0b02-48ca-b110-3178fdf54c9f\",\n        \"name\": \"additional_for_standard_v_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Standard V Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 29,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"0b9b3572-787d-4469-be12-196354afe7cc\",\n            \"related_category\": \"5a376817-7281-427a-80ce-a5696ac7419f\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"6e8a4b65-317d-4aa2-8297-4931932c5729\",\n        \"name\": \"gender\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"Gender\",\n        \"is_default\": false,\n        \"field_type\": \"dropdown\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 29,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"7e844231-a122-472f-8e48-4855bd087805\",\n                \"code\": \"\",\n                \"name\": \"Shemale\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"c3464175-4e0c-4429-9746-37baa182396c\",\n                \"code\": \"\",\n                \"name\": \"Female\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"30022cab-9cb5-40a7-a956-1dd6569d3581\",\n                \"code\": \"\",\n                \"name\": \"Male\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"8c515fc3-4883-4145-b79f-a78e03a1b5a6\",\n        \"name\": \"test_dropdown_1\",\n        \"category\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"display_name\": \"test dropdown\",\n        \"is_default\": false,\n        \"field_type\": \"dropdown\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 30,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": true,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [\n            {\n                \"id\": \"41c199e7-c0a5-43d4-ae54-ebcddaa109b2\",\n                \"code\": \"\",\n                \"name\": \"blue\",\n                \"order\": 3,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3721dc1d-c40a-49c2-8c05-ea1768cddb43\",\n                \"code\": \"\",\n                \"name\": \"green\",\n                \"order\": 2,\n                \"meta\": {},\n                \"count_related\": 0\n            },\n            {\n                \"id\": \"3f8906af-c8de-42a0-9d55-9baa68f2a532\",\n                \"code\": \"\",\n                \"name\": \"red\",\n                \"order\": 1,\n                \"meta\": {},\n                \"count_related\": 0\n            }\n        ],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"087c0ebb-4e54-4575-8b94-60ee2e4a5c73\",\n        \"name\": \"primary_for_pipeline_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Pipeline Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 30,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"b857e4ac-caba-4476-a1a0-f231b63b8863\",\n            \"related_category\": \"7bb29f51-4d3b-4705-8798-5ae6dfcc2fa2\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"7db8d678-03d2-496f-b53d-2618271474a2\",\n        \"name\": \"additional_for_pipeline_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Pipeline Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 31,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"b857e4ac-caba-4476-a1a0-f231b63b8863\",\n            \"related_category\": \"7bb29f51-4d3b-4705-8798-5ae6dfcc2fa2\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"8024944e-d4c7-4770-8567-d81e76ae1702\",\n        \"name\": \"primary_for_unit_record_4\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for unit Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 32,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"769ebab9-a2c7-4ac9-aa62-fb8ebdf8bb77\",\n            \"related_category\": \"6544f75f-3496-4ebc-88ed-a5c383f656e8\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"51cc6787-7f6c-4080-903d-67b185b658a1\",\n        \"name\": \"additional_for_ticket_records_6\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for ticket Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 33,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a56a2d57-cf0e-4ee9-93c2-8fed90ba64b2\",\n            \"related_category\": \"9dee9ad0-810e-4e72-be24-909e4c7a8f19\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"bf02850f-0a2d-432f-8964-ad7f5453e898\",\n        \"name\": \"primary_for_unit_record_5\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for unit Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 34,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"33347526-a0c8-431d-9588-dba7ed30ede1\",\n            \"related_category\": \"cf364e32-a37e-4f3f-b17b-4c37df795fc2\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"a7e63244-90da-400c-b8a7-af7249ddd5f1\",\n        \"name\": \"additional_for_unit_records_2\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for unit Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 35,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"33347526-a0c8-431d-9588-dba7ed30ede1\",\n            \"related_category\": \"cf364e32-a37e-4f3f-b17b-4c37df795fc2\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"6c80b6d3-2b79-4358-98e8-00be70e7a390\",\n        \"name\": \"primary_for_son_entity_name_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Son Entity Name Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 36,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7bfca0b0-9547-45c5-a565-f730e838d15c\",\n            \"related_category\": \"bd84fcb8-7670-4e30-964c-6ce1b552650f\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"391f0bf6-90d0-47c2-a831-3e3b20ceb95c\",\n        \"name\": \"additional_for_son_entity_name_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Son Entity Name Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 37,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7bfca0b0-9547-45c5-a565-f730e838d15c\",\n            \"related_category\": \"bd84fcb8-7670-4e30-964c-6ce1b552650f\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"dc1cb857-9e7a-4fa9-a9e6-21d82445fae7\",\n        \"name\": \"primary_for_wilsop_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Wilsop Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 38,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"4cd14f9a-2f03-45e7-83e0-445602ef8e3e\",\n            \"related_category\": \"163c6729-8f56-4a89-b277-9438d64bf661\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"5ca20de2-9c0a-42f6-bd8c-a98e4b08bb66\",\n        \"name\": \"additional_for_wilsop_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Wilsop Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 39,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"4cd14f9a-2f03-45e7-83e0-445602ef8e3e\",\n            \"related_category\": \"163c6729-8f56-4a89-b277-9438d64bf661\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"7e2b6afe-6135-4cc1-bce9-90588274775b\",\n        \"name\": \"primary_for_2277_object_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for 2277 Object Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 40,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"de816bd0-4d0d-43a4-bd63-1a4c9c5b9d71\",\n            \"related_category\": \"3df8a0ae-40bc-447b-be89-b4d1ac9e6a3d\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"252f91b2-eed2-4ff7-9ca9-7aad75649406\",\n        \"name\": \"additional_for_2277_object_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for 2277 Object Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 41,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"de816bd0-4d0d-43a4-bd63-1a4c9c5b9d71\",\n            \"related_category\": \"3df8a0ae-40bc-447b-be89-b4d1ac9e6a3d\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d785e1f9-6622-469c-844b-98ba74356b50\",\n        \"name\": \"primary_for_lead_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for Lead Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 42,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"53b40541-5e86-4731-a2be-70a96daa60ff\",\n            \"related_category\": \"211f5979-fa7c-458a-a93d-4fb9504fb24c\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"53dc9574-263b-4ba0-b9ed-3f315e47f997\",\n        \"name\": \"additional_for_lead_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for Lead Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 43,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"53b40541-5e86-4731-a2be-70a96daa60ff\",\n            \"related_category\": \"211f5979-fa7c-458a-a93d-4fb9504fb24c\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"c940a766-4c1c-4e5a-ba04-de1109fd13ae\",\n        \"name\": \"тест_россиян_фиелд\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"тест Россиян Фиелд\",\n        \"is_default\": false,\n        \"field_type\": \"text\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 44,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"str\",\n            \"target_column\": \"value_string\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"d4fccf1a-bd17-47ec-83a4-7535f5e565d6\",\n        \"name\": \"primary_for_room_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for room Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 45,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"9074e695-552a-49fb-b180-65e19ca63da2\",\n            \"related_category\": \"abc7356b-4f5a-4f1a-b2cd-473f5de6fa5e\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"53928d22-f6c8-4cb2-9d25-92df68f9f8f4\",\n        \"name\": \"additional_for_room_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for room Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 46,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"9074e695-552a-49fb-b180-65e19ca63da2\",\n            \"related_category\": \"abc7356b-4f5a-4f1a-b2cd-473f5de6fa5e\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"028f1670-f626-4fb5-9ee3-9af34661bcf1\",\n        \"name\": \"primary_for_name_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for name Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 47,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a4e819fd-b8be-4e7f-a544-1bb5dfa3f823\",\n            \"related_category\": \"c998c48e-8b5b-48ed-be05-3cc1fe0685bf\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"b6ef6ada-bd84-4fc9-ab52-2f82ed3a1857\",\n        \"name\": \"primary_for_2_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for 2 Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 48,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"5ace0899-ee15-475f-9685-898e2ed64ccf\",\n            \"related_category\": \"ef155d97-5017-49ce-b9b3-04df16f8e5df\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"1dbe942a-aa8e-40b5-852a-39df97ee05f6\",\n        \"name\": \"additional_for_2_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for 2 Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 49,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"5ace0899-ee15-475f-9685-898e2ed64ccf\",\n            \"related_category\": \"ef155d97-5017-49ce-b9b3-04df16f8e5df\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"5532dbbf-07df-4fdc-9c9e-49af685c915d\",\n        \"name\": \"primary_for_22_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for 22 Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 50,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"c35b2192-1dcb-4eb9-aa0e-743588d6105d\",\n            \"related_category\": \"c247e8db-334f-45f2-b898-ba7e7cd5d8f5\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"5d9a8720-2ca9-460f-a152-ee06102c0f6d\",\n        \"name\": \"additional_for_22_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for 22 Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 51,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"c35b2192-1dcb-4eb9-aa0e-743588d6105d\",\n            \"related_category\": \"c247e8db-334f-45f2-b898-ba7e7cd5d8f5\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"0dec0528-1ffa-425e-81b1-b2f3b3bab994\",\n        \"name\": \"primary_for_3_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for 3 Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 52,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"4b054629-ddf4-45b4-9038-9bee461615af\",\n            \"related_category\": \"1bd5d100-68ac-4ee4-bc72-326f8c25bd70\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"c0d7287e-90e6-43ae-b334-a1effd0b7870\",\n        \"name\": \"additional_for_3_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for 3 Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 53,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"4b054629-ddf4-45b4-9038-9bee461615af\",\n            \"related_category\": \"1bd5d100-68ac-4ee4-bc72-326f8c25bd70\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"01cedbd3-ab76-4a4e-9a60-cf04a3f01a90\",\n        \"name\": \"primary_for_new_entity_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for new entity Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 54,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"a69d5653-2e91-462a-847b-ef7fadc53687\",\n            \"related_category\": \"1322ee41-5009-452f-9b26-49e16a0e1720\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"c6eff60c-e12d-4a1a-999c-3767fc969f69\",\n        \"name\": \"primary_for_test_entity_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for test entity Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 55,\n        \"meta\": {\n            \"cols\": 1\n        },\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"7678ed0f-5814-472c-93b4-0a736f2195b7\",\n            \"related_category\": \"a51ffc53-cb58-4809-8618-1b78167c0130\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"abb00a46-1b10-4de6-bd70-afd1b5bb0937\",\n        \"name\": \"primary_for_entity_name_test_filters_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for entity name test filters Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 56,\n        \"meta\": {},\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"0a63fbca-e335-4b4d-85cb-99c5884db362\",\n            \"related_category\": \"0a1fda0f-d1df-4d2c-9ceb-23c2d3b08a8a\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"836f3744-7eab-4f03-a372-44449ebbf5bc\",\n        \"name\": \"another_number_field\",\n        \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n        \"display_name\": \"Another Number Field\",\n        \"is_default\": false,\n        \"field_type\": \"integer\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": true,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": true,\n        \"order\": 56,\n        \"meta\": {},\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": false,\n            \"allow_relations\": false,\n            \"allow_add\": false,\n            \"type\": \"integer\",\n            \"target_column\": \"value_integer\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": null,\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"9ddd8c06-c11d-4b8b-abc1-83e64302945c\",\n        \"name\": \"additional_for_entity_name_test_filters_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for entity name test filters Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 57,\n        \"meta\": {},\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"0a63fbca-e335-4b4d-85cb-99c5884db362\",\n            \"related_category\": \"0a1fda0f-d1df-4d2c-9ceb-23c2d3b08a8a\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"a43db8ac-0f56-4e83-b523-d23ab750d793\",\n        \"name\": \"primary_for_ticket_record_6\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for ticket Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 58,\n        \"meta\": {},\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"dd1307d2-05aa-4695-99b4-51c9b8e33124\",\n            \"related_category\": \"e2a73a4b-68b0-415b-91fd-1cb750bb228f\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"efaf9151-7f29-4189-b450-4cbcf47a45a5\",\n        \"name\": \"additional_for_ticket_records_7\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for ticket Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 59,\n        \"meta\": {},\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"dd1307d2-05aa-4695-99b4-51c9b8e33124\",\n            \"related_category\": \"e2a73a4b-68b0-415b-91fd-1cb750bb228f\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"standard\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"9f11e50a-32c5-4f93-9e94-de0e9d9a9159\",\n        \"name\": \"primary_for_a_record\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Primary for a Record\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 60,\n        \"meta\": {},\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"b58b3032-b573-46d8-9385-09f16e916916\",\n            \"related_category\": \"69c670ec-b611-4d7e-9be4-14a68b1ded0b\",\n            \"related_name\": \"Primary Contacts Record\",\n            \"cardinality\": \"one_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    },\n    {\n        \"id\": \"9fd88a46-16c7-4fc3-85b6-fa4a4008ab3c\",\n        \"name\": \"additional_for_a_records\",\n        \"category\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"display_name\": \"Additional for a Records\",\n        \"is_default\": false,\n        \"field_type\": \"relationship\",\n        \"is_required\": false,\n        \"is_read_only\": false,\n        \"is_hidden\": false,\n        \"is_deletable\": false,\n        \"is_hideable\": true,\n        \"allows_nulls\": true,\n        \"allows_empty\": false,\n        \"order\": 61,\n        \"meta\": {},\n        \"properties\": {\n            \"allow_options\": false,\n            \"allow_multiple\": true,\n            \"allow_relations\": true,\n            \"allow_add\": false,\n            \"type\": \"UUID\",\n            \"target_column\": \"value_uuid\"\n        },\n        \"access\": {\n            \"view\": true,\n            \"edit\": true,\n            \"remove\": false\n        },\n        \"options\": [],\n        \"relation\": {\n            \"related_object\": \"b58b3032-b573-46d8-9385-09f16e916916\",\n            \"related_category\": \"69c670ec-b611-4d7e-9be4-14a68b1ded0b\",\n            \"related_name\": \"Additional Contacts Records\",\n            \"cardinality\": \"many_to_many\",\n            \"fetch_url\": \"pipeline\"\n        },\n        \"rating\": null,\n        \"phonenumber_options\": null,\n        \"money_options\": null\n    }\n]"}],"_postman_id":"953be153-4959-4ca5-af50-a0a0856f8e4b"},{"name":"Retrieve a Specific Contact Field","id":"b5192ec5-c0d1-43f9-8f8a-961b19754204","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/client/fields/{{field_id}}","urlObject":{"path":["client","fields","{{field_id}}"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"with_fields","value":"true"}],"variable":[]}},"response":[{"id":"75a46507-61bf-447f-8a8e-6d8f3e1952e3","name":"Retrieve a Specific Contact Field","originalRequest":{"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":{"raw":"{{base_url}}/client/fields/f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce","host":["{{base_url}}"],"path":["client","fields","f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce"],"query":[{"key":"with_fields","value":"true","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:09:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"11"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"f6cb1b65-9cd0-48c2-80c4-e0ecc0bf82ce\",\n    \"name\": \"another_text_field\",\n    \"category\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n    \"display_name\": \"Another Text Field\",\n    \"is_default\": false,\n    \"field_type\": \"text\",\n    \"is_required\": false,\n    \"is_read_only\": false,\n    \"is_hidden\": false,\n    \"is_deletable\": true,\n    \"is_hideable\": true,\n    \"allows_nulls\": true,\n    \"allows_empty\": true,\n    \"order\": 1,\n    \"meta\": {\n        \"cols\": 1\n    },\n    \"properties\": {\n        \"allow_options\": false,\n        \"allow_multiple\": false,\n        \"allow_relations\": false,\n        \"allow_add\": false,\n        \"type\": \"str\",\n        \"target_column\": \"value_string\"\n    },\n    \"access\": {\n        \"view\": true,\n        \"edit\": true,\n        \"remove\": false\n    },\n    \"options\": [],\n    \"relation\": null,\n    \"rating\": null,\n    \"phonenumber_options\": null,\n    \"money_options\": null\n}"}],"_postman_id":"b5192ec5-c0d1-43f9-8f8a-961b19754204"},{"name":"Retrieve All Field Options","id":"cbbe78e9-577d-4dd0-98f0-88b283cd9ad0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/field-option","urlObject":{"path":["field-option"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cbbe78e9-577d-4dd0-98f0-88b283cd9ad0"},{"name":"Retrieve All Options for a Specific Field","id":"d2850799-79c7-4124-a6ac-e5f03350a00f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/field/{{Field_ID}}/options","urlObject":{"path":["field","{{Field_ID}}","options"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"with_count","value":"true"}],"variable":[]}},"response":[{"id":"44731e6f-12cc-4077-b874-114c9d1115bd","name":"Retrieve All Options for a Specific Field","originalRequest":{"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":{"raw":"{{base_url}}/client/fields/{{field_id}}/options","host":["{{base_url}}"],"path":["client","fields","{{field_id}}","options"],"query":[{"key":"with_count","value":"true","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:22:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"6fb0cb5a-0763-451b-a354-6b1fcb3abce7\",\n        \"code\": \"\",\n        \"name\": \"Option 1\",\n        \"order\": 1,\n        \"meta\": {},\n        \"count_related\": 0\n    },\n    {\n        \"id\": \"5538fe64-8f24-46e4-abf3-16e5e16fb8e9\",\n        \"code\": \"\",\n        \"name\": \"Option 2\",\n        \"order\": 2,\n        \"meta\": {},\n        \"count_related\": 0\n    },\n    {\n        \"id\": \"3450c130-1465-4a45-8915-7279de557330\",\n        \"code\": \"\",\n        \"name\": \"Option 3\",\n        \"order\": 3,\n        \"meta\": {},\n        \"count_related\": 0\n    }\n]"}],"_postman_id":"d2850799-79c7-4124-a6ac-e5f03350a00f"},{"name":"Delete Contact Fields","id":"a4da81c4-b62b-4316-8d0a-a2a993ddb0c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"}],"url":"{{base_url}}/client/fields/{{field_id}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","name":"Contact Fields","type":"folder"}},"urlObject":{"path":["client","fields","{{field_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"1d7c359c-9c2e-4527-9482-ac41d3771860","name":"Delete Contact Fields","originalRequest":{"method":"DELETE","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"}],"url":"{{base_url}}/client/fields/da1eb891-60cd-4940-bbac-75ae0a12e585"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 19 May 2021 19:23:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"189"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVwcGSgiAAANAvcga00A4dyMRcw02KKC-Om6KtWooZ5tfv7Hsl_rcpOyGeqcqNmJFbeXuLZ6-sKqLsNPWEZ-HjXCcoYFN4BQ22M1cOR6jhANvHqFxfHY5d0d6iwCcE5bGUDWZ3KGeReIWGwrS-DD4hsGdhNC6Cb9m5bSLkNPdLh0blzof3sdBmihPeonC8fArd1VvHJDiTNT6pbBLDKzU3skkr1GLwWXqbxRv9vkVi-8oN-iugMf5BK_4I9vXd6DzH3OImeXVWmaNB-HTU1qypQ072IdcqApTlqyeJ-eVMlpURVpSdX8BGfA894PLDyvHkbm7nwqdCr9d_YBZhAQ:1ljRmq:0Y5tALAzZY4Unt_oL2izj59p4KQ; Domain=staging.kizen.com; expires=Thu, 19 May 2022 19:23:20 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a4da81c4-b62b-4316-8d0a-a2a993ddb0c0"}],"id":"8001e31c-6d94-4cec-93c2-9415bf0ef4a9","_postman_id":"8001e31c-6d94-4cec-93c2-9415bf0ef4a9","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","name":"Contact Fields","type":"folder"}}},{"name":"Categories","item":[{"name":"Retrieve All Field Categories","id":"e5956ac5-271f-4b8f-b0f6-4e5769345313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/client/categories","urlObject":{"path":["client","categories"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"9361c728-011d-41b1-9fe6-946d0a994065","name":"Retrieve All Field Categories","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/client/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:26:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"3"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"a39a9010-c0a8-48c0-91cc-c8acb3bb6113\",\n        \"name\": \"Contact Info\",\n        \"order\": 1,\n        \"meta\": {}\n    },\n    {\n        \"id\": \"73c699e6-773e-4a11-a7ac-ed5ddb8ffcc0\",\n        \"name\": \"Riel's Category\",\n        \"order\": 2,\n        \"meta\": {}\n    },\n    {\n        \"id\": \"ef973c67-8095-4a39-b522-57d5a4c70ea4\",\n        \"name\": \"All Fields\",\n        \"order\": 3,\n        \"meta\": {}\n    },\n    {\n        \"id\": \"bed15bc2-e1f4-42f5-baf4-03a91afb6b31\",\n        \"name\": \"junk\",\n        \"order\": 4,\n        \"meta\": {}\n    },\n    {\n        \"id\": \"43579145-236c-4254-85ef-3fb513a8e06f\",\n        \"name\": \"Son category\",\n        \"order\": 5,\n        \"meta\": {}\n    },\n    {\n        \"id\": \"f5ba9f09-e0db-4490-8764-f568185b734d\",\n        \"name\": \"Another one\",\n        \"order\": 6,\n        \"meta\": {}\n    },\n    {\n        \"id\": \"29e79046-0173-4274-91d8-85e322bea041\",\n        \"name\": \"KZN-2775 testing\",\n        \"order\": 7,\n        \"meta\": {}\n    }\n]"}],"_postman_id":"e5956ac5-271f-4b8f-b0f6-4e5769345313"},{"name":"Delete Field Category","id":"1b4c7dde-fd3c-460e-b281-3d619030b5d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/client/categories/{{client_category_id}}","urlObject":{"path":["client","categories","{{client_category_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"6202e320-1f90-49e1-ac2c-8535aa6146b9","name":"Delete Field Category","originalRequest":{"method":"DELETE","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"}],"url":"{{base_url}}/client/categories/c02f0574-6a57-473d-ab82-a0020e9e0e3f"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 19 May 2021 19:27:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"9"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1b4c7dde-fd3c-460e-b281-3d619030b5d6"},{"name":"Create Field Category","id":"1c5b31d4-db42-4f01-93dc-f15a89fee018","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"content-type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Category c\"\n}"},"url":"{{base_url}}/client/categories","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","name":"Contact Fields","type":"folder"}},"urlObject":{"path":["client","categories"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d6aa9a92-31e3-4bc1-a0b4-df9c68b407d1","name":"Create Field Category","originalRequest":{"method":"POST","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"content-type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Category c\"\n}"},"url":"{{base_url}}/client/categories"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:28:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"6"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVwUtygjAAANATOYOABRYu-AYSBLXEiBsHkhj5KEigYXr6Tt8T7j9PjKQuem36mIMBrTHmv0-CokrS6CXc3kK-PXkng3GgW7dLfgzsXG7p2oXfb4ENV_XxvRVnV-mYoCKUYJeYLqs9ZdOv_PDsLYVINC_LAm10IDHtWhNXpibiBbkYzqHJBn4C9TX1k2MbrinJruXdqGfQsPHUeGjshM7r7BM4LMflzr9pG3-KUxXEjrPIyyNp1tv01oV2TqJoKwRmvHpx9nMFAfRTWAScrtlro4EJPyjp9c58yH75bssdcOgQfNAmLbdlxmheq3sFm0bCuVWlhE4xiP3-D1H4YbU:1ljRrf:icpmEswW1XJmSLkPQZl7fagEPS4; Domain=staging.kizen.com; expires=Thu, 19 May 2022 19:28:19 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"266f2821-2ecc-4354-a6b6-8cbf939172a6\",\n    \"name\": \"Category c\",\n    \"order\": 8,\n    \"meta\": {}\n}"}],"_postman_id":"1c5b31d4-db42-4f01-93dc-f15a89fee018"}],"id":"73427c0d-36af-4b70-9e6d-e02d734eff35","description":"<p>Categories are used to organize specific fields that are alike into one area under a contact record. </p>\n","_postman_id":"73427c0d-36af-4b70-9e6d-e02d734eff35","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","name":"Contact Fields","type":"folder"}}}],"id":"8962eeb3-0d49-420f-8c99-6996d71f3d71","description":"<p>Contact Fields are used inside a contact record to record something about a contact. These include default fields such as email, first name, and last name and custom fields that are specific to your account. </p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"8962eeb3-0d49-420f-8c99-6996d71f3d71"},{"name":"Custom Objects","item":[{"name":"Create Custom Object (Pipeline)","id":"057559d8-a64c-4cc6-b1b8-91355dbedfdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"object_type\": \"pipeline\",\n    \"object_name\": \"Enterprise Sales Pipeline\",\n    \"entity_name\": \"Deal\",\n    \"has_commerce_data\": true,\n    \"default_on_activities\": true,\n    \"related_objects\": [\n        {\n            \"related_object\": \"85ff1c77-ebd7-4b12-9f83-05fc1d29e987\",\n            \"relation_type\": \"primary\"\n        }\n    ],\n    \"meta\": {\n        \"cols\": 2\n    },\n    \"reasons_lost\": [\n        {\"name\": \"Missing Features\"}\n    ],\n    \"pipeline\": {\n        \"track_entity_value\": true,\n        \"include_percentage_to_close\": true,\n        \"use_ai_to_update_percentage\": true,\n        \"stages\": [\n            {\"name\": \"Marketing Qualified Lead\", \"status\": \"open\", \"chance_to_close_percentage\": 50, \"order\": 1},\n            {\"name\": \"Opportunity\", \"status\": \"open\", \"chance_to_close_percentage\": 50, \"order\": 2}\n        ]\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects","urlObject":{"path":["custom-objects"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"with_fields","value":"true"}],"variable":[]}},"response":[{"id":"525aed5a-5883-45e4-baa7-ac4422d1373d","name":"Create Standard Object","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"object_type\": \"standard\",\n    \"object_name\": \"Apartment\",\n    \"entity_name\": \"Unit\",\n    \"has_commerce_data\": true,\n    \"default_on_activities\": true,\n    \"related_objects\": [\n        {\n            \"related_object\": \"85ff1c77-ebd7-4b12-9f83-05fc1d29e987\",\n            \"relation_type\": \"primary\"\n        }\n    ],\n    \"meta\": {\n        \"cols\": 2\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"{{API_URL}}/custom-objects","host":["{{API_URL}}"],"path":["custom-objects"],"query":[{"key":"with_fields","value":"true","disabled":true}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5306abc4-ec42-42da-b0b3-f87915d2cb98","name":"Create Pipeline Object","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"object_type\": \"pipeline\",\n    \"object_name\": \"Enterprise Sales Pipeline\",\n    \"entity_name\": \"Deal\",\n    \"has_commerce_data\": true,\n    \"default_on_activities\": true,\n    \"related_objects\": [\n        {\n            \"related_object\": \"85ff1c77-ebd7-4b12-9f83-05fc1d29e987\",\n            \"relation_type\": \"primary\"\n        }\n    ],\n    \"meta\": {\n        \"cols\": 2\n    },\n    \"reasons_lost\": [\n        {\"id\": \"<option_id>\", \"name\": \"Competitor was cheaper\"},\n        {\"name\": \"Missing Features\"}\n    ],\n    \"pipeline\": {\n        \"track_entity_value\": true,\n        \"include_percentage_to_close\": true,\n        \"use_ai_to_update_percentage\": true,\n        \"stages\": [\n            {\"name\": \"Marketing Qualified Lead\", \"status\": \"open\", \"chance_to_close_percentage\": 50, \"order\": 1},\n            {\"name\": \"Opportunity\", \"status\": \"open\", \"chance_to_close_percentage\": 50, \"order\": 2}\n        ]\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"{{API_URL}}/custom-objects","host":["{{API_URL}}"],"path":["custom-objects"],"query":[{"key":"with_fields","value":"true","disabled":true}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"057559d8-a64c-4cc6-b1b8-91355dbedfdd"},{"name":"Create Custom Object (Standard)","id":"f2174ad5-e006-4b2e-8150-f6315db87dea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"object_type\": \"standard\",\n    \"object_name\": \"Apartment\",\n    \"entity_name\": \"Unit\",\n    \"has_commerce_data\": true,\n    \"default_on_activities\": true,\n    \"related_objects\": [\n        {\n            \"related_object\": \"85ff1c77-ebd7-4b12-9f83-05fc1d29e987\",\n            \"relation_type\": \"primary\"\n        }\n    ],\n    \"meta\": {\n        \"cols\": 2\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects","urlObject":{"path":["custom-objects"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"with_fields","value":"true"}],"variable":[]}},"response":[],"_postman_id":"f2174ad5-e006-4b2e-8150-f6315db87dea"},{"name":"Update Custom Object","id":"45a41b7b-28c2-4841-b62a-a8bbdab55e19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"object_type\": \"pipeline\",\n    \"object_name\": \"Enterprise Sales Pipeline\",\n    \"entity_name\": \"Deal\",\n    \"has_commerce_data\": true,\n    \"default_on_activities\": true,\n    \"related_objects\": [\n        {\n            \"related_object\": \"85ff1c77-ebd7-4b12-9f83-05fc1d29e987\",\n            \"relation_type\": \"primary\"\n        }\n    ],\n    \"meta\": {\n        \"cols\": 2\n    },\n    \"reasons_lost\": [\n        {\"name\": \"Missing Features\"}\n    ],\n    \"pipeline\": {\n        \"track_entity_value\": true,\n        \"include_percentage_to_close\": true,\n        \"use_ai_to_update_percentage\": true,\n        \"stages\": [\n            {\"name\": \"Marketing Qualified Lead\", \"status\": \"open\", \"chance_to_close_percentage\": 50, \"order\": 1},\n            {\"name\": \"Opportunity\", \"status\": \"open\", \"chance_to_close_percentage\": 50, \"order\": 2}\n        ]\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}","urlObject":{"path":["custom-objects","{{object_id}}"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"with_fields","value":"true"}],"variable":[]}},"response":[],"_postman_id":"45a41b7b-28c2-4841-b62a-a8bbdab55e19"},{"name":"List Custom Objects","id":"87ca61f1-2cf6-4df5-8eb1-b1398acd8f31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects","urlObject":{"path":["custom-objects"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"87ca61f1-2cf6-4df5-8eb1-b1398acd8f31"},{"name":"Get Custom Object Detail","id":"464f01aa-2924-490c-aaca-379be2d5d914","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}","urlObject":{"path":["custom-objects","{{object_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"464f01aa-2924-490c-aaca-379be2d5d914"},{"name":"List Objects that allow relations","id":"4d8e8f61-1b90-4fcc-a219-0d1d5b021e6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/allowed_relations","urlObject":{"path":["custom-objects","allowed_relations"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d8e8f61-1b90-4fcc-a219-0d1d5b021e6c"},{"name":"Get Client Custom Object","id":"90421d8d-ee0c-42fd-b18a-1edd1201a61f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/client/custom-object","urlObject":{"path":["client","custom-object"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"90421d8d-ee0c-42fd-b18a-1edd1201a61f"},{"name":"Delete Custom Object","id":"4718386c-f1e2-4540-87c1-8453f4872ace","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}","urlObject":{"path":["custom-objects","{{object_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4718386c-f1e2-4540-87c1-8453f4872ace"}],"id":"c584f38a-54a6-413b-bc3a-0624f5421c41","description":"<h1 id=\"custom-object-api\">Custom Object API</h1>\n<p>Custom objects are entities that the user can create that are part of the domain of the business, for example: Pets, Apartment, Company, Deals and so on…\nIn order to create a  custom object we’ll allow the user to select object name, the type of object (standard or pipeline) and based on those choices, enable other properties on it.</p>\n<p>You can create Standard and Pipeline types via <code>/custom-objects</code> url.</p>\n<h2 id=\"creating-object\">Creating object</h2>\n<p><code>POST /custom-objects</code></p>\n<h3 id=\"standard-object\">Standard object</h3>\n<p>Standard objects are those objects that do not have special treatment, for example, an Apartment object.  You can create a standard object by passing <code>standard</code> as <code>object_type</code>.</p>\n<p><strong>Request Payload</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>type</th>\n<th>required</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>object_type</td>\n<td>choices(str)</td>\n<td>yes</td>\n<td>standard or pipeline</td>\n</tr>\n<tr>\n<td>object_name</td>\n<td>str</td>\n<td>yes</td>\n<td>name of the object, i.e. Apartment</td>\n</tr>\n<tr>\n<td>entity_name</td>\n<td>str</td>\n<td>yes</td>\n<td>name of the entity, i.e. Unit</td>\n</tr>\n<tr>\n<td>has_commerce_data</td>\n<td>bool</td>\n<td>yes</td>\n<td>if true, object will include commerce data</td>\n</tr>\n<tr>\n<td>default_on_activities</td>\n<td>bool</td>\n<td>yes</td>\n<td>if true, object will appear on activities</td>\n</tr>\n<tr>\n<td>related_objects</td>\n<td>*list(object)</td>\n<td>no</td>\n<td>adds option to relate to other objects</td>\n</tr>\n<tr>\n<td>meta</td>\n<td>object</td>\n<td>no</td>\n<td>stores any data, for example, layout customization</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><code>related_objects</code> format</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>type</th>\n<th>required</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>related_object</td>\n<td>UUID</td>\n<td>yes</td>\n<td>id of the related object</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td>can be taken from <code>GET /custom-objects/allowed_relations</code></td>\n</tr>\n<tr>\n<td>relation_type</td>\n<td>choices(str)</td>\n<td>yes</td>\n<td>primary or additional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Sample Payload</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"object_type\": \"standard\",\n    \"object_name\": \"Apartment\",\n    \"entity_name\": \"Unit\",\n    \"has_commerce_data\": true,\n    \"default_on_activities\": true,\n    \"related_objects\": [\n        {\"related_object\": \"&lt;UUID&gt;\", \"relation_type\": \"primary\"}\n    ],\n    \"meta\": {\n        \"cols\": 2\n    }\n}\n</code></pre>\n<h3 id=\"pipeline-object\">Pipeline object</h3>\n<p>Pipeline objects are those objects that has stages like a Deal. All of the data in creating standard object payload is also applicable in pipeline object.  Pipeline object requires additional data in the payload.</p>\n<p><strong>Request Payload</strong></p>\n<ul>\n<li>Payload from standard object plus data below</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>type</th>\n<th>required</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reasons_lost</td>\n<td>**list(object)</td>\n<td>no</td>\n<td>creates dynamictags field that stores reasons lost</td>\n</tr>\n<tr>\n<td>pipeline</td>\n<td>*object</td>\n<td>yes</td>\n<td>pipeline data, i.e. stages</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><code>reasons_lost</code> format</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>type</th>\n<th>required</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>UUID</td>\n<td>no</td>\n<td>if supplied, it will get the existing value</td>\n</tr>\n<tr>\n<td>name</td>\n<td>str</td>\n<td>yes</td>\n<td>value for reasons lost</td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><code>pipeline</code> format</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>type</th>\n<th>required</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>stages</td>\n<td>*list(object)</td>\n<td>yes</td>\n<td>stages data</td>\n</tr>\n<tr>\n<td>track_entity_value</td>\n<td>bool</td>\n<td>yes</td>\n<td>adds Price-type field to the object</td>\n</tr>\n<tr>\n<td>include_percentage_to_close</td>\n<td>bool</td>\n<td>yes</td>\n<td></td>\n</tr>\n<tr>\n<td>use_ai_to_update_percentage</td>\n<td>bool</td>\n<td>yes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><ul>\n<li><code>stages</code> format</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>type</th>\n<th>required</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>str</td>\n<td>yes</td>\n<td>name of the stage</td>\n</tr>\n<tr>\n<td>status</td>\n<td>choices(str)</td>\n<td>yes</td>\n<td>open, won, lost</td>\n</tr>\n<tr>\n<td>chance_to_close_percentage</td>\n<td>decimal</td>\n<td>no</td>\n<td></td>\n</tr>\n<tr>\n<td>order</td>\n<td>int</td>\n<td>yes</td>\n<td>the order of stages</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Sample Payload</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"object_type\": \"pipeline\",\n    \"object_name\": \"Enterprise Sales Pipeline\",\n    \"entity_name\": \"Deal\",\n    \"has_commerce_data\": true,\n    \"default_on_activities\": true,\n    \"related_objects\": [\n        {\"related_object\": \"&lt;UUID&gt;\", \"relation_type\": \"primary\"}\n    ],\n    \"meta\": {\n        \"cols\": 2\n    },\n    \"reasons_lost\": [\n        {\"id\": \"&lt;option_id&gt;\", \"name\": \"Competitor was cheaper\"},\n        {\"name\": \"Missing Features\"}\n    ],\n    \"pipeline\": {\n        \"track_entity_value\": true,\n        \"include_percentage_to_close\": true,\n        \"use_ai_to_update_percentage\": true,\n        \"stages\": [\n            {\"name\": \"Marketing Qualified Lead\", \"status\": \"open\", \"chance_to_close_percentage\": 50, \"order\": 1},\n            {\"name\": \"Opportunity\", \"status\": \"open\", \"chance_to_close_percentage\": 100, \"order\": 2},\n        ]\n    }\n}\n</code></pre>\n<h2 id=\"editing-object\">Editing object</h2>\n<p>Editing object is similar to creating object, but the url and request method is different:</p>\n<p><code>PATCH /custom-object/&lt;object_id&gt;</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"object_name\": \"New Object Name\",\n    \"meta\": {\n        \"cols\": 1\n    },\n    \"default_on_activities\": false\n}\n</code></pre>\n<p>The payload is the same and you can pass partial data you need to update.  There are several cases where in you do a different request to update, for example stages.  You can see details below.</p>\n<h3 id=\"adding-new-stage\">Adding new stage</h3>\n<p>Tnew stagehe payload is the same on adding stages during object creation.  See <code>stages</code> format above.</p>\n<p><code>POST /pipelines/&lt;object_id&gt;/stages</code></p>\n<p><strong>Sample Payload</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"name\": \"Stage 1\",\n    \"status\": \"won\",\n    \"chance_to_close_percentage\": 50\n}\n</code></pre>\n<h3 id=\"removing-stage\">Removing stage</h3>\n<p>When you remove a stage, you need to set a new stage for the deals to be moved to that new stage.</p>\n<p><code>POST /pipelines/&lt;object_id&gt;/stages/remove-stage</code></p>\n<p><strong>Sample Payload</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"id\": \"&lt;stage_id_to_be_removed&gt;\",\n    \"new_stage_id\": \"&lt;stage_id_where_the_deals_are_moved&gt;\"\n}\n</code></pre>\n<h2 id=\"list-objects\">List objects</h2>\n<p>You can get the list of objects via <code>GET /custom-object?ordering=entity_name&amp;is_custom=True</code>.  The endpoint supports ordering by the following values:</p>\n<ol>\n<li>entity_name</li>\n<li>object_name</li>\n<li>object_type</li>\n<li>created</li>\n<li>updated</li>\n<li>number_of_records</li>\n<li>total_pipeline_value</li>\n</ol>\n<p>You can also filter with the following:</p>\n<ol>\n<li>object_name -- str</li>\n<li>is_custom -- bool</li>\n<li>object_type -- standard or pipeline</li>\n<li>default_on_activities -- bool</li>\n</ol>\n","event":[{"listen":"prerequest","script":{"id":"96685b2f-4d64-421e-9af7-e239825b471a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b5a2c8f2-324f-4b7f-828b-b4a225eb4cd2","type":"text/javascript","exec":[""]}}],"_postman_id":"c584f38a-54a6-413b-bc3a-0624f5421c41"},{"name":"Custom Object Fields","item":[{"name":"Field Categories","item":[{"name":"List categories","id":"a1c4975f-e6b3-44fb-9813-9c13e58986fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/fcustom-objects/{{object_id}}/categories","urlObject":{"path":["fcustom-objects","{{object_id}}","categories"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1c4975f-e6b3-44fb-9813-9c13e58986fb"},{"name":"Add category","id":"340f91b8-4dc3-44db-a4e3-356ba5837c6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"New category\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{objectl_id}}/categories","urlObject":{"path":["custom-objects","{{objectl_id}}","categories"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"340f91b8-4dc3-44db-a4e3-356ba5837c6f"},{"name":"Update category","id":"fd65aeee-be54-450a-bc88-90bbd9cc546a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test update\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/categories/{{category_id}}","urlObject":{"path":["custom-objects","{{object_id}}","categories","{{category_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd65aeee-be54-450a-bc88-90bbd9cc546a"},{"name":"Delete category","id":"d304df42-4d4b-4af7-ba25-f8f518bfd249","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"New category\"\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/categories/{{category_id}}","urlObject":{"path":["custom-objects","{{object_id}}","categories","{{category_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d304df42-4d4b-4af7-ba25-f8f518bfd249"}],"id":"50281f05-7e81-4f7c-ac20-9f7bc62eef48","_postman_id":"50281f05-7e81-4f7c-ac20-9f7bc62eef48","description":""},{"name":"List fields","id":"9f3ee3fe-e962-4524-855a-92573ff8c7c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/fields/search","urlObject":{"path":["custom-objects","{{object_id}}","fields","search"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f3ee3fe-e962-4524-855a-92573ff8c7c8"},{"name":"Add Standard Field","id":"0daf7ba7-36b6-4997-a44f-0234c6de33f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"display_name\": \"Field Name Display\",\n    \"field_type\": \"money\",\n    \"money_options\": {\n        \"currency\": \"USD\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/fields","urlObject":{"path":["custom-objects","{{object_id}}","fields"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0daf7ba7-36b6-4997-a44f-0234c6de33f6"},{"name":"Add Relationship Field","id":"36c2ba82-71b4-4c52-a674-323264b715fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"display_name\": \"Field Name Display\",\n    \"field_type\": \"relationship\",\n    \"relations\": {\n        \"related_object\": \"{{custom_object_id}}\",\n            \"related_category\": \"{{related_category_id}}\",\n            \"related_name\": \"related name\",\n            \"cardinality\": \"many_to_many\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/fields","urlObject":{"path":["custom-objects","{{object_id}}","fields"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"36c2ba82-71b4-4c52-a674-323264b715fb"},{"name":"Update Field","id":"42b72e38-7a5c-40ad-ba2c-e9e1f89cb768","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"display_name\": \"Field Name Display\",\n    \"field_type\": \"money\",\n    \"money_options\": {\n        \"currency\": \"USD\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/fields/{{field_id}}","urlObject":{"path":["custom-objects","{{object_id}}","fields","{{field_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"42b72e38-7a5c-40ad-ba2c-e9e1f89cb768"},{"name":"Delete Field","id":"98b2ebbf-e0df-4d85-b903-9df2fa2f84ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/fields/{{field_id}}","urlObject":{"path":["custom-objects","{{object_id}}","fields","{{field_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"98b2ebbf-e0df-4d85-b903-9df2fa2f84ec"}],"id":"a755e971-5956-4b5c-9c9f-12f26077be3e","event":[{"listen":"prerequest","script":{"id":"af26cc54-2011-4db3-8a7b-1bea291a32ae","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"32a5bfe5-180a-4f89-827a-0483127168a7","type":"text/javascript","exec":[""]}}],"_postman_id":"a755e971-5956-4b5c-9c9f-12f26077be3e","description":""},{"name":"Custom Object Records","item":[{"name":"List Object Records","id":"feea234a-1f86-4d32-9c16-3623bef23a62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/entity-records","description":"<p>Here are the possible values for \"ordering\" parameter:</p>\n<ul>\n<li>name</li>\n<li>created</li>\n<li>owner</li>\n<li> - This is the UUID4 of a custom field in the custom object that is being sorted. If the UUID4 doesn’t belong to any custom field in the object, the endpoint must sort by name</li>\n</ul>\n","urlObject":{"path":["custom-objects","{{object_id}}","entity-records"],"host":["{{API_URL}}"],"query":[{"disabled":true,"key":"ordering","value":"created"}],"variable":[]}},"response":[{"id":"70c63d61-49cb-40ce-9e91-441c5d54ef63","name":"List pipeline records","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/pipelines/{{pipeline_id}}/records"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7c17600a-b007-4fe7-9625-c32f81b9b152","name":"Order by name Copy","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{API_URL}}/field-model/{{model_id}}/records?ordering=name","host":["{{API_URL}}"],"path":["field-model","{{model_id}}","records"],"query":[{"key":"ordering","value":"name","type":"text"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"dc2ceaca-7174-4c40-8a33-462b08048419","name":"Specify fields","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"field_ids\": [\"{{field_id}}\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{API_URL}}/field-model/{{model_id}}/records","host":["{{API_URL}}"],"path":["field-model","{{model_id}}","records"],"query":[{"key":"ordering","value":"name","disabled":true}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"feea234a-1f86-4d32-9c16-3623bef23a62"},{"name":"Create standard object record","id":"18f46041-76ae-4e9d-a342-68e183214ed9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test 3\",\n    \"fields\": [\n        {\n            \"id\": \"2a39034a-0bd6-42ba-be5f-fbeee0a062b6\",\n            \"value\": []\n        },\n        {\n            \"id\": \"9f76b873-95ab-403e-b0cd-39627e22189a\",\n            \"value\": true\n        },\n        {\n            \"id\": \"fe47e1d4-2b90-4406-a322-ba4d36ca2ea1\",\n            \"value\": \"textValue\"\n        },\n        {\n            \"id\": \"703576ff-7fc2-48b4-abc7-6732933cc0db\",\n            \"value\": []\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/entity-records/add","urlObject":{"path":["custom-objects","{{object_id}}","entity-records","add"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"18f46041-76ae-4e9d-a342-68e183214ed9"},{"name":"Update object record","id":"f1da39df-6bae-449f-ac09-b90504b002b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test 3\",\n    \"fields\": [\n\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/entity-records/{{entity_record_id}}","urlObject":{"path":["custom-objects","{{object_id}}","entity-records","{{entity_record_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f1da39df-6bae-449f-ac09-b90504b002b1"},{"name":"Archive object record","id":"6d1fbc40-b216-464d-b24c-0858246a433f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/entity-records/{{entity_record_id}}","urlObject":{"path":["custom-objects","{{object_id}}","entity-records","{{entity_record_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d1fbc40-b216-464d-b24c-0858246a433f"},{"name":"Get Object Record","id":"d3742994-415d-4674-b920-fb250cdeef2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/entity-records/{{record_id}}","urlObject":{"path":["custom-objects","{{object_id}}","entity-records","{{record_id}}"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3742994-415d-4674-b920-fb250cdeef2b"},{"name":"Object Record Lead Source Overview","id":"83819299-1393-4dc6-b657-b6ef7d087b5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","type":"text","value":"{{X-API-Key}}"},{"key":"X-USER-ID","type":"text","value":"{{X-User-Id}}"},{"key":"X-BUSINESS-ID","type":"text","value":"{{X-Business-Id}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{API_URL}}/custom-objects/{{object_id}}/entity-records/{{record_id}}/lead-source-overview","urlObject":{"path":["custom-objects","{{object_id}}","entity-records","{{record_id}}","lead-source-overview"],"host":["{{API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"83819299-1393-4dc6-b657-b6ef7d087b5d"}],"id":"d4f0cbcb-749b-4001-a45a-7948e8184711","description":"<h1 id=\"custom-object-records-api\">Custom Object Records API</h1>\n<p>This is where you do CRUD operations for custom object records. Adding, updating and deleting object record is done via <code>/custom-objects/{{object_id}}/entity-records</code> endpoint.  If you're wondering about he path, that is because the record is stored in the backend as <code>CustomObjects</code> model.  We should have done a better name for that but that's how it's already is for now.</p>\n<h2 id=\"adding-record-to-custom-object\">Adding record to custom object</h2>\n<p>You can add records for both Standard and Pipeline object via <code>POST /custom-objects/{{object_id}}/entity-records/add</code>.</p>\n<p><strong>Standard object record request payload</strong></p>\n<p>| field  | type          | required | description                                           |\n|:-------|:--------------|:---------|:------------------------------------------------------|         |\n| name   | str           | yes      | name of the record, usually used in displaying record |\n| fields | *list(object) | no       | set values for custom fields                          |</p>\n<p><strong>Sample Payload</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"name\": \"Unit 1\"\n}\n</code></pre>\n<p><strong>Pipeline object record request payload</strong></p>\n<p>Creating pipeline object record has additional data in the payload.</p>\n<p>| field                | type          | required | description                                              |\n|:---------------------|:--------------|:---------|:---------------------------------------------------------|             |\n| name                 | str           | yes      | name of the record, usually used in displaying record    |\n| fields               | *list(object) | no       | set values for custom fields                             |\n| estimated_close_date | str(datetime) | no       | sets estimated close date                                |\n| actual_close_date    | str(datetime) | no       | sets actual close date                                   |\n| entity_value         | decimal       | no       | sets entity value if pipeline object tracks entity_value |</p>\n<p><strong>Sample Payload</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"name\": \"Deal 1\",\n    \"estimated_close_date\": \"2020-01-30 01:00:00\",\n    \"actual_close_date\": \"2020-01-30 01:00:00\",\n    \"entity_value\": \"200.0\"\n}\n</code></pre>\n<p><strong>fields format</strong></p>\n<p>You can set values of custom fields via the fields key and the value depends on the field type.</p>\n<p>Below is a sample payload for adding a record and setting values for custom fields.  Take note of the strings that has <code>_id</code> in it because you need to replace it with the necessary id.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"name\": \"Object Records\",\n    \"fields\": [\n        {\n            \"id\": \"&lt;checkbox_field_id&gt;\",\n            \"value\": true\n        },\n        {\n            \"id\": \"&lt;checkboxes_field_id&gt;\",\n            \"value\": [\n                \"&lt;option1_id&gt;\",\n                \"&lt;option2_id&gt;\"\n            ]\n        },\n        {\n            \"id\": \"&lt;date_field_id&gt;\",\n            \"value\": \"2020-01-01\"\n        },\n        {\n            \"id\": \"&lt;datetime_field_id&gt;\",\n            \"value\": \"2020-01-30 01:00:00\"\n        },\n        {\n            \"id\": \"&lt;decimal_field_id&gt;\",\n            \"value\": \"200.25\"\n        },\n        {\n            \"id\": \"&lt;dropdown_field_id&gt;\",\n            \"value\": \"&lt;option_id&gt;\"\n        },\n        {\n            \"id\": \"&lt;dynamictags_field_id&gt;\",\n            \"value\": [\n                \"&lt;tag1_id&gt;\",\n                \"new tag\"\n            ]\n        },\n        {\n            \"id\": \"&lt;email_field_id&gt;\",\n            \"value\": \"test@gmail.com\"\n        },\n        {\n            \"id\": \"&lt;files_field_id&gt;\",\n            \"value\": [\n                \"&lt;file1_id&gt;\",\n                \"&lt;file2_id&gt;\"\n            ]\n        },\n        {\n            \"id\": \"&lt;integer_field_id&gt;\",\n            \"value\": 100\n        },\n        {\n            \"id\": \"&lt;longtext_field_id&gt;\",\n            \"value\": \"long string\"\n        },\n        {\n            \"id\": \"&lt;money_field_id&gt;\",\n            \"value\": \"200.25\"\n        },\n        {\n            \"id\": \"&lt;phonenumber_field_id&gt;\",\n            \"value\": {\"country\": \"PH\", \"extension\": \"+63\", \"national_number\": \"524134241\"}\n        },\n        {\n            \"id\": \"&lt;relationship_field_id&gt;\",\n            \"value\": [\n                \"&lt;related1_id&gt;\",\n                \"&lt;related2_id&gt;\"\n            ]\n        },\n        {\n            \"id\": \"&lt;radio_field_id&gt;\",\n            \"value\": \"&lt;option_id&gt;\"\n        },\n        {\n            \"id\": \"&lt;rating_field_id&gt;\",\n            \"value\": 1\n        },\n        {\n            \"id\": \"&lt;yesnomaybe_field_id&gt;\",\n            \"value\": \"&lt;option_id&gt;\"\n        }\n        \n    ]\n}\n</code></pre>\n<h2 id=\"update-record\">Update record</h2>\n<p>The payload for updating object is similar to creating record except that it has no model key anymore and the request will be <code>PATCH /custom-objects/{{object_id}}/entity-records/{{entity_record_id}}</code>.  You can pass partial data and only pass the necessary fields you want to update.</p>\n<h2 id=\"list-records\">List records</h2>\n<p>For standard object, you can list records with:</p>\n<p><code>POST /custom-objects/{{object_id}}/entity-records</code></p>\n<p>For pipeline object, you can list records with:</p>\n<p><code>POST /pipelines/&lt;object_id&gt;/records</code></p>\n<h2 id=\"delete-record\">Delete record</h2>\n<p>You can delete record both standard and pipeline with:</p>\n<p><code>DELETE /custom-objects/{{object_id}}/entity-records/{{entity_record_id}}</code></p>\n","event":[{"listen":"prerequest","script":{"id":"39aa9bfb-5b7e-494f-afe3-c41b1f38b132","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d4c908e2-6854-4c99-a76a-7953609a1455","type":"text/javascript","exec":[""]}}],"_postman_id":"d4f0cbcb-749b-4001-a45a-7948e8184711"},{"name":"Email Integration","item":[{"name":"Send Email from External Connected Account","id":"bdf4a00d-c438-476f-a2a5-e9af852e8705","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"{{Contact_ID}}\",\n\t\"subject\": \"\",\n\t\"body\": \"\"\n}"},"url":"{{base_url}}/external-account/{{External_Email_ID}}/send_email","description":"<p>Get your External Email ID using the <a href=\"https://kizenapi.postman.co/collections/7979800-f4ea4782-b8e5-4ef8-a65d-701167d03b9d?version=latest&amp;workspace=56fd3934-9d60-4022-891e-ea2d9c0bf025#ca2c8bb3-098d-429a-9800-68db1891b34a\">Retrieve External Email ID Request.</a></p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c217fa4c-1ce7-4a4b-b517-4236573103b3","id":"c217fa4c-1ce7-4a4b-b517-4236573103b3","name":"Email Integration","type":"folder"}},"urlObject":{"path":["external-account","{{External_Email_ID}}","send_email"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"c18b8794-1265-431a-9e71-2a18a9a2d626","name":"Send Email from External Connected Account","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\": \"117e12c8-f935-47f5-bc92-ee800637dd89\",\n\t\"subject\": \"testsubject\",\n\t\"body\": \"testbody\"\n}"},"url":"{{base_url}}/external-account/5cd977e9-65e6-4353-838f-19af1eeaa901/send_email"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 19 May 2021 19:34:00 GMT"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"9"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVztu2QkAAANAvshYTox56wOR-qWYw46V1QkRuEfH155z9BbtQ_qlFHxddblT03sY61hVbo8mr55exrnxEI-Raw1JHVMoQT71xbyHtwjABik52rbDy8aeBcyDcz26835eaLOPJNsk8rcz0pe_NYCc16NH7K7fptm2Gm68bkwbbIUnmcbnNvPDSjCbn6ZWnMD2ruTCni_Ce4xTKrzjE5J4GLg9mBkoW2VJNJ1QdDssPIGoXbe5OHMTTND-bB3F6coCbfH5dfSw-xsjldANcAfzbfrFgPXzLfz_VYTgrRA7N0kaJmq6F0fRN-cFwp01Z2zWOCGYnu40pBMVyPP4CdGVhAw:1ljRxA:scaS-p_pdcpiO7RCQhQzYWWvpyI; Domain=staging.kizen.com; expires=Thu, 19 May 2022 19:34:00 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bdf4a00d-c438-476f-a2a5-e9af852e8705"},{"name":"Retrieve External Email ID","id":"ca2c8bb3-098d-429a-9800-68db1891b34a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"content-type","type":"text","value":"application/json"}],"url":"{{base_url}}/external-account","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"c217fa4c-1ce7-4a4b-b517-4236573103b3","id":"c217fa4c-1ce7-4a4b-b517-4236573103b3","name":"Email Integration","type":"folder"}},"urlObject":{"path":["external-account"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"aaac35ab-5ec0-45a0-923f-404726e618eb","name":"Retrieve External Email ID","originalRequest":{"method":"GET","header":[{"key":"x-api-key","type":"text","value":"{{api_key}}"},{"key":"x-business-id","type":"text","value":"{{business_id}}"},{"key":"x-user-id","type":"text","value":"{{user_id}}"},{"key":"content-type","type":"text","value":"application/json"}],"url":"{{base_url}}/external-account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:05:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"5cd977e9-65e6-4353-838f-19af1eeaa901\",\n        \"created\": \"2020-09-09T17:38:18.333480-04:00\",\n        \"email_status\": 3,\n        \"provider\": 1,\n        \"email\": \"dillon@kizen.com\"\n    }\n]"}],"_postman_id":"ca2c8bb3-098d-429a-9800-68db1891b34a"}],"id":"c217fa4c-1ce7-4a4b-b517-4236573103b3","description":"<p>Email that is integrated directly from your Outlook or Gmail Account. </p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"c217fa4c-1ce7-4a4b-b517-4236573103b3"},{"name":"Forms","item":[{"name":"Retrieve Forms","id":"2c147296-b0f8-4fad-bf77-3a8094a88ac1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/form","urlObject":{"path":["form"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>You can filter what fields are brought back in the reponse</p>\n","type":"text/plain"},"key":"fields","value":"id,slug,name,subscribers,pass_variables_on_redirect,submit_action,submit_url"},{"disabled":true,"description":{"content":"<p>You can search for the name of the form</p>\n","type":"text/plain"},"key":"search","value":null},{"disabled":true,"description":{"content":"<p>You can sort the response by a parameter - ascending or descending</p>\n","type":"text/plain"},"key":"ordering","value":"-name"}],"variable":[]}},"response":[{"id":"053aa730-4ed0-450d-9c29-0c5256d27275","name":"Retrieve Forms","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/form","host":["{{base_url}}"],"path":["form"],"query":[{"key":"fields","value":"id,slug,name,subscribers,pass_variables_on_redirect,submit_action,submit_url","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:05:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"f6027650-bc7f-4f53-8615-258bb69c3a72\",\n            \"created\": \"2020-12-07T15:38:32.425550-05:00\",\n            \"name\": \"Parameter Passing (copy #2)\",\n            \"slug\": \"wMyG4m9X\",\n            \"number_submissions\": 0\n        },\n        {\n            \"id\": \"129a908b-a4ff-4bba-a503-686122784798\",\n            \"created\": \"2018-08-27T12:59:42.781359-04:00\",\n            \"name\": \"New Form\",\n            \"slug\": \"OYLm1DUA\",\n            \"number_submissions\": 14\n        }\n    ]\n}"}],"_postman_id":"2c147296-b0f8-4fad-bf77-3a8094a88ac1"},{"name":"Delete Forms","id":"15c42f95-848c-4e50-97ea-3b165caa176a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/form/{{Form_ID}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0c1f7028-f25d-44df-9332-5b7a0c9ce27e","id":"0c1f7028-f25d-44df-9332-5b7a0c9ce27e","name":"Forms","type":"folder"}},"urlObject":{"path":["form","{{Form_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"29618dfe-9e9d-4383-8b18-41367271433b","name":"Delete Forms","originalRequest":{"method":"DELETE","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/form/34672178-c0ae-46b1-93bd-d6bbe7edd3e4"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 19 May 2021 19:36:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"7"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"15c42f95-848c-4e50-97ea-3b165caa176a"},{"name":"Update Form Name","id":"049ae811-f1bc-431f-b9f5-41f7a38046fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"New Form Name\"\n\n}"},"url":"{{base_url}}/form/{{Form_ID}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0c1f7028-f25d-44df-9332-5b7a0c9ce27e","id":"0c1f7028-f25d-44df-9332-5b7a0c9ce27e","name":"Forms","type":"folder"}},"urlObject":{"path":["form","{{Form_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"576e6314-c55f-4cc6-bc6c-e44eacf7b591","name":"Update Form Name","originalRequest":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Another Name\"\n\n}"},"url":"{{base_url}}/form/dac5cfa9-01dd-42e9-8956-55599acc4b98"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:37:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"13"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"dac5cfa9-01dd-42e9-8956-55599acc4b98\",\n    \"created\": \"2019-04-29T12:05:40.618908-05:00\",\n    \"slug\": \"f1ZLEX81\",\n    \"name\": \"Countdown\",\n    \"rules\": {\n        \"fields\": [\n            {\n                \"actions\": [\n                    {\n                        \"field\": \"3665dec2-d225-4937-a4d3-dc97cc5928a5\",\n                        \"action\": \"show\"\n                    }\n                ],\n                \"conditions\": [\n                    {\n                        \"field\": \"3e09b649-c243-42a2-9772-a41622c53429\",\n                        \"value\": \"\",\n                        \"operator\": \"in\"\n                    }\n                ],\n                \"conditions_reducer\": \"and\"\n            }\n        ]\n    },\n    \"builder_json\": {\n        \"body\": {\n            \"css\": {},\n            \"style\": {\n                \"fontSize\": 14,\n                \"textColor\": \"#444444\",\n                \"background\": \"#f7f7f7\",\n                \"fontFamily\": \"Helvetica Neue\",\n                \"lineHeight\": 14\n            },\n            \"computedStyle\": {\n                \"color\": \"#444444\",\n                \"font-size\": \"14px\",\n                \"font-family\": \"Helvetica Neue, Helvetica, Arial, sans-serif\",\n                \"line-height\": 1,\n                \"background-color\": \"#f7f7f7\"\n            },\n            \"containerStyle\": {\n                \"fluid\": true,\n                \"width\": 600,\n                \"border\": \"2px solid #999\",\n                \"marginTop\": 30,\n                \"background\": \"transparent\",\n                \"marginBottom\": 30\n            },\n            \"computedContainerStyle\": {\n                \"width\": \"100%\",\n                \"margin\": 0,\n                \"padding\": 0\n            }\n        },\n        \"pages\": [\n            {\n                \"uuid\": \"b2b9c162-abb9-4664-b470-3deaf7006345\",\n                \"sections\": [\n                    {\n                        \"name\": \"Blank Section\",\n                        \"rows\": [\n                            {\n                                \"cols\": [\n                                    {\n                                        \"uuid\": \"1e084cba-69c1-450d-a59b-5f8d30333cc3\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 12,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"divider\",\n                                                \"name\": \"Solid\",\n                                                \"show\": true,\n                                                \"type\": \"divider\",\n                                                \"uuid\": \"952dfb68-be89-4ee3-8ad3-47ff484e2617\",\n                                                \"color\": null,\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 0,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": true,\n                                                    \"marginTop\": 0,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 0,\n                                                    \"paddingAll\": false,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 0,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 0,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"width\": {\n                                                    \"name\": \"100%\",\n                                                    \"value\": \"100\"\n                                                },\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"style\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Solid\",\n                                                                \"value\": \"solid\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Dashed\",\n                                                                \"value\": \"dashed\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Dotted\",\n                                                                \"value\": \"dotted\"\n                                                            }\n                                                        ]\n                                                    },\n                                                    {\n                                                        \"key\": \"thickness\"\n                                                    },\n                                                    {\n                                                        \"key\": \"color\"\n                                                    },\n                                                    {\n                                                        \"key\": \"width\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"10%\",\n                                                                \"value\": \"10\"\n                                                            },\n                                                            {\n                                                                \"name\": \"20%\",\n                                                                \"value\": \"20\"\n                                                            },\n                                                            {\n                                                                \"name\": \"25%\",\n                                                                \"value\": \"25\"\n                                                            },\n                                                            {\n                                                                \"name\": \"30%\",\n                                                                \"value\": \"30\"\n                                                            },\n                                                            {\n                                                                \"name\": \"40%\",\n                                                                \"value\": \"40\"\n                                                            },\n                                                            {\n                                                                \"name\": \"50%\",\n                                                                \"value\": \"50\"\n                                                            },\n                                                            {\n                                                                \"name\": \"60%\",\n                                                                \"value\": \"60\"\n                                                            },\n                                                            {\n                                                                \"name\": \"70%\",\n                                                                \"value\": \"70\"\n                                                            },\n                                                            {\n                                                                \"name\": \"75%\",\n                                                                \"value\": \"75\"\n                                                            },\n                                                            {\n                                                                \"name\": \"80%\",\n                                                                \"value\": \"80\"\n                                                            },\n                                                            {\n                                                                \"name\": \"90%\",\n                                                                \"value\": \"90\"\n                                                            },\n                                                            {\n                                                                \"name\": \"100%\",\n                                                                \"value\": \"100\"\n                                                            }\n                                                        ]\n                                                    },\n                                                    {\n                                                        \"key\": \"position\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Left\",\n                                                                \"value\": \"left\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Center\",\n                                                                \"value\": \"center\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Right\",\n                                                                \"value\": \"right\"\n                                                            }\n                                                        ]\n                                                    }\n                                                ],\n                                                \"position\": {\n                                                    \"name\": \"Center\",\n                                                    \"value\": \"center\"\n                                                },\n                                                \"thickness\": 3,\n                                                \"field_name\": \"952dfb68-be89-4ee3-8ad3-47ff484e2617\",\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"dividerStyle\": \"solid\",\n                                                \"computedStyle\": {\n                                                    \"margin\": \"0px 0px 0px 0px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                }\n                                            }\n                                        ],\n                                        \"pctWidth\": 100,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"100%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    }\n                                ],\n                                \"uuid\": \"eab4c14e-0d58-42a7-b6db-7bade9847dc2\",\n                                \"style\": {\n                                    \"width\": 600,\n                                    \"padding\": 0,\n                                    \"borderAll\": true,\n                                    \"cornerAll\": true,\n                                    \"marginAll\": false,\n                                    \"marginTop\": 0,\n                                    \"widthUnit\": \"pixel\",\n                                    \"background\": \"transparent\",\n                                    \"paddingAll\": true,\n                                    \"paddingTop\": 0,\n                                    \"borderColor\": \"#999\",\n                                    \"borderStyle\": \"solid\",\n                                    \"borderWidth\": 0,\n                                    \"paddingLeft\": 0,\n                                    \"borderRadius\": 0,\n                                    \"marginBottom\": 0,\n                                    \"paddingRight\": 0,\n                                    \"paddingBottom\": 0,\n                                    \"borderTopColor\": \"#999\",\n                                    \"borderTopStyle\": \"solid\",\n                                    \"borderTopWidth\": 0,\n                                    \"backgroundImage\": null,\n                                    \"borderLeftColor\": \"#999\",\n                                    \"borderLeftStyle\": \"solid\",\n                                    \"borderLeftWidth\": 0,\n                                    \"borderRightColor\": \"#999\",\n                                    \"borderRightStyle\": \"solid\",\n                                    \"borderRightWidth\": 0,\n                                    \"borderBottomColor\": \"#999\",\n                                    \"borderBottomStyle\": \"solid\",\n                                    \"borderBottomWidth\": 0,\n                                    \"backgroundImageSize\": \"cover\",\n                                    \"borderTopLeftRadius\": 0,\n                                    \"borderTopRightRadius\": 0,\n                                    \"backgroundImageRepeat\": \"on\",\n                                    \"borderBottomLeftRadius\": 0,\n                                    \"borderBottomRightRadius\": 0,\n                                    \"backgroundImageVerticalPosition\": \"top\",\n                                    \"backgroundImageHorizontalPosition\": \"left\"\n                                },\n                                \"contentStyle\": {},\n                                \"computedStyle\": {\n                                    \"width\": \"100%\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0 0px 0\",\n                                    \"max-width\": \"600px\"\n                                },\n                                \"computedContentStyle\": {\n                                    \"width\": \"600px\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0px 0px 0px\",\n                                    \"max-width\": \"100%\",\n                                    \"box-sizing\": \"border-box\"\n                                }\n                            }\n                        ],\n                        \"uuid\": \"9ea567e1-20af-44ed-90a5-0eb7f532196a\",\n                        \"style\": {\n                            \"width\": 100,\n                            \"margin\": 0,\n                            \"padding\": 5,\n                            \"maxWidth\": 1200,\n                            \"borderAll\": true,\n                            \"cornerAll\": true,\n                            \"marginTop\": 0,\n                            \"widthUnit\": \"percent\",\n                            \"background\": \"#2196F3\",\n                            \"paddingAll\": true,\n                            \"paddingTop\": 5,\n                            \"borderColor\": \"#999\",\n                            \"borderStyle\": \"solid\",\n                            \"borderWidth\": 0,\n                            \"hasMaxWidth\": false,\n                            \"paddingLeft\": 5,\n                            \"borderRadius\": 0,\n                            \"contentWidth\": 100,\n                            \"marginBottom\": 0,\n                            \"paddingRight\": 5,\n                            \"paddingBottom\": 5,\n                            \"borderTopColor\": \"#999\",\n                            \"borderTopStyle\": \"solid\",\n                            \"borderTopWidth\": 0,\n                            \"backgroundImage\": null,\n                            \"borderLeftColor\": \"#999\",\n                            \"borderLeftStyle\": \"solid\",\n                            \"borderLeftWidth\": 0,\n                            \"borderRightColor\": \"#999\",\n                            \"borderRightStyle\": \"solid\",\n                            \"borderRightWidth\": 0,\n                            \"borderBottomColor\": \"#999\",\n                            \"borderBottomStyle\": \"solid\",\n                            \"borderBottomWidth\": 0,\n                            \"backgroundImageSize\": \"cover\",\n                            \"borderTopLeftRadius\": 0,\n                            \"borderTopRightRadius\": 0,\n                            \"backgroundImageRepeat\": \"on\",\n                            \"borderBottomLeftRadius\": 0,\n                            \"borderBottomRightRadius\": 0,\n                            \"backgroundImageVerticalPosition\": \"top\",\n                            \"backgroundImageHorizontalPosition\": \"left\"\n                        },\n                        \"computedStyle\": {\n                            \"width\": \"100%\",\n                            \"margin\": \"0px auto 0px auto\"\n                        },\n                        \"contentClasses\": [],\n                        \"computedContentStyle\": {\n                            \"margin\": \"0 auto\",\n                            \"padding\": \"5px 5px 5px 5px\",\n                            \"max-width\": \"100%\",\n                            \"box-sizing\": \"border-box\",\n                            \"background-color\": \"#2196F3\"\n                        }\n                    },\n                    {\n                        \"rows\": [\n                            {\n                                \"cols\": [\n                                    {\n                                        \"uuid\": \"f2913399-d9b6-4c47-aaee-c31c84f8d229\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 12,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"countdown\",\n                                                \"name\": \"Countdown\",\n                                                \"show\": true,\n                                                \"type\": \"countdown\",\n                                                \"uuid\": \"cfe7fc8c-0efa-4e26-a4b2-0bd3932e3054\",\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": true,\n                                                    \"marginTop\": 10,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 10,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"countdownSettings\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Text\",\n                                                                \"value\": \"text\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Cards\",\n                                                                \"value\": \"cards\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Circles\",\n                                                                \"value\": \"circles\"\n                                                            }\n                                                        ]\n                                                    }\n                                                ],\n                                                \"field_name\": \"cfe7fc8c-0efa-4e26-a4b2-0bd3932e3054\",\n                                                \"previewHTML\": {},\n                                                \"computedStyle\": {\n                                                    \"margin\": \"10px 10px 10px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                },\n                                                \"countdownType\": \"text\",\n                                                \"countdownDuration\": {\n                                                    \"days\": \"00\",\n                                                    \"hours\": \"09\",\n                                                    \"minutes\": \"00\",\n                                                    \"seconds\": \"00\"\n                                                },\n                                                \"countdownFontColor\": \"#000000\",\n                                                \"countdownEndDateTime\": \"2019-05-21T14:00:00.000Z\",\n                                                \"countdownStartDateTime\": \"2019-05-17T06:30:00.000Z\",\n                                                \"countdownSecondaryColor\": \"#57C2F4\"\n                                            },\n                                            {\n                                                \"key\": \"image\",\n                                                \"name\": \"Image\",\n                                                \"show\": true,\n                                                \"type\": \"image\",\n                                                \"uuid\": \"aed675e5-e8b5-4594-8db4-6783f141d515\",\n                                                \"image\": {\n                                                    \"id\": \"937660e5-007a-4a29-8ca6-49ea8aea69f9\",\n                                                    \"key\": \"937660e5-007a-4a29-8ca6-49ea8aea69f9.png\",\n                                                    \"url\": \"https://usercontent.evos.io/937660e5-007a-4a29-8ca6-49ea8aea69f9.png\",\n                                                    \"name\": \"Logo (Colour RGB).png\",\n                                                    \"bucket\": \"evos-file-cdn\",\n                                                    \"created\": \"2017-03-19T20:44:35.508708Z\",\n                                                    \"resizedUrl\": \"https://evos.imgix.net/937660e5-007a-4a29-8ca6-49ea8aea69f9.png?ixjsv=1.1.2&fit=crop&q=100&w=250&dpr=1\",\n                                                    \"size_bytes\": 73422,\n                                                    \"content_type\": \"image/png\",\n                                                    \"thumbnail_url\": \"https://evos.imgix.net/937660e5-007a-4a29-8ca6-49ea8aea69f9.png?dpr=2&h=100&w=200&ixlib=python-0.2.0&s=7aead8ad1cf45bfc0ae24a53e1a322e5\",\n                                                    \"size_formatted\": \"71.7KB\"\n                                                },\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": false,\n                                                    \"marginTop\": 25,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 25,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"altText\": \"\",\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"image\"\n                                                    },\n                                                    {\n                                                        \"key\": \"position\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Left\",\n                                                                \"value\": \"left\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Center\",\n                                                                \"value\": \"center\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Right\",\n                                                                \"value\": \"right\"\n                                                            }\n                                                        ]\n                                                    }\n                                                ],\n                                                \"imageURL\": \"\",\n                                                \"maxWidth\": 250,\n                                                \"position\": {\n                                                    \"name\": \"Center\",\n                                                    \"value\": \"center\"\n                                                },\n                                                \"fullWidth\": false,\n                                                \"maxHeight\": 62,\n                                                \"field_name\": \"aed675e5-e8b5-4594-8db4-6783f141d515\",\n                                                \"fullHeight\": true,\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"computedStyle\": {\n                                                    \"margin\": \"25px 10px 25px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                }\n                                            }\n                                        ],\n                                        \"pctWidth\": 100,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"100%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    }\n                                ],\n                                \"name\": \"1 Column\",\n                                \"uuid\": \"eedd8743-1f80-49b7-8251-ce028af3aced\",\n                                \"style\": {\n                                    \"width\": 900,\n                                    \"padding\": 0,\n                                    \"borderAll\": true,\n                                    \"cornerAll\": true,\n                                    \"marginAll\": false,\n                                    \"marginTop\": 0,\n                                    \"widthUnit\": \"pixel\",\n                                    \"background\": \"transparent\",\n                                    \"paddingAll\": true,\n                                    \"paddingTop\": 0,\n                                    \"borderColor\": \"#999\",\n                                    \"borderStyle\": \"solid\",\n                                    \"borderWidth\": 0,\n                                    \"paddingLeft\": 0,\n                                    \"borderRadius\": 0,\n                                    \"marginBottom\": 0,\n                                    \"paddingRight\": 0,\n                                    \"paddingBottom\": 0,\n                                    \"borderTopColor\": \"#999\",\n                                    \"borderTopStyle\": \"solid\",\n                                    \"borderTopWidth\": 0,\n                                    \"backgroundImage\": null,\n                                    \"borderLeftColor\": \"#999\",\n                                    \"borderLeftStyle\": \"solid\",\n                                    \"borderLeftWidth\": 0,\n                                    \"borderRightColor\": \"#999\",\n                                    \"borderRightStyle\": \"solid\",\n                                    \"borderRightWidth\": 0,\n                                    \"borderBottomColor\": \"#999\",\n                                    \"borderBottomStyle\": \"solid\",\n                                    \"borderBottomWidth\": 0,\n                                    \"backgroundImageSize\": \"cover\",\n                                    \"borderTopLeftRadius\": 0,\n                                    \"borderTopRightRadius\": 0,\n                                    \"backgroundImageRepeat\": \"on\",\n                                    \"borderBottomLeftRadius\": 0,\n                                    \"borderBottomRightRadius\": 0,\n                                    \"backgroundImageVerticalPosition\": \"top\",\n                                    \"backgroundImageHorizontalPosition\": \"left\"\n                                },\n                                \"previewHTML\": {},\n                                \"contentStyle\": {},\n                                \"computedStyle\": {\n                                    \"width\": \"100%\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0 0px 0\",\n                                    \"max-width\": \"900px\"\n                                },\n                                \"computedContentStyle\": {\n                                    \"width\": \"900px\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0px 0px 0px\",\n                                    \"max-width\": \"100%\",\n                                    \"box-sizing\": \"border-box\"\n                                }\n                            },\n                            {\n                                \"cols\": [\n                                    {\n                                        \"uuid\": \"283a6fd0-ccac-465c-a8de-b516bc1bdbfd\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 6,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"textbox\",\n                                                \"max\": 1,\n                                                \"icon\": \"component-input.png\",\n                                                \"name\": \"First Name\",\n                                                \"show\": true,\n                                                \"type\": \"textbox\",\n                                                \"uuid\": \"3e09b649-c243-42a2-9772-a41622c53429\",\n                                                \"label\": {\n                                                    \"text\": \"First Name\"\n                                                },\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": true,\n                                                    \"marginTop\": 10,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 10,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"value\": \"\",\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"label\"\n                                                    },\n                                                    {\n                                                        \"key\": \"placeholder\"\n                                                    },\n                                                    {\n                                                        \"key\": \"isRequired\"\n                                                    }\n                                                ],\n                                                \"required\": false,\n                                                \"field_name\": \"first_name\",\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"computedStyle\": {\n                                                    \"margin\": \"10px 10px 10px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                },\n                                                \"isRequired\": false\n                                            }\n                                        ],\n                                        \"pctWidth\": 50,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"50%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    },\n                                    {\n                                        \"uuid\": \"27a887b5-044a-47c2-9792-ba5c21fd92fb\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 6,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"textbox\",\n                                                \"max\": 1,\n                                                \"icon\": \"component-input.png\",\n                                                \"name\": \"Last Name\",\n                                                \"show\": true,\n                                                \"type\": \"textbox\",\n                                                \"uuid\": \"3665dec2-d225-4937-a4d3-dc97cc5928a5\",\n                                                \"label\": {\n                                                    \"text\": \"Last Name\"\n                                                },\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": true,\n                                                    \"marginTop\": 10,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 10,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"value\": \"\",\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"label\"\n                                                    },\n                                                    {\n                                                        \"key\": \"placeholder\"\n                                                    },\n                                                    {\n                                                        \"key\": \"isRequired\"\n                                                    }\n                                                ],\n                                                \"required\": false,\n                                                \"field_name\": \"last_name\",\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"computedStyle\": {\n                                                    \"margin\": \"10px 10px 10px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                },\n                                                \"isRequired\": false\n                                            }\n                                        ],\n                                        \"pctWidth\": 50,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"50%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    }\n                                ],\n                                \"name\": \"2 Columns\",\n                                \"uuid\": \"5c965b97-b13a-412a-99cb-41e608fa028a\",\n                                \"style\": {\n                                    \"width\": 900,\n                                    \"padding\": 0,\n                                    \"borderAll\": true,\n                                    \"cornerAll\": true,\n                                    \"marginAll\": false,\n                                    \"marginTop\": 0,\n                                    \"widthUnit\": \"pixel\",\n                                    \"background\": \"transparent\",\n                                    \"paddingAll\": false,\n                                    \"paddingTop\": 0,\n                                    \"borderColor\": \"#999\",\n                                    \"borderStyle\": \"solid\",\n                                    \"borderWidth\": 0,\n                                    \"paddingLeft\": 0,\n                                    \"borderRadius\": 0,\n                                    \"marginBottom\": 0,\n                                    \"paddingRight\": 0,\n                                    \"paddingBottom\": 0,\n                                    \"borderTopColor\": \"#999\",\n                                    \"borderTopStyle\": \"solid\",\n                                    \"borderTopWidth\": 0,\n                                    \"backgroundImage\": null,\n                                    \"borderLeftColor\": \"#999\",\n                                    \"borderLeftStyle\": \"solid\",\n                                    \"borderLeftWidth\": 0,\n                                    \"borderRightColor\": \"#999\",\n                                    \"borderRightStyle\": \"solid\",\n                                    \"borderRightWidth\": 0,\n                                    \"borderBottomColor\": \"#999\",\n                                    \"borderBottomStyle\": \"solid\",\n                                    \"borderBottomWidth\": 0,\n                                    \"backgroundImageSize\": \"cover\",\n                                    \"borderTopLeftRadius\": 0,\n                                    \"borderTopRightRadius\": 0,\n                                    \"backgroundImageRepeat\": \"on\",\n                                    \"borderBottomLeftRadius\": 0,\n                                    \"borderBottomRightRadius\": 0,\n                                    \"backgroundImageVerticalPosition\": \"top\",\n                                    \"backgroundImageHorizontalPosition\": \"left\"\n                                },\n                                \"previewHTML\": {},\n                                \"contentStyle\": {},\n                                \"computedStyle\": {\n                                    \"width\": \"100%\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0 0px 0\",\n                                    \"max-width\": \"900px\"\n                                },\n                                \"computedContentStyle\": {\n                                    \"width\": \"900px\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0px 0px 0px\",\n                                    \"max-width\": \"100%\",\n                                    \"box-sizing\": \"border-box\"\n                                }\n                            },\n                            {\n                                \"cols\": [\n                                    {\n                                        \"uuid\": \"b94c6a31-8784-4b4e-8425-92d171322c32\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 12,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"email\",\n                                                \"max\": 1,\n                                                \"icon\": \"component-input.png\",\n                                                \"name\": \"Email\",\n                                                \"show\": true,\n                                                \"type\": \"email\",\n                                                \"uuid\": \"3866d900-aefd-49ef-b6a2-3da99078cb48\",\n                                                \"label\": {\n                                                    \"text\": \"Email\"\n                                                },\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": true,\n                                                    \"marginTop\": 10,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 10,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"value\": \"\",\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"label\"\n                                                    },\n                                                    {\n                                                        \"key\": \"placeholder\"\n                                                    },\n                                                    {\n                                                        \"key\": \"isRequired\"\n                                                    }\n                                                ],\n                                                \"required\": false,\n                                                \"field_name\": \"email\",\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"computedStyle\": {\n                                                    \"margin\": \"10px 10px 10px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                },\n                                                \"isRequired\": false\n                                            }\n                                        ],\n                                        \"pctWidth\": 100,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"100%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    }\n                                ],\n                                \"uuid\": \"87a2f2a1-cd74-48e2-9583-dd2bbb310648\",\n                                \"style\": {\n                                    \"width\": 900,\n                                    \"padding\": 0,\n                                    \"borderAll\": true,\n                                    \"cornerAll\": true,\n                                    \"marginAll\": false,\n                                    \"marginTop\": 0,\n                                    \"widthUnit\": \"pixel\",\n                                    \"background\": \"transparent\",\n                                    \"paddingAll\": false,\n                                    \"paddingTop\": 0,\n                                    \"borderColor\": \"#999\",\n                                    \"borderStyle\": \"solid\",\n                                    \"borderWidth\": 0,\n                                    \"paddingLeft\": 0,\n                                    \"borderRadius\": 0,\n                                    \"marginBottom\": 0,\n                                    \"paddingRight\": 0,\n                                    \"paddingBottom\": 0,\n                                    \"borderTopColor\": \"#999\",\n                                    \"borderTopStyle\": \"solid\",\n                                    \"borderTopWidth\": 0,\n                                    \"backgroundImage\": null,\n                                    \"borderLeftColor\": \"#999\",\n                                    \"borderLeftStyle\": \"solid\",\n                                    \"borderLeftWidth\": 0,\n                                    \"borderRightColor\": \"#999\",\n                                    \"borderRightStyle\": \"solid\",\n                                    \"borderRightWidth\": 0,\n                                    \"borderBottomColor\": \"#999\",\n                                    \"borderBottomStyle\": \"solid\",\n                                    \"borderBottomWidth\": 0,\n                                    \"backgroundImageSize\": \"cover\",\n                                    \"borderTopLeftRadius\": 0,\n                                    \"borderTopRightRadius\": 0,\n                                    \"backgroundImageRepeat\": \"on\",\n                                    \"borderBottomLeftRadius\": 0,\n                                    \"borderBottomRightRadius\": 0,\n                                    \"backgroundImageVerticalPosition\": \"top\",\n                                    \"backgroundImageHorizontalPosition\": \"left\"\n                                },\n                                \"contentStyle\": {},\n                                \"computedStyle\": {\n                                    \"width\": \"100%\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0 0px 0\",\n                                    \"max-width\": \"900px\"\n                                },\n                                \"computedContentStyle\": {\n                                    \"width\": \"900px\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0px 0px 0px\",\n                                    \"max-width\": \"100%\",\n                                    \"box-sizing\": \"border-box\"\n                                }\n                            },\n                            {\n                                \"cols\": [\n                                    {\n                                        \"uuid\": \"2b0076f1-7be5-4e52-9879-47e4eeafe175\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 12,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"button\",\n                                                \"name\": \"Button\",\n                                                \"show\": true,\n                                                \"text\": \"Next\",\n                                                \"type\": \"button\",\n                                                \"uuid\": \"96f4e3b1-3ff0-4d23-957c-54a673ebbaf7\",\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": false,\n                                                    \"marginTop\": 20,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 20,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"buttonSettings\"\n                                                    },\n                                                    {\n                                                        \"key\": \"position\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Left\",\n                                                                \"value\": \"left\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Center\",\n                                                                \"value\": \"center\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Right\",\n                                                                \"value\": \"right\"\n                                                            }\n                                                        ]\n                                                    },\n                                                    {\n                                                        \"key\": \"fontSize\"\n                                                    },\n                                                    {\n                                                        \"key\": \"text\"\n                                                    },\n                                                    {\n                                                        \"key\": \"buttonStyling\"\n                                                    }\n                                                ],\n                                                \"fontSize\": 14,\n                                                \"position\": {\n                                                    \"name\": \"Center\",\n                                                    \"value\": \"center\"\n                                                },\n                                                \"buttonUrl\": \"https://google.com\",\n                                                \"textColor\": \"#ffffff\",\n                                                \"field_name\": \"96f4e3b1-3ff0-4d23-957c-54a673ebbaf7\",\n                                                \"buttonColor\": \"#2196F3\",\n                                                \"buttonWidth\": 0,\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"buttonAction\": \"next\",\n                                                \"buttonPadding\": 10,\n                                                \"computedStyle\": {\n                                                    \"margin\": \"20px 10px 20px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                },\n                                                \"buttonMaxWidth\": 1200,\n                                                \"buttonBoldStyle\": false,\n                                                \"buttonBorderAll\": false,\n                                                \"buttonCornerAll\": true,\n                                                \"buttonPaddingAll\": false,\n                                                \"buttonPaddingTop\": 10,\n                                                \"buttonBorderColor\": \"#008b3d\",\n                                                \"buttonBorderStyle\": \"solid\",\n                                                \"buttonBorderWidth\": 0,\n                                                \"buttonItalicStyle\": false,\n                                                \"buttonPaddingLeft\": 25,\n                                                \"buttonBorderRadius\": 2,\n                                                \"buttonPaddingRight\": 25,\n                                                \"buttonPaddingBottom\": 10,\n                                                \"buttonBorderTopColor\": \"#000000\",\n                                                \"buttonBorderTopWidth\": 0,\n                                                \"buttonBorderLeftColor\": \"#000000\",\n                                                \"buttonBorderLeftWidth\": 0,\n                                                \"buttonBorderRightColor\": \"#000000\",\n                                                \"buttonBorderRightWidth\": 0,\n                                                \"buttonBorderBottomColor\": \"#000000\",\n                                                \"buttonBorderBottomWidth\": 0,\n                                                \"buttonBorderTopLeftRadius\": 2,\n                                                \"buttonBorderTopRightRadius\": 2,\n                                                \"buttonBorderBottomLeftRadius\": 2,\n                                                \"buttonBorderBottomRightRadius\": 2\n                                            },\n                                            {\n                                                \"key\": \"countdown\",\n                                                \"name\": \"Countdown\",\n                                                \"show\": true,\n                                                \"type\": \"countdown\",\n                                                \"uuid\": \"ea41133c-72f5-419b-8731-f26056312251\",\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": true,\n                                                    \"marginTop\": 10,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 10,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"countdownSettings\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Text\",\n                                                                \"value\": \"text\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Cards\",\n                                                                \"value\": \"cards\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Circles\",\n                                                                \"value\": \"circles\"\n                                                            }\n                                                        ]\n                                                    }\n                                                ],\n                                                \"field_name\": \"ea41133c-72f5-419b-8731-f26056312251\",\n                                                \"previewHTML\": {},\n                                                \"computedStyle\": {\n                                                    \"margin\": \"10px 10px 10px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                },\n                                                \"countdownType\": \"circles\",\n                                                \"countdownDuration\": {\n                                                    \"days\": \"00\",\n                                                    \"hours\": \"12\",\n                                                    \"minutes\": \"00\",\n                                                    \"seconds\": \"00\"\n                                                },\n                                                \"countdownFontColor\": \"#57C2F4\",\n                                                \"countdownEndDateTime\": \"2019-05-22T17:00:00.000Z\",\n                                                \"countdownStartDateTime\": \"2019-05-15T05:00:00.000Z\",\n                                                \"countdownSecondaryColor\": \"#57C2F4\"\n                                            }\n                                        ],\n                                        \"pctWidth\": 100,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"100%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    }\n                                ],\n                                \"name\": \"1 Column\",\n                                \"uuid\": \"30e0945f-9785-45b8-9dbd-bea2d4236184\",\n                                \"style\": {\n                                    \"width\": 900,\n                                    \"padding\": 0,\n                                    \"borderAll\": true,\n                                    \"cornerAll\": true,\n                                    \"marginAll\": false,\n                                    \"marginTop\": 0,\n                                    \"widthUnit\": \"pixel\",\n                                    \"background\": \"transparent\",\n                                    \"paddingAll\": true,\n                                    \"paddingTop\": 0,\n                                    \"borderColor\": \"#999\",\n                                    \"borderStyle\": \"solid\",\n                                    \"borderWidth\": 0,\n                                    \"paddingLeft\": 0,\n                                    \"borderRadius\": 0,\n                                    \"marginBottom\": 0,\n                                    \"paddingRight\": 0,\n                                    \"paddingBottom\": 0,\n                                    \"borderTopColor\": \"#999\",\n                                    \"borderTopStyle\": \"solid\",\n                                    \"borderTopWidth\": 0,\n                                    \"backgroundImage\": null,\n                                    \"borderLeftColor\": \"#999\",\n                                    \"borderLeftStyle\": \"solid\",\n                                    \"borderLeftWidth\": 0,\n                                    \"borderRightColor\": \"#999\",\n                                    \"borderRightStyle\": \"solid\",\n                                    \"borderRightWidth\": 0,\n                                    \"borderBottomColor\": \"#999\",\n                                    \"borderBottomStyle\": \"solid\",\n                                    \"borderBottomWidth\": 0,\n                                    \"backgroundImageSize\": \"cover\",\n                                    \"borderTopLeftRadius\": 0,\n                                    \"borderTopRightRadius\": 0,\n                                    \"backgroundImageRepeat\": \"on\",\n                                    \"borderBottomLeftRadius\": 0,\n                                    \"borderBottomRightRadius\": 0,\n                                    \"backgroundImageVerticalPosition\": \"top\",\n                                    \"backgroundImageHorizontalPosition\": \"left\"\n                                },\n                                \"previewHTML\": {},\n                                \"contentStyle\": {},\n                                \"computedStyle\": {\n                                    \"width\": \"100%\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0 0px 0\",\n                                    \"max-width\": \"900px\"\n                                },\n                                \"computedContentStyle\": {\n                                    \"width\": \"900px\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0px 0px 0px\",\n                                    \"max-width\": \"100%\",\n                                    \"box-sizing\": \"border-box\"\n                                }\n                            }\n                        ],\n                        \"style\": {\n                            \"width\": 100,\n                            \"margin\": 0,\n                            \"padding\": 0,\n                            \"maxWidth\": 900,\n                            \"borderAll\": false,\n                            \"cornerAll\": true,\n                            \"marginAll\": true,\n                            \"marginTop\": 0,\n                            \"widthUnit\": \"percent\",\n                            \"background\": \"#ffffff\",\n                            \"paddingAll\": false,\n                            \"paddingTop\": 0,\n                            \"borderColor\": \"#cccccc\",\n                            \"borderStyle\": \"solid\",\n                            \"borderWidth\": 1,\n                            \"hasMaxWidth\": true,\n                            \"paddingLeft\": 30,\n                            \"borderRadius\": 0,\n                            \"contentWidth\": 100,\n                            \"marginBottom\": 50,\n                            \"paddingRight\": 30,\n                            \"paddingBottom\": 0,\n                            \"borderTopColor\": \"#999\",\n                            \"borderTopStyle\": \"solid\",\n                            \"borderTopWidth\": 0,\n                            \"backgroundImage\": null,\n                            \"borderLeftColor\": \"#999\",\n                            \"borderLeftStyle\": \"solid\",\n                            \"borderLeftWidth\": 1,\n                            \"borderRightColor\": \"#999\",\n                            \"borderRightStyle\": \"solid\",\n                            \"borderRightWidth\": 1,\n                            \"borderBottomColor\": \"#999\",\n                            \"borderBottomStyle\": \"solid\",\n                            \"borderBottomWidth\": 1,\n                            \"backgroundImageSize\": \"cover\",\n                            \"borderTopLeftRadius\": 0,\n                            \"borderTopRightRadius\": 0,\n                            \"backgroundImageRepeat\": \"on\",\n                            \"borderBottomLeftRadius\": 0,\n                            \"borderBottomRightRadius\": 0,\n                            \"backgroundImageVerticalPosition\": \"top\",\n                            \"backgroundImageHorizontalPosition\": \"left\"\n                        },\n                        \"computedStyle\": {\n                            \"width\": \"100%\",\n                            \"margin\": \"0px auto 50px auto\",\n                            \"max-width\": \"900px\"\n                        },\n                        \"contentClasses\": [],\n                        \"computedContentStyle\": {\n                            \"width\": \"900px\",\n                            \"margin\": \"0 auto\",\n                            \"padding\": \"0px 30px 0px 30px\",\n                            \"max-width\": \"100%\",\n                            \"box-sizing\": \"border-box\",\n                            \"border-left\": \"1px solid #cccccc\",\n                            \"border-right\": \"1px solid #cccccc\",\n                            \"border-bottom\": \"1px solid #cccccc\",\n                            \"background-color\": \"#ffffff\"\n                        }\n                    }\n                ],\n                \"pageGroup\": \"form_page\"\n            },\n            {\n                \"uuid\": \"f9b9597f-002b-48ea-af73-df8fa8bde396\",\n                \"sections\": [\n                    {\n                        \"name\": \"Blank Section\",\n                        \"rows\": [\n                            {\n                                \"cols\": [\n                                    {\n                                        \"uuid\": \"746a01c0-66ee-4a07-8a45-ccacb1eee882\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 12,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"divider\",\n                                                \"name\": \"Solid\",\n                                                \"show\": true,\n                                                \"type\": \"divider\",\n                                                \"uuid\": \"2100658e-e35a-44d9-9cf6-a1d1f9098168\",\n                                                \"color\": null,\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 0,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": true,\n                                                    \"marginTop\": 0,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 0,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 0,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 0,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"width\": {\n                                                    \"name\": \"100%\",\n                                                    \"value\": \"100\"\n                                                },\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"style\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Solid\",\n                                                                \"value\": \"solid\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Dashed\",\n                                                                \"value\": \"dashed\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Dotted\",\n                                                                \"value\": \"dotted\"\n                                                            }\n                                                        ]\n                                                    },\n                                                    {\n                                                        \"key\": \"thickness\"\n                                                    },\n                                                    {\n                                                        \"key\": \"color\"\n                                                    },\n                                                    {\n                                                        \"key\": \"width\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"10%\",\n                                                                \"value\": \"10\"\n                                                            },\n                                                            {\n                                                                \"name\": \"20%\",\n                                                                \"value\": \"20\"\n                                                            },\n                                                            {\n                                                                \"name\": \"25%\",\n                                                                \"value\": \"25\"\n                                                            },\n                                                            {\n                                                                \"name\": \"30%\",\n                                                                \"value\": \"30\"\n                                                            },\n                                                            {\n                                                                \"name\": \"40%\",\n                                                                \"value\": \"40\"\n                                                            },\n                                                            {\n                                                                \"name\": \"50%\",\n                                                                \"value\": \"50\"\n                                                            },\n                                                            {\n                                                                \"name\": \"60%\",\n                                                                \"value\": \"60\"\n                                                            },\n                                                            {\n                                                                \"name\": \"70%\",\n                                                                \"value\": \"70\"\n                                                            },\n                                                            {\n                                                                \"name\": \"75%\",\n                                                                \"value\": \"75\"\n                                                            },\n                                                            {\n                                                                \"name\": \"80%\",\n                                                                \"value\": \"80\"\n                                                            },\n                                                            {\n                                                                \"name\": \"90%\",\n                                                                \"value\": \"90\"\n                                                            },\n                                                            {\n                                                                \"name\": \"100%\",\n                                                                \"value\": \"100\"\n                                                            }\n                                                        ]\n                                                    },\n                                                    {\n                                                        \"key\": \"position\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Left\",\n                                                                \"value\": \"left\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Center\",\n                                                                \"value\": \"center\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Right\",\n                                                                \"value\": \"right\"\n                                                            }\n                                                        ]\n                                                    }\n                                                ],\n                                                \"position\": {\n                                                    \"name\": \"Center\",\n                                                    \"value\": \"center\"\n                                                },\n                                                \"thickness\": 3,\n                                                \"field_name\": \"2100658e-e35a-44d9-9cf6-a1d1f9098168\",\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"dividerStyle\": \"solid\",\n                                                \"computedStyle\": {\n                                                    \"margin\": \"0px 0px 0px 0px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                }\n                                            }\n                                        ],\n                                        \"pctWidth\": 100,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"100%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    }\n                                ],\n                                \"uuid\": \"7ed450e7-d86b-4cab-9230-93549e8db003\",\n                                \"style\": {\n                                    \"width\": 600,\n                                    \"padding\": 0,\n                                    \"borderAll\": true,\n                                    \"cornerAll\": true,\n                                    \"marginAll\": false,\n                                    \"marginTop\": 0,\n                                    \"widthUnit\": \"pixel\",\n                                    \"background\": \"transparent\",\n                                    \"paddingAll\": true,\n                                    \"paddingTop\": 0,\n                                    \"borderColor\": \"#999\",\n                                    \"borderStyle\": \"solid\",\n                                    \"borderWidth\": 0,\n                                    \"paddingLeft\": 0,\n                                    \"borderRadius\": 0,\n                                    \"marginBottom\": 0,\n                                    \"paddingRight\": 0,\n                                    \"paddingBottom\": 0,\n                                    \"borderTopColor\": \"#999\",\n                                    \"borderTopStyle\": \"solid\",\n                                    \"borderTopWidth\": 0,\n                                    \"backgroundImage\": null,\n                                    \"borderLeftColor\": \"#999\",\n                                    \"borderLeftStyle\": \"solid\",\n                                    \"borderLeftWidth\": 0,\n                                    \"borderRightColor\": \"#999\",\n                                    \"borderRightStyle\": \"solid\",\n                                    \"borderRightWidth\": 0,\n                                    \"borderBottomColor\": \"#999\",\n                                    \"borderBottomStyle\": \"solid\",\n                                    \"borderBottomWidth\": 0,\n                                    \"backgroundImageSize\": \"cover\",\n                                    \"borderTopLeftRadius\": 0,\n                                    \"borderTopRightRadius\": 0,\n                                    \"backgroundImageRepeat\": \"on\",\n                                    \"borderBottomLeftRadius\": 0,\n                                    \"borderBottomRightRadius\": 0,\n                                    \"backgroundImageVerticalPosition\": \"top\",\n                                    \"backgroundImageHorizontalPosition\": \"left\"\n                                },\n                                \"contentStyle\": {},\n                                \"computedStyle\": {\n                                    \"width\": \"100%\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0 0px 0\",\n                                    \"max-width\": \"600px\"\n                                },\n                                \"computedContentStyle\": {\n                                    \"width\": \"600px\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0px 0px 0px\",\n                                    \"max-width\": \"100%\",\n                                    \"box-sizing\": \"border-box\"\n                                }\n                            }\n                        ],\n                        \"uuid\": \"87c91954-6926-4ede-ac0c-edb099b26c66\",\n                        \"style\": {\n                            \"width\": 100,\n                            \"margin\": 0,\n                            \"padding\": 0,\n                            \"maxWidth\": 1200,\n                            \"borderAll\": true,\n                            \"cornerAll\": true,\n                            \"marginTop\": 0,\n                            \"widthUnit\": \"percent\",\n                            \"background\": \"#2196F3\",\n                            \"paddingAll\": false,\n                            \"paddingTop\": 10,\n                            \"borderColor\": \"#999\",\n                            \"borderStyle\": \"solid\",\n                            \"borderWidth\": 0,\n                            \"hasMaxWidth\": false,\n                            \"paddingLeft\": 0,\n                            \"borderRadius\": 0,\n                            \"contentWidth\": 100,\n                            \"marginBottom\": 0,\n                            \"paddingRight\": 0,\n                            \"paddingBottom\": 0,\n                            \"borderTopColor\": \"#999\",\n                            \"borderTopStyle\": \"solid\",\n                            \"borderTopWidth\": 0,\n                            \"backgroundImage\": null,\n                            \"borderLeftColor\": \"#999\",\n                            \"borderLeftStyle\": \"solid\",\n                            \"borderLeftWidth\": 0,\n                            \"borderRightColor\": \"#999\",\n                            \"borderRightStyle\": \"solid\",\n                            \"borderRightWidth\": 0,\n                            \"borderBottomColor\": \"#999\",\n                            \"borderBottomStyle\": \"solid\",\n                            \"borderBottomWidth\": 0,\n                            \"backgroundImageSize\": \"cover\",\n                            \"borderTopLeftRadius\": 0,\n                            \"borderTopRightRadius\": 0,\n                            \"backgroundImageRepeat\": \"on\",\n                            \"borderBottomLeftRadius\": 0,\n                            \"borderBottomRightRadius\": 0,\n                            \"backgroundImageVerticalPosition\": \"top\",\n                            \"backgroundImageHorizontalPosition\": \"left\"\n                        },\n                        \"computedStyle\": {\n                            \"width\": \"100%\",\n                            \"margin\": \"0px auto 0px auto\"\n                        },\n                        \"contentClasses\": [],\n                        \"computedContentStyle\": {\n                            \"margin\": \"0 auto\",\n                            \"padding\": \"10px 0px 0px 0px\",\n                            \"max-width\": \"100%\",\n                            \"box-sizing\": \"border-box\",\n                            \"background-color\": \"#2196F3\"\n                        }\n                    },\n                    {\n                        \"rows\": [\n                            {\n                                \"cols\": [\n                                    {\n                                        \"uuid\": \"eebf1916-ec33-4e2e-9e03-0ad0e61018e6\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 12,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"image\",\n                                                \"name\": \"Image\",\n                                                \"show\": true,\n                                                \"type\": \"image\",\n                                                \"uuid\": \"ca80e616-e491-4607-b944-3d42efb86e61\",\n                                                \"image\": {\n                                                    \"id\": \"937660e5-007a-4a29-8ca6-49ea8aea69f9\",\n                                                    \"key\": \"937660e5-007a-4a29-8ca6-49ea8aea69f9.png\",\n                                                    \"url\": \"https://usercontent.evos.io/937660e5-007a-4a29-8ca6-49ea8aea69f9.png\",\n                                                    \"name\": \"Logo (Colour RGB).png\",\n                                                    \"bucket\": \"evos-file-cdn\",\n                                                    \"created\": \"2017-03-19T20:44:35.508708Z\",\n                                                    \"resizedUrl\": \"https://evos.imgix.net/937660e5-007a-4a29-8ca6-49ea8aea69f9.png?ixjsv=1.1.2&fit=crop&q=100&w=250&dpr=1\",\n                                                    \"size_bytes\": 73422,\n                                                    \"content_type\": \"image/png\",\n                                                    \"thumbnail_url\": \"https://evos.imgix.net/937660e5-007a-4a29-8ca6-49ea8aea69f9.png?dpr=2&h=100&w=200&ixlib=python-0.2.0&s=7aead8ad1cf45bfc0ae24a53e1a322e5\",\n                                                    \"size_formatted\": \"71.7KB\"\n                                                },\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": false,\n                                                    \"marginTop\": 25,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 25,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"altText\": \"\",\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"image\"\n                                                    },\n                                                    {\n                                                        \"key\": \"position\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Left\",\n                                                                \"value\": \"left\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Center\",\n                                                                \"value\": \"center\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Right\",\n                                                                \"value\": \"right\"\n                                                            }\n                                                        ]\n                                                    }\n                                                ],\n                                                \"imageURL\": \"\",\n                                                \"maxWidth\": 250,\n                                                \"position\": {\n                                                    \"name\": \"Center\",\n                                                    \"value\": \"center\"\n                                                },\n                                                \"fullWidth\": false,\n                                                \"maxHeight\": 62,\n                                                \"field_name\": \"ca80e616-e491-4607-b944-3d42efb86e61\",\n                                                \"fullHeight\": true,\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"computedStyle\": {\n                                                    \"margin\": \"25px 10px 25px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                }\n                                            },\n                                            {\n                                                \"key\": \"richtext\",\n                                                \"name\": \"Text\",\n                                                \"show\": true,\n                                                \"type\": \"richtext\",\n                                                \"uuid\": \"cd063866-105e-4f73-bba7-5218bd607573\",\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": false,\n                                                    \"marginTop\": 10,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"transparent\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": true,\n                                                    \"paddingTop\": 0,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 30,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 0,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"richtext\",\n                                                        \"noTemplate\": true\n                                                    }\n                                                ],\n                                                \"richtext\": \"<p style=\\\"text-align:center\\\"><span style=\\\"font-size:20px\\\"><span style=\\\"font-family:Fira Sans,sans-serif\\\"><span style=\\\"line-height:1.25\\\">Thank you for taking our form!</span></span></span></p>\\n\",\n                                                \"field_name\": \"cd063866-105e-4f73-bba7-5218bd607573\",\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"computedStyle\": {\n                                                    \"margin\": \"10px 10px 30px 10px\",\n                                                    \"padding\": \"0px 0px 0px 0px\"\n                                                }\n                                            }\n                                        ],\n                                        \"pctWidth\": 100,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"100%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    }\n                                ],\n                                \"uuid\": \"5a8634f6-c945-4fa0-8b0c-412e385bfd33\",\n                                \"style\": {\n                                    \"width\": 900,\n                                    \"padding\": 0,\n                                    \"borderAll\": true,\n                                    \"cornerAll\": true,\n                                    \"marginAll\": false,\n                                    \"marginTop\": 0,\n                                    \"widthUnit\": \"pixel\",\n                                    \"background\": \"transparent\",\n                                    \"paddingAll\": true,\n                                    \"paddingTop\": 0,\n                                    \"borderColor\": \"#999\",\n                                    \"borderStyle\": \"solid\",\n                                    \"borderWidth\": 0,\n                                    \"paddingLeft\": 0,\n                                    \"borderRadius\": 0,\n                                    \"marginBottom\": 0,\n                                    \"paddingRight\": 0,\n                                    \"paddingBottom\": 0,\n                                    \"borderTopColor\": \"#999\",\n                                    \"borderTopStyle\": \"solid\",\n                                    \"borderTopWidth\": 0,\n                                    \"backgroundImage\": null,\n                                    \"borderLeftColor\": \"#999\",\n                                    \"borderLeftStyle\": \"solid\",\n                                    \"borderLeftWidth\": 0,\n                                    \"borderRightColor\": \"#999\",\n                                    \"borderRightStyle\": \"solid\",\n                                    \"borderRightWidth\": 0,\n                                    \"borderBottomColor\": \"#999\",\n                                    \"borderBottomStyle\": \"solid\",\n                                    \"borderBottomWidth\": 0,\n                                    \"backgroundImageSize\": \"cover\",\n                                    \"borderTopLeftRadius\": 0,\n                                    \"borderTopRightRadius\": 0,\n                                    \"backgroundImageRepeat\": \"on\",\n                                    \"borderBottomLeftRadius\": 0,\n                                    \"borderBottomRightRadius\": 0,\n                                    \"backgroundImageVerticalPosition\": \"top\",\n                                    \"backgroundImageHorizontalPosition\": \"left\"\n                                },\n                                \"contentStyle\": {},\n                                \"computedStyle\": {\n                                    \"width\": \"100%\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0 0px 0\",\n                                    \"max-width\": \"900px\"\n                                },\n                                \"computedContentStyle\": {\n                                    \"width\": \"900px\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0px 0px 0px\",\n                                    \"max-width\": \"100%\",\n                                    \"box-sizing\": \"border-box\"\n                                }\n                            }\n                        ],\n                        \"style\": {\n                            \"width\": 100,\n                            \"margin\": 0,\n                            \"padding\": 0,\n                            \"maxWidth\": 900,\n                            \"borderAll\": false,\n                            \"cornerAll\": true,\n                            \"marginAll\": true,\n                            \"marginTop\": 0,\n                            \"widthUnit\": \"percent\",\n                            \"background\": \"#ffffff\",\n                            \"paddingAll\": false,\n                            \"paddingTop\": 0,\n                            \"borderColor\": \"#cccccc\",\n                            \"borderStyle\": \"solid\",\n                            \"borderWidth\": 0,\n                            \"hasMaxWidth\": true,\n                            \"paddingLeft\": 30,\n                            \"borderRadius\": 0,\n                            \"contentWidth\": 100,\n                            \"marginBottom\": 0,\n                            \"paddingRight\": 30,\n                            \"paddingBottom\": 0,\n                            \"borderTopColor\": \"#999\",\n                            \"borderTopStyle\": \"solid\",\n                            \"borderTopWidth\": 0,\n                            \"backgroundImage\": null,\n                            \"borderLeftColor\": \"#999\",\n                            \"borderLeftStyle\": \"solid\",\n                            \"borderLeftWidth\": 1,\n                            \"borderRightColor\": \"#999\",\n                            \"borderRightStyle\": \"solid\",\n                            \"borderRightWidth\": 1,\n                            \"borderBottomColor\": \"#999\",\n                            \"borderBottomStyle\": \"solid\",\n                            \"borderBottomWidth\": 1,\n                            \"backgroundImageSize\": \"cover\",\n                            \"borderTopLeftRadius\": 0,\n                            \"borderTopRightRadius\": 0,\n                            \"backgroundImageRepeat\": \"on\",\n                            \"borderBottomLeftRadius\": 0,\n                            \"borderBottomRightRadius\": 0,\n                            \"backgroundImageVerticalPosition\": \"top\",\n                            \"backgroundImageHorizontalPosition\": \"left\"\n                        },\n                        \"computedStyle\": {\n                            \"width\": \"100%\",\n                            \"margin\": \"0px auto 0px auto\",\n                            \"max-width\": \"900px\"\n                        },\n                        \"contentClasses\": [],\n                        \"computedContentStyle\": {\n                            \"width\": \"900px\",\n                            \"margin\": \"0 auto\",\n                            \"padding\": \"0px 30px 0px 30px\",\n                            \"max-width\": \"100%\",\n                            \"box-sizing\": \"border-box\",\n                            \"border-left\": \"1px solid #cccccc\",\n                            \"border-right\": \"1px solid #cccccc\",\n                            \"border-bottom\": \"1px solid #cccccc\",\n                            \"background-color\": \"#ffffff\"\n                        }\n                    },\n                    {\n                        \"name\": \"Blank Section\",\n                        \"rows\": [\n                            {\n                                \"cols\": [\n                                    {\n                                        \"uuid\": \"746a01c0-66ee-4a07-8a45-ccacb1eee882\",\n                                        \"style\": {\n                                            \"align\": \"top\",\n                                            \"margin\": 0,\n                                            \"padding\": 0,\n                                            \"borderAll\": true,\n                                            \"cornerAll\": true,\n                                            \"marginAll\": true,\n                                            \"marginTop\": 0,\n                                            \"background\": \"transparent\",\n                                            \"marginLeft\": 0,\n                                            \"paddingAll\": true,\n                                            \"paddingTop\": 0,\n                                            \"borderColor\": \"#999\",\n                                            \"borderStyle\": \"solid\",\n                                            \"borderWidth\": 0,\n                                            \"marginRight\": 0,\n                                            \"paddingLeft\": 0,\n                                            \"borderRadius\": 0,\n                                            \"marginBottom\": 0,\n                                            \"paddingRight\": 0,\n                                            \"paddingBottom\": 0,\n                                            \"borderTopColor\": \"#999\",\n                                            \"borderTopStyle\": \"solid\",\n                                            \"borderTopWidth\": 0,\n                                            \"backgroundImage\": null,\n                                            \"borderLeftColor\": \"#999\",\n                                            \"borderLeftStyle\": \"solid\",\n                                            \"borderLeftWidth\": 0,\n                                            \"borderRightColor\": \"#999\",\n                                            \"borderRightStyle\": \"solid\",\n                                            \"borderRightWidth\": 0,\n                                            \"borderBottomColor\": \"#999\",\n                                            \"borderBottomStyle\": \"solid\",\n                                            \"borderBottomWidth\": 0,\n                                            \"backgroundImageSize\": \"cover\",\n                                            \"borderTopLeftRadius\": 0,\n                                            \"borderTopRightRadius\": 0,\n                                            \"backgroundImageRepeat\": \"on\",\n                                            \"borderBottomLeftRadius\": 0,\n                                            \"borderBottomRightRadius\": 0,\n                                            \"backgroundImageVerticalPosition\": \"top\",\n                                            \"backgroundImageHorizontalPosition\": \"left\"\n                                        },\n                                        \"width\": 12,\n                                        \"content\": [\n                                            {\n                                                \"key\": \"divider\",\n                                                \"name\": \"Solid\",\n                                                \"show\": true,\n                                                \"type\": \"divider\",\n                                                \"uuid\": \"bf20889f-6535-4eae-82fa-7c8d34d770ec\",\n                                                \"color\": null,\n                                                \"style\": {\n                                                    \"width\": 100,\n                                                    \"margin\": 10,\n                                                    \"padding\": 0,\n                                                    \"borderAll\": true,\n                                                    \"cornerAll\": true,\n                                                    \"marginAll\": true,\n                                                    \"marginTop\": 10,\n                                                    \"widthUnit\": \"percent\",\n                                                    \"background\": \"rgba(0, 0, 0, 0)\",\n                                                    \"marginLeft\": 10,\n                                                    \"paddingAll\": false,\n                                                    \"paddingTop\": 10,\n                                                    \"borderColor\": \"#999\",\n                                                    \"borderStyle\": \"solid\",\n                                                    \"borderWidth\": 0,\n                                                    \"marginRight\": 10,\n                                                    \"paddingLeft\": 0,\n                                                    \"borderRadius\": 0,\n                                                    \"marginBottom\": 10,\n                                                    \"paddingRight\": 0,\n                                                    \"paddingBottom\": 10,\n                                                    \"borderTopColor\": \"#999\",\n                                                    \"borderTopStyle\": \"solid\",\n                                                    \"borderTopWidth\": 0,\n                                                    \"borderLeftColor\": \"#999\",\n                                                    \"borderLeftStyle\": \"solid\",\n                                                    \"borderLeftWidth\": 0,\n                                                    \"borderRightColor\": \"#999\",\n                                                    \"borderRightStyle\": \"solid\",\n                                                    \"borderRightWidth\": 0,\n                                                    \"borderBottomColor\": \"#999\",\n                                                    \"borderBottomStyle\": \"solid\",\n                                                    \"borderBottomWidth\": 0,\n                                                    \"borderTopLeftRadius\": 0,\n                                                    \"borderTopRightRadius\": 0,\n                                                    \"borderBottomLeftRadius\": 0,\n                                                    \"borderBottomRightRadius\": 0\n                                                },\n                                                \"width\": {\n                                                    \"name\": \"100%\",\n                                                    \"value\": \"100\"\n                                                },\n                                                \"widgets\": [\n                                                    {\n                                                        \"key\": \"style\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Solid\",\n                                                                \"value\": \"solid\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Dashed\",\n                                                                \"value\": \"dashed\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Dotted\",\n                                                                \"value\": \"dotted\"\n                                                            }\n                                                        ]\n                                                    },\n                                                    {\n                                                        \"key\": \"thickness\"\n                                                    },\n                                                    {\n                                                        \"key\": \"color\"\n                                                    },\n                                                    {\n                                                        \"key\": \"width\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"10%\",\n                                                                \"value\": \"10\"\n                                                            },\n                                                            {\n                                                                \"name\": \"20%\",\n                                                                \"value\": \"20\"\n                                                            },\n                                                            {\n                                                                \"name\": \"25%\",\n                                                                \"value\": \"25\"\n                                                            },\n                                                            {\n                                                                \"name\": \"30%\",\n                                                                \"value\": \"30\"\n                                                            },\n                                                            {\n                                                                \"name\": \"40%\",\n                                                                \"value\": \"40\"\n                                                            },\n                                                            {\n                                                                \"name\": \"50%\",\n                                                                \"value\": \"50\"\n                                                            },\n                                                            {\n                                                                \"name\": \"60%\",\n                                                                \"value\": \"60\"\n                                                            },\n                                                            {\n                                                                \"name\": \"70%\",\n                                                                \"value\": \"70\"\n                                                            },\n                                                            {\n                                                                \"name\": \"75%\",\n                                                                \"value\": \"75\"\n                                                            },\n                                                            {\n                                                                \"name\": \"80%\",\n                                                                \"value\": \"80\"\n                                                            },\n                                                            {\n                                                                \"name\": \"90%\",\n                                                                \"value\": \"90\"\n                                                            },\n                                                            {\n                                                                \"name\": \"100%\",\n                                                                \"value\": \"100\"\n                                                            }\n                                                        ]\n                                                    },\n                                                    {\n                                                        \"key\": \"position\",\n                                                        \"options\": [\n                                                            {\n                                                                \"name\": \"Left\",\n                                                                \"value\": \"left\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Center\",\n                                                                \"value\": \"center\"\n                                                            },\n                                                            {\n                                                                \"name\": \"Right\",\n                                                                \"value\": \"right\"\n                                                            }\n                                                        ]\n                                                    }\n                                                ],\n                                                \"position\": {\n                                                    \"name\": \"Center\",\n                                                    \"value\": \"center\"\n                                                },\n                                                \"thickness\": 3,\n                                                \"field_name\": \"bf20889f-6535-4eae-82fa-7c8d34d770ec\",\n                                                \"numDecimals\": 2,\n                                                \"previewHTML\": {},\n                                                \"dividerStyle\": \"solid\",\n                                                \"computedStyle\": {\n                                                    \"margin\": \"10px 10px 10px 10px\",\n                                                    \"padding\": \"10px 0px 10px 0px\",\n                                                    \"background-color\": \"rgba(0, 0, 0, 0)\"\n                                                }\n                                            }\n                                        ],\n                                        \"pctWidth\": 100,\n                                        \"computedStyle\": {\n                                            \"padding\": \"0px 0px 0px 0px\",\n                                            \"justify-content\": \"flex-start\"\n                                        },\n                                        \"computedWidthStyle\": {\n                                            \"width\": \"100%\",\n                                            \"padding\": \"0px 0px 0px 0px\"\n                                        }\n                                    }\n                                ],\n                                \"uuid\": \"7ed450e7-d86b-4cab-9230-93549e8db003\",\n                                \"style\": {\n                                    \"width\": 600,\n                                    \"padding\": 0,\n                                    \"borderAll\": true,\n                                    \"cornerAll\": true,\n                                    \"marginAll\": false,\n                                    \"marginTop\": 0,\n                                    \"widthUnit\": \"pixel\",\n                                    \"background\": \"transparent\",\n                                    \"paddingAll\": true,\n                                    \"paddingTop\": 0,\n                                    \"borderColor\": \"#999\",\n                                    \"borderStyle\": \"solid\",\n                                    \"borderWidth\": 0,\n                                    \"paddingLeft\": 0,\n                                    \"borderRadius\": 0,\n                                    \"marginBottom\": 0,\n                                    \"paddingRight\": 0,\n                                    \"paddingBottom\": 0,\n                                    \"borderTopColor\": \"#999\",\n                                    \"borderTopStyle\": \"solid\",\n                                    \"borderTopWidth\": 0,\n                                    \"backgroundImage\": null,\n                                    \"borderLeftColor\": \"#999\",\n                                    \"borderLeftStyle\": \"solid\",\n                                    \"borderLeftWidth\": 0,\n                                    \"borderRightColor\": \"#999\",\n                                    \"borderRightStyle\": \"solid\",\n                                    \"borderRightWidth\": 0,\n                                    \"borderBottomColor\": \"#999\",\n                                    \"borderBottomStyle\": \"solid\",\n                                    \"borderBottomWidth\": 0,\n                                    \"backgroundImageSize\": \"cover\",\n                                    \"borderTopLeftRadius\": 0,\n                                    \"borderTopRightRadius\": 0,\n                                    \"backgroundImageRepeat\": \"on\",\n                                    \"borderBottomLeftRadius\": 0,\n                                    \"borderBottomRightRadius\": 0,\n                                    \"backgroundImageVerticalPosition\": \"top\",\n                                    \"backgroundImageHorizontalPosition\": \"left\"\n                                },\n                                \"contentStyle\": {},\n                                \"computedStyle\": {\n                                    \"width\": \"100%\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0 0px 0\",\n                                    \"max-width\": \"600px\"\n                                },\n                                \"computedContentStyle\": {\n                                    \"width\": \"600px\",\n                                    \"margin\": \"0 auto\",\n                                    \"padding\": \"0px 0px 0px 0px\",\n                                    \"max-width\": \"100%\",\n                                    \"box-sizing\": \"border-box\"\n                                }\n                            }\n                        ],\n                        \"uuid\": \"87c91954-6926-4ede-ac0c-edb099b26c66\",\n                        \"style\": {\n                            \"width\": 100,\n                            \"margin\": 0,\n                            \"padding\": 0,\n                            \"maxWidth\": 1200,\n                            \"borderAll\": true,\n                            \"cornerAll\": true,\n                            \"marginTop\": 0,\n                            \"widthUnit\": \"percent\",\n                            \"background\": \"transparent\",\n                            \"paddingAll\": true,\n                            \"paddingTop\": 0,\n                            \"borderColor\": \"#999\",\n                            \"borderStyle\": \"solid\",\n                            \"borderWidth\": 0,\n                            \"hasMaxWidth\": false,\n                            \"paddingLeft\": 0,\n                            \"borderRadius\": 0,\n                            \"contentWidth\": 100,\n                            \"marginBottom\": 0,\n                            \"paddingRight\": 0,\n                            \"paddingBottom\": 0,\n                            \"borderTopColor\": \"#999\",\n                            \"borderTopStyle\": \"solid\",\n                            \"borderTopWidth\": 0,\n                            \"backgroundImage\": null,\n                            \"borderLeftColor\": \"#999\",\n                            \"borderLeftStyle\": \"solid\",\n                            \"borderLeftWidth\": 0,\n                            \"borderRightColor\": \"#999\",\n                            \"borderRightStyle\": \"solid\",\n                            \"borderRightWidth\": 0,\n                            \"borderBottomColor\": \"#999\",\n                            \"borderBottomStyle\": \"solid\",\n                            \"borderBottomWidth\": 0,\n                            \"backgroundImageSize\": \"cover\",\n                            \"borderTopLeftRadius\": 0,\n                            \"borderTopRightRadius\": 0,\n                            \"backgroundImageRepeat\": \"on\",\n                            \"borderBottomLeftRadius\": 0,\n                            \"borderBottomRightRadius\": 0,\n                            \"backgroundImageVerticalPosition\": \"top\",\n                            \"backgroundImageHorizontalPosition\": \"left\"\n                        },\n                        \"computedStyle\": {\n                            \"width\": \"100%\",\n                            \"margin\": \"0px auto 0px auto\"\n                        },\n                        \"contentClasses\": [],\n                        \"computedContentStyle\": {\n                            \"margin\": \"0 auto\",\n                            \"padding\": \"0px 0px 0px 0px\",\n                            \"max-width\": \"100%\",\n                            \"box-sizing\": \"border-box\"\n                        }\n                    }\n                ],\n                \"pageGroup\": \"thank_you_page\"\n            }\n        ],\n        \"pageGroups\": [\n            {\n                \"key\": \"form_page\",\n                \"max\": 1,\n                \"name\": \"Form Page\",\n                \"allowedBlocks\": [\n                    \"Form Fields\",\n                    \"Contact Fields\",\n                    \"Custom Fields\"\n                ]\n            },\n            {\n                \"key\": \"thank_you_page\",\n                \"max\": 1,\n                \"name\": \"Thank You Page\"\n            }\n        ]\n    },\n    \"subscribers\": [],\n    \"submit_action\": \"page\",\n    \"submit_url\": \"\",\n    \"pass_variables_on_redirect\": false,\n    \"fields\": [\n        {\n            \"id\": \"6aabb2fe-da24-4949-a081-34b4686cf060\",\n            \"order\": 0,\n            \"uid\": \"3e09b649-c243-42a2-9772-a41622c53429\",\n            \"survey\": null,\n            \"form\": \"dac5cfa9-01dd-42e9-8956-55599acc4b98\",\n            \"name\": \"First Name\",\n            \"type\": \"textbox\",\n            \"storage_type\": \"text\",\n            \"meta\": {\n                \"key\": \"textbox\",\n                \"max\": 1,\n                \"icon\": \"component-input.png\",\n                \"name\": \"First Name\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"3e09b649-c243-42a2-9772-a41622c53429\",\n                \"label\": {\n                    \"text\": \"First Name\"\n                },\n                \"style\": {\n                    \"width\": 100,\n                    \"margin\": 10,\n                    \"padding\": 0,\n                    \"borderAll\": true,\n                    \"cornerAll\": true,\n                    \"marginAll\": true,\n                    \"marginTop\": 10,\n                    \"widthUnit\": \"percent\",\n                    \"background\": \"transparent\",\n                    \"marginLeft\": 10,\n                    \"paddingAll\": true,\n                    \"paddingTop\": 0,\n                    \"borderColor\": \"#999\",\n                    \"borderStyle\": \"solid\",\n                    \"borderWidth\": 0,\n                    \"marginRight\": 10,\n                    \"paddingLeft\": 0,\n                    \"borderRadius\": 0,\n                    \"marginBottom\": 10,\n                    \"paddingRight\": 0,\n                    \"paddingBottom\": 0,\n                    \"borderTopColor\": \"#999\",\n                    \"borderTopStyle\": \"solid\",\n                    \"borderTopWidth\": 0,\n                    \"borderLeftColor\": \"#999\",\n                    \"borderLeftStyle\": \"solid\",\n                    \"borderLeftWidth\": 0,\n                    \"borderRightColor\": \"#999\",\n                    \"borderRightStyle\": \"solid\",\n                    \"borderRightWidth\": 0,\n                    \"borderBottomColor\": \"#999\",\n                    \"borderBottomStyle\": \"solid\",\n                    \"borderBottomWidth\": 0,\n                    \"borderTopLeftRadius\": 0,\n                    \"borderTopRightRadius\": 0,\n                    \"borderBottomLeftRadius\": 0,\n                    \"borderBottomRightRadius\": 0\n                },\n                \"value\": \"\",\n                \"widgets\": [\n                    {\n                        \"key\": \"label\"\n                    },\n                    {\n                        \"key\": \"placeholder\"\n                    },\n                    {\n                        \"key\": \"isRequired\"\n                    }\n                ],\n                \"required\": false,\n                \"field_name\": \"first_name\",\n                \"isRequired\": false,\n                \"numDecimals\": 2,\n                \"previewHTML\": {},\n                \"computedStyle\": {\n                    \"margin\": \"10px 10px 10px 10px\",\n                    \"padding\": \"0px 0px 0px 0px\"\n                }\n            },\n            \"created\": \"2019-04-29T12:05:40.635186-05:00\",\n            \"choices\": []\n        },\n        {\n            \"id\": \"187cb5e7-06ad-4758-98d9-7739143457f2\",\n            \"order\": 1,\n            \"uid\": \"3665dec2-d225-4937-a4d3-dc97cc5928a5\",\n            \"survey\": null,\n            \"form\": \"dac5cfa9-01dd-42e9-8956-55599acc4b98\",\n            \"name\": \"Last Name\",\n            \"type\": \"textbox\",\n            \"storage_type\": \"text\",\n            \"meta\": {\n                \"key\": \"textbox\",\n                \"max\": 1,\n                \"icon\": \"component-input.png\",\n                \"name\": \"Last Name\",\n                \"show\": true,\n                \"type\": \"textbox\",\n                \"uuid\": \"3665dec2-d225-4937-a4d3-dc97cc5928a5\",\n                \"label\": {\n                    \"text\": \"Last Name\"\n                },\n                \"style\": {\n                    \"width\": 100,\n                    \"margin\": 10,\n                    \"padding\": 0,\n                    \"borderAll\": true,\n                    \"cornerAll\": true,\n                    \"marginAll\": true,\n                    \"marginTop\": 10,\n                    \"widthUnit\": \"percent\",\n                    \"background\": \"transparent\",\n                    \"marginLeft\": 10,\n                    \"paddingAll\": true,\n                    \"paddingTop\": 0,\n                    \"borderColor\": \"#999\",\n                    \"borderStyle\": \"solid\",\n                    \"borderWidth\": 0,\n                    \"marginRight\": 10,\n                    \"paddingLeft\": 0,\n                    \"borderRadius\": 0,\n                    \"marginBottom\": 10,\n                    \"paddingRight\": 0,\n                    \"paddingBottom\": 0,\n                    \"borderTopColor\": \"#999\",\n                    \"borderTopStyle\": \"solid\",\n                    \"borderTopWidth\": 0,\n                    \"borderLeftColor\": \"#999\",\n                    \"borderLeftStyle\": \"solid\",\n                    \"borderLeftWidth\": 0,\n                    \"borderRightColor\": \"#999\",\n                    \"borderRightStyle\": \"solid\",\n                    \"borderRightWidth\": 0,\n                    \"borderBottomColor\": \"#999\",\n                    \"borderBottomStyle\": \"solid\",\n                    \"borderBottomWidth\": 0,\n                    \"borderTopLeftRadius\": 0,\n                    \"borderTopRightRadius\": 0,\n                    \"borderBottomLeftRadius\": 0,\n                    \"borderBottomRightRadius\": 0\n                },\n                \"value\": \"\",\n                \"widgets\": [\n                    {\n                        \"key\": \"label\"\n                    },\n                    {\n                        \"key\": \"placeholder\"\n                    },\n                    {\n                        \"key\": \"isRequired\"\n                    }\n                ],\n                \"required\": false,\n                \"field_name\": \"last_name\",\n                \"isRequired\": false,\n                \"numDecimals\": 2,\n                \"previewHTML\": {},\n                \"computedStyle\": {\n                    \"margin\": \"10px 10px 10px 10px\",\n                    \"padding\": \"0px 0px 0px 0px\"\n                }\n            },\n            \"created\": \"2019-04-29T12:05:40.635369-05:00\",\n            \"choices\": []\n        },\n        {\n            \"id\": \"942b382a-515e-4fdd-a58c-7258aa2f9bf0\",\n            \"order\": 2,\n            \"uid\": \"3866d900-aefd-49ef-b6a2-3da99078cb48\",\n            \"survey\": null,\n            \"form\": \"dac5cfa9-01dd-42e9-8956-55599acc4b98\",\n            \"name\": \"Email\",\n            \"type\": \"email\",\n            \"storage_type\": \"text\",\n            \"meta\": {\n                \"key\": \"email\",\n                \"max\": 1,\n                \"icon\": \"component-input.png\",\n                \"name\": \"Email\",\n                \"show\": true,\n                \"type\": \"email\",\n                \"uuid\": \"3866d900-aefd-49ef-b6a2-3da99078cb48\",\n                \"label\": {\n                    \"text\": \"Email\"\n                },\n                \"style\": {\n                    \"width\": 100,\n                    \"margin\": 10,\n                    \"padding\": 0,\n                    \"borderAll\": true,\n                    \"cornerAll\": true,\n                    \"marginAll\": true,\n                    \"marginTop\": 10,\n                    \"widthUnit\": \"percent\",\n                    \"background\": \"transparent\",\n                    \"marginLeft\": 10,\n                    \"paddingAll\": true,\n                    \"paddingTop\": 0,\n                    \"borderColor\": \"#999\",\n                    \"borderStyle\": \"solid\",\n                    \"borderWidth\": 0,\n                    \"marginRight\": 10,\n                    \"paddingLeft\": 0,\n                    \"borderRadius\": 0,\n                    \"marginBottom\": 10,\n                    \"paddingRight\": 0,\n                    \"paddingBottom\": 0,\n                    \"borderTopColor\": \"#999\",\n                    \"borderTopStyle\": \"solid\",\n                    \"borderTopWidth\": 0,\n                    \"borderLeftColor\": \"#999\",\n                    \"borderLeftStyle\": \"solid\",\n                    \"borderLeftWidth\": 0,\n                    \"borderRightColor\": \"#999\",\n                    \"borderRightStyle\": \"solid\",\n                    \"borderRightWidth\": 0,\n                    \"borderBottomColor\": \"#999\",\n                    \"borderBottomStyle\": \"solid\",\n                    \"borderBottomWidth\": 0,\n                    \"borderTopLeftRadius\": 0,\n                    \"borderTopRightRadius\": 0,\n                    \"borderBottomLeftRadius\": 0,\n                    \"borderBottomRightRadius\": 0\n                },\n                \"value\": \"\",\n                \"widgets\": [\n                    {\n                        \"key\": \"label\"\n                    },\n                    {\n                        \"key\": \"placeholder\"\n                    },\n                    {\n                        \"key\": \"isRequired\"\n                    }\n                ],\n                \"required\": false,\n                \"field_name\": \"email\",\n                \"isRequired\": false,\n                \"numDecimals\": 2,\n                \"previewHTML\": {},\n                \"computedStyle\": {\n                    \"margin\": \"10px 10px 10px 10px\",\n                    \"padding\": \"0px 0px 0px 0px\"\n                }\n            },\n            \"created\": \"2019-04-29T12:05:40.635509-05:00\",\n            \"choices\": []\n        }\n    ],\n    \"submit_sequence\": {\n        \"id\": \"03eac637-f175-4821-a0b0-717bdf996814\",\n        \"name\": \"Submit Sequence\",\n        \"steps\": [\n            {\n                \"id\": \"6157444d-4aea-499e-b4ed-b49ec1e3aec8\",\n                \"sequence\": \"03eac637-f175-4821-a0b0-717bdf996814\",\n                \"from_employee\": null,\n                \"email\": {\n                    \"id\": \"3381045c-3e27-4ba7-906f-ac4200a92226\",\n                    \"subject\": \"Plain Text Template\",\n                    \"type\": null,\n                    \"get_type_display\": null,\n                    \"name\": \"Plain Text Template\",\n                    \"mode\": \"SIMPLE\",\n                    \"num_sent\": 0,\n                    \"num_delivered\": 0,\n                    \"num_opened\": 0,\n                    \"num_clicked\": 0,\n                    \"folder\": null,\n                    \"is_enabled\": true,\n                    \"created\": \"2019-05-15T14:14:08.791513-05:00\",\n                    \"updated\": \"2019-05-15T14:14:08.791537-05:00\",\n                    \"parent\": null\n                },\n                \"text\": null,\n                \"delay\": 0,\n                \"time_to_send\": null,\n                \"datetime_to_send\": null,\n                \"published\": false,\n                \"delay_interval\": \"day\",\n                \"schedule_type\": \"immediately\",\n                \"from_address\": \"admin12@evos.io\",\n                \"hardcoded_from_name\": null,\n                \"from_last_active_employee_role\": null,\n                \"from_last_active_employee\": false\n            }\n        ],\n        \"schedule_type\": \"custom\",\n        \"timezone_option\": \"business\"\n    },\n    \"field_blocks\": [\n        {\n            \"key\": \"textbox\",\n            \"max\": 1,\n            \"icon\": \"component-input.png\",\n            \"name\": \"First Name\",\n            \"show\": true,\n            \"type\": \"textbox\",\n            \"uuid\": \"3e09b649-c243-42a2-9772-a41622c53429\",\n            \"label\": {\n                \"text\": \"First Name\"\n            },\n            \"style\": {\n                \"width\": 100,\n                \"margin\": 10,\n                \"padding\": 0,\n                \"borderAll\": true,\n                \"cornerAll\": true,\n                \"marginAll\": true,\n                \"marginTop\": 10,\n                \"widthUnit\": \"percent\",\n                \"background\": \"transparent\",\n                \"marginLeft\": 10,\n                \"paddingAll\": true,\n                \"paddingTop\": 0,\n                \"borderColor\": \"#999\",\n                \"borderStyle\": \"solid\",\n                \"borderWidth\": 0,\n                \"marginRight\": 10,\n                \"paddingLeft\": 0,\n                \"borderRadius\": 0,\n                \"marginBottom\": 10,\n                \"paddingRight\": 0,\n                \"paddingBottom\": 0,\n                \"borderTopColor\": \"#999\",\n                \"borderTopStyle\": \"solid\",\n                \"borderTopWidth\": 0,\n                \"borderLeftColor\": \"#999\",\n                \"borderLeftStyle\": \"solid\",\n                \"borderLeftWidth\": 0,\n                \"borderRightColor\": \"#999\",\n                \"borderRightStyle\": \"solid\",\n                \"borderRightWidth\": 0,\n                \"borderBottomColor\": \"#999\",\n                \"borderBottomStyle\": \"solid\",\n                \"borderBottomWidth\": 0,\n                \"borderTopLeftRadius\": 0,\n                \"borderTopRightRadius\": 0,\n                \"borderBottomLeftRadius\": 0,\n                \"borderBottomRightRadius\": 0\n            },\n            \"value\": \"\",\n            \"widgets\": [\n                {\n                    \"key\": \"label\"\n                },\n                {\n                    \"key\": \"placeholder\"\n                },\n                {\n                    \"key\": \"isRequired\"\n                }\n            ],\n            \"required\": false,\n            \"field_name\": \"first_name\",\n            \"numDecimals\": 2,\n            \"previewHTML\": {},\n            \"computedStyle\": {\n                \"margin\": \"10px 10px 10px 10px\",\n                \"padding\": \"0px 0px 0px 0px\"\n            },\n            \"isRequired\": false\n        },\n        {\n            \"key\": \"textbox\",\n            \"max\": 1,\n            \"icon\": \"component-input.png\",\n            \"name\": \"Last Name\",\n            \"show\": true,\n            \"type\": \"textbox\",\n            \"uuid\": \"3665dec2-d225-4937-a4d3-dc97cc5928a5\",\n            \"label\": {\n                \"text\": \"Last Name\"\n            },\n            \"style\": {\n                \"width\": 100,\n                \"margin\": 10,\n                \"padding\": 0,\n                \"borderAll\": true,\n                \"cornerAll\": true,\n                \"marginAll\": true,\n                \"marginTop\": 10,\n                \"widthUnit\": \"percent\",\n                \"background\": \"transparent\",\n                \"marginLeft\": 10,\n                \"paddingAll\": true,\n                \"paddingTop\": 0,\n                \"borderColor\": \"#999\",\n                \"borderStyle\": \"solid\",\n                \"borderWidth\": 0,\n                \"marginRight\": 10,\n                \"paddingLeft\": 0,\n                \"borderRadius\": 0,\n                \"marginBottom\": 10,\n                \"paddingRight\": 0,\n                \"paddingBottom\": 0,\n                \"borderTopColor\": \"#999\",\n                \"borderTopStyle\": \"solid\",\n                \"borderTopWidth\": 0,\n                \"borderLeftColor\": \"#999\",\n                \"borderLeftStyle\": \"solid\",\n                \"borderLeftWidth\": 0,\n                \"borderRightColor\": \"#999\",\n                \"borderRightStyle\": \"solid\",\n                \"borderRightWidth\": 0,\n                \"borderBottomColor\": \"#999\",\n                \"borderBottomStyle\": \"solid\",\n                \"borderBottomWidth\": 0,\n                \"borderTopLeftRadius\": 0,\n                \"borderTopRightRadius\": 0,\n                \"borderBottomLeftRadius\": 0,\n                \"borderBottomRightRadius\": 0\n            },\n            \"value\": \"\",\n            \"widgets\": [\n                {\n                    \"key\": \"label\"\n                },\n                {\n                    \"key\": \"placeholder\"\n                },\n                {\n                    \"key\": \"isRequired\"\n                }\n            ],\n            \"required\": false,\n            \"field_name\": \"last_name\",\n            \"numDecimals\": 2,\n            \"previewHTML\": {},\n            \"computedStyle\": {\n                \"margin\": \"10px 10px 10px 10px\",\n                \"padding\": \"0px 0px 0px 0px\"\n            },\n            \"isRequired\": false\n        },\n        {\n            \"key\": \"email\",\n            \"max\": 1,\n            \"icon\": \"component-input.png\",\n            \"name\": \"Email\",\n            \"show\": true,\n            \"type\": \"email\",\n            \"uuid\": \"3866d900-aefd-49ef-b6a2-3da99078cb48\",\n            \"label\": {\n                \"text\": \"Email\"\n            },\n            \"style\": {\n                \"width\": 100,\n                \"margin\": 10,\n                \"padding\": 0,\n                \"borderAll\": true,\n                \"cornerAll\": true,\n                \"marginAll\": true,\n                \"marginTop\": 10,\n                \"widthUnit\": \"percent\",\n                \"background\": \"transparent\",\n                \"marginLeft\": 10,\n                \"paddingAll\": true,\n                \"paddingTop\": 0,\n                \"borderColor\": \"#999\",\n                \"borderStyle\": \"solid\",\n                \"borderWidth\": 0,\n                \"marginRight\": 10,\n                \"paddingLeft\": 0,\n                \"borderRadius\": 0,\n                \"marginBottom\": 10,\n                \"paddingRight\": 0,\n                \"paddingBottom\": 0,\n                \"borderTopColor\": \"#999\",\n                \"borderTopStyle\": \"solid\",\n                \"borderTopWidth\": 0,\n                \"borderLeftColor\": \"#999\",\n                \"borderLeftStyle\": \"solid\",\n                \"borderLeftWidth\": 0,\n                \"borderRightColor\": \"#999\",\n                \"borderRightStyle\": \"solid\",\n                \"borderRightWidth\": 0,\n                \"borderBottomColor\": \"#999\",\n                \"borderBottomStyle\": \"solid\",\n                \"borderBottomWidth\": 0,\n                \"borderTopLeftRadius\": 0,\n                \"borderTopRightRadius\": 0,\n                \"borderBottomLeftRadius\": 0,\n                \"borderBottomRightRadius\": 0\n            },\n            \"value\": \"\",\n            \"widgets\": [\n                {\n                    \"key\": \"label\"\n                },\n                {\n                    \"key\": \"placeholder\"\n                },\n                {\n                    \"key\": \"isRequired\"\n                }\n            ],\n            \"required\": false,\n            \"field_name\": \"email\",\n            \"numDecimals\": 2,\n            \"previewHTML\": {},\n            \"computedStyle\": {\n                \"margin\": \"10px 10px 10px 10px\",\n                \"padding\": \"0px 0px 0px 0px\"\n            },\n            \"isRequired\": false\n        }\n    ],\n    \"form_base_html\": \"<form method=\\\"post\\\" action=\\\"https://staging.kizen.com/api/form-submission/public_create\\\">\\n\\t<input type=\\\"text\\\" name=\\\"3e09b649-c243-42a2-9772-a41622c53429\\\">\\n\\t<input type=\\\"text\\\" name=\\\"3665dec2-d225-4937-a4d3-dc97cc5928a5\\\">\\n\\t<input type=\\\"text\\\" name=\\\"3866d900-aefd-49ef-b6a2-3da99078cb48\\\">\\n</form>\"\n}"}],"_postman_id":"049ae811-f1bc-431f-b9f5-41f7a38046fe"}],"id":"0c1f7028-f25d-44df-9332-5b7a0c9ce27e","description":"<p>Forms are used to gather information from external contacts.</p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"0c1f7028-f25d-44df-9332-5b7a0c9ce27e"},{"name":"Lead Sources","item":[{"name":"Cost","item":[{"name":"Create Lead Source Cost","id":"5f60b14b-400a-40ff-81b8-36f863f7709d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cost\": 1,\n    \"date\": \"2020-01-03\",\n    \"category\": \"other_expenses\",\n    \"campaign_id\": null,\n    \"source_id\": \"c9b409b2-10e8-4cd9-aeb0-ff56f7305024\"\n}"},"url":"{{base_url}}/v2-lead-source-cost2","urlObject":{"path":["v2-lead-source-cost2"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"from_date","value":"2020-04-11"},{"disabled":true,"key":"to_date","value":"2020-03-31"},{"disabled":true,"key":"ordering","value":"-date"}],"variable":[]}},"response":[{"id":"abd23108-b1e5-4d28-a905-01a3e147a05f","name":"Create Lead Source Cost","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"cost\": 1,\n    \"date\": \"2020-01-03\",\n    \"category\": \"other_expenses\",\n    \"campaign_id\": null,\n    \"source_id\": \"c9b409b2-10e8-4cd9-aeb0-ff56f7305024\"\n}"},"url":{"raw":"{{base_url}}/v2-lead-source-cost2","host":["{{base_url}}"],"path":["v2-lead-source-cost2"],"query":[{"key":"from_date","value":"2020-04-11","disabled":true},{"key":"to_date","value":"2020-03-31","disabled":true},{"key":"ordering","value":"-date","type":"text","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:05:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"3"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5ecc7525-83b1-4f7d-8014-af7574abfcd8\",\n    \"source_id\": \"c9b409b2-10e8-4cd9-aeb0-ff56f7305024\",\n    \"campaign_id\": null,\n    \"date\": \"2020-01-03T05:00:00-05:51\",\n    \"cost\": \"1.00\",\n    \"category\": \"other_expenses\",\n    \"cost_type\": \"manual\"\n}"}],"_postman_id":"5f60b14b-400a-40ff-81b8-36f863f7709d"},{"name":"Retrieve Lead Source Costs","id":"7fa2157e-a976-412a-99f2-8835d063dd19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/v2-lead-source-cost2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"96349963-39c5-4699-a84f-e721828d944e","id":"96349963-39c5-4699-a84f-e721828d944e","name":"Lead Sources","type":"folder"}},"urlObject":{"path":["v2-lead-source-cost2"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"ordering","value":"category,date,source,campaign,cost"},{"disabled":true,"key":"page_size","value":"3"}],"variable":[]}},"response":[{"id":"2ebbdd8f-7e41-4ab2-97d3-5ca9f2d8c26a","name":"Retrieve Lead Source Costs","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/v2-lead-source-cost2","host":["{{base_url}}"],"path":["v2-lead-source-cost2"],"query":[{"key":"ordering","value":"category,date,source,campaign,cost","disabled":true},{"key":"page_size","value":"3","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:03:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1480,\n    \"next\": \"https://staging.kizen.com/api/v2-lead-source-cost2?page=2&page_size=3\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"ca7901bd-9007-461f-8c1e-fd8c5fac7396\",\n            \"source_id\": \"577766ef-e52b-46ab-9ac0-69acc621d7c0\",\n            \"campaign_id\": \"6d2ec0f7-da4d-43a0-875e-193f48cb3efa\",\n            \"date\": \"2022-12-01T03:56:00-06:00\",\n            \"cost\": \"0.11\",\n            \"category\": \"commissions\",\n            \"cost_type\": \"manual\"\n        },\n        {\n            \"id\": \"b64293d3-4008-48c6-839e-938dbda0bb2c\",\n            \"source_id\": \"577766ef-e52b-46ab-9ac0-69acc621d7c0\",\n            \"campaign_id\": \"bc1682b2-68c6-4bbf-bc94-622f18ed7f85\",\n            \"date\": \"2022-12-01T03:56:00-06:00\",\n            \"cost\": \"0.11\",\n            \"category\": \"advertising\",\n            \"cost_type\": \"manual\"\n        },\n        {\n            \"id\": \"8d961666-8ae5-4312-82dd-cfdc7a70a18c\",\n            \"source_id\": \"577766ef-e52b-46ab-9ac0-69acc621d7c0\",\n            \"campaign_id\": \"6d2ec0f7-da4d-43a0-875e-193f48cb3efa\",\n            \"date\": \"2022-11-30T03:56:00-06:00\",\n            \"cost\": \"0.11\",\n            \"category\": \"commissions\",\n            \"cost_type\": \"manual\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"7fa2157e-a976-412a-99f2-8835d063dd19"}],"id":"6834bea0-6d80-4fa9-bd5e-a55a1d871223","_postman_id":"6834bea0-6d80-4fa9-bd5e-a55a1d871223","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"96349963-39c5-4699-a84f-e721828d944e","id":"96349963-39c5-4699-a84f-e721828d944e","name":"Lead Sources","type":"folder"}}},{"name":"Source","item":[{"name":"Create New Lead Source","id":"3b45ec97-d96a-4871-819d-ed4d10518e35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"a utm\",\n    \"type\": \"utm\"\n}"},"url":"{{base_url}}/v2-lead-source-source","urlObject":{"path":["v2-lead-source-source"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d05fb160-d7a1-4722-9360-0a1690d4fd9b","name":"Create New Lead Source","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"a utm\",\n    \"type\": \"utm\"\n}"},"url":"{{base_url}}/v2-lead-source-source"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:15:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVwduSQzAAANAv2hmtRHnog0tJ0C2hjXox2JLaTV1CXb6-s-fU-j-j7hIEW6bwny1tWdyaOQbp4otxQOg-eRYz7KgDJgmElgWRc-L4QnGUe3_x7Gi9VVVeuitmczGmU1CsYlU1QelthFvSkMV4MuigS-drgfzL7Gp_NZ-ufcgb1yyRT66zVY4rfEqHyx0lQHk30b4LEvrW_L59CRxnnrpFabfYvc4Qz6UZa_XbWxB3pV7OG3UqvEHuiTyGgioF5sM5th5C-pqSgfLNIfnjXgHrZukOzLJkwIj2omQZ0pVtn4WE8ZCd3fgF4RlL5BsMTG2asU1BvBs7EB6PH6G5Yok:1ljSbh:LlBuP5H2M5YoqZxjueqQOgXGYrQ; Domain=staging.kizen.com; expires=Thu, 19 May 2022 20:15:53 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"c95b92c0-269b-4d3b-b409-97744fa780d8\",\n    \"type\": \"utm\",\n    \"name\": \"a utm\"\n}"}],"_postman_id":"3b45ec97-d96a-4871-819d-ed4d10518e35"},{"name":"Retrieve Lead Sources","id":"a4eacb58-47f6-419e-8dd6-2bec17480703","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/v2-lead-source-source","urlObject":{"path":["v2-lead-source-source"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"95c9df38-8cdc-4c90-b118-1d8f2e816a24","name":"Retrieve Lead Sources","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/v2-lead-source-source"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:53:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"3"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 50,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"e573c3c8-ff82-4233-b70f-9f1e4d9b23a6\",\n            \"name\": \"Organic Search\",\n            \"type\": \"organic_search\"\n        },\n        {\n            \"id\": \"88ae8aa7-edd2-4fec-acbe-20724e4623c5\",\n            \"name\": \"Direct Traffic\",\n            \"type\": \"direct_traffic\"\n        },\n        {\n            \"id\": \"4ea25b21-d0b9-4808-ad0c-5bd5018cfd38\",\n            \"name\": \"Site Referral\",\n            \"type\": \"site_referral\"\n        },\n        {\n            \"id\": \"1dfa9089-a3b6-4f28-ba8c-51e3c1211373\",\n            \"name\": \"Facebook Ads\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"c9b409b2-10e8-4cd9-aeb0-ff56f7305024\",\n            \"name\": \"Google Ads\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"3562f114-dfbe-4268-b82d-5aed9baaf592\",\n            \"name\": \"A\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"fdab22e7-a653-43b2-bd51-504b834b2b2e\",\n            \"name\": \"As\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"1083889b-86de-42ac-90db-1daddf9072a1\",\n            \"name\": \"asdfa dsf\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"9efeaa8b-9803-44d8-bfa8-c7f0e814db72\",\n            \"name\": \"c\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"8ba2f86e-e6fb-4b08-b863-6142f76f9f91\",\n            \"name\": \"NU-TM\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"36dc760a-eee5-4541-8e37-6bef527e37b1\",\n            \"name\": \"Source Name\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"2890a26f-e8af-4683-9264-c4c632f2e026\",\n            \"name\": \"Testing #3\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"edc3e84d-7c07-440f-af88-8fa8bb188510\",\n            \"name\": \"utm-source\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"0f15b0bd-e240-4d4a-b732-62c3be4b5f33\",\n            \"name\": \"utm-source2\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"9a545e74-8c15-4f9a-a0cc-4a98922c77da\",\n            \"name\": \"Utm-source2\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"8ea3400f-831e-4a03-b811-35e843a5670f\",\n            \"name\": \"v-test\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"d609ae31-a25d-4bd5-af92-a083851deb9c\",\n            \"name\": \"v-test2\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"535b928e-59fc-4460-90f7-f1e815bb643a\",\n            \"name\": \"v-test3\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"bbcad799-4a29-4ffb-b3e2-b2334b07faf3\",\n            \"name\": \"v-test4\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"a472946b-4b13-4c4b-85fd-1a2021fc0812\",\n            \"name\": \"v-test5\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"9ede4442-d3f7-4c7c-97a4-d9e265106980\",\n            \"name\": \"v-test6\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"6c91c0fc-7dfb-4a9e-b4b3-6168a7155a12\",\n            \"name\": \"Z\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"938072e0-5fe2-48ec-8596-0c1254ace85a\",\n            \"name\": \"ABBA\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"cfcc27a4-0783-4b90-a1a2-681f0df09aaa\",\n            \"name\": \"Adding New Source 1\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"5de9e830-318c-4d2f-88f2-0d981db4bd14\",\n            \"name\": \"Beef Potpie\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"5c86cf67-851c-4068-95b5-78db14f11821\",\n            \"name\": \"Beef Stew\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"acf881e8-20b5-43c0-b44c-89451ad10c5b\",\n            \"name\": \"chicken soup\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"50247385-ffa9-4508-a156-7bcf8e657517\",\n            \"name\": \"csa\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"d32ad155-a993-4350-8354-8159429edb20\",\n            \"name\": \"csb\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"4c7a1f02-8942-4869-9aff-aa9d1ff222c7\",\n            \"name\": \"Demo Custom Source\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"fdb08f5c-eebe-4de4-8eec-7758ada2ae22\",\n            \"name\": \"Event: ACL\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"577766ef-e52b-46ab-9ac0-69acc621d7c0\",\n            \"name\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"98a56b00-a984-4a1c-9c7f-e8643cc70548\",\n            \"name\": \"New Custom Source 2\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"b63826d8-5644-4f3a-b873-2229ca019ee6\",\n            \"name\": \"New Custom Source 3\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"938486f7-69c6-41cc-90f5-f459b96e6026\",\n            \"name\": \"New Custom Source Option 1\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"217026a1-62c9-4b59-9fa1-27359cd36d51\",\n            \"name\": \"New Custom Source TEST\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"9c89f07f-6bc4-4417-8c74-ce52948e86ed\",\n            \"name\": \"New Lorem Source 2\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"453c8299-1c85-404d-8abf-63cdbc25bffd\",\n            \"name\": \"new value\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"e6c0a70f-3d42-4d86-a0df-05990ddae063\",\n            \"name\": \"Oranges\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"2191e4de-2ea9-467e-b561-3448e272b7d6\",\n            \"name\": \"QASource\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"1231e5ef-667a-449f-817d-f7a5100db7c3\",\n            \"name\": \"Software Advice\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"f946eb0a-ccda-41af-acda-8ceb70d2654c\",\n            \"name\": \"Source Name\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"ec747a18-90a2-4873-a2c8-3381b284c0fd\",\n            \"name\": \"SourcePostman\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"8ddb42d5-d521-4f49-89e8-aec896483faa\",\n            \"name\": \"stuart  aa a\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"7cf7dbc2-c7d7-4634-aab5-7f4fbadb6d17\",\n            \"name\": \"Stuarts Custard\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"2a3f7129-b427-4181-a8c4-aef45410e269\",\n            \"name\": \"Test #5\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"9c20320e-8e77-47c9-8a0f-8c64c6ebbe9c\",\n            \"name\": \"Testing #4\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"62487f27-bab7-444b-a8e8-0f52192ecfd9\",\n            \"name\": \"vcvN\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"1e23479c-29b7-4973-b621-54557f53fbd4\",\n            \"name\": \"v-test-custom-source\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"4b63e6cb-570f-4274-80b6-c0810b4b9c3b\",\n            \"name\": \"yahhtrick\",\n            \"type\": \"custom\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"a4eacb58-47f6-419e-8dd6-2bec17480703"}],"id":"bb848493-e282-485e-9df0-34c2d9ac30dd","_postman_id":"bb848493-e282-485e-9df0-34c2d9ac30dd","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"96349963-39c5-4699-a84f-e721828d944e","id":"96349963-39c5-4699-a84f-e721828d944e","name":"Lead Sources","type":"folder"}}},{"name":"Campaign","item":[{"name":"Create Lead Source Campiagns","id":"44d5d6ef-8986-4e59-909a-e8c6619dbc4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Lead Source Campaign Name2\",\n    \"type\": \"utm\"\n}"},"url":"{{base_url}}/v2-lead-source-campaign","urlObject":{"path":["v2-lead-source-campaign"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"type","value":"utm,custom,site_referral"},{"disabled":true,"key":"ad_provider","value":"FACEBOOK, GOOGLE"}],"variable":[]}},"response":[{"id":"489d7b6f-5435-4a02-8a96-1211d165166a","name":"Create Lead Source Campiagns","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Lead Source Campaign Name2\",\n    \"type\": \"utm\"\n}"},"url":{"raw":"{{base_url}}/v2-lead-source-campaign","host":["{{base_url}}"],"path":["v2-lead-source-campaign"],"query":[{"key":"type","value":"utm,custom,site_referral","disabled":true},{"key":"ad_provider","value":"FACEBOOK, GOOGLE","type":"text","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:18:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"2"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"33cc56fb-5dd7-45d5-8497-3bd2d031b128\",\n    \"type\": \"utm\",\n    \"name\": \"Lead Source Campaign Name2\",\n    \"ad_campaign_id\": null\n}"}],"_postman_id":"44d5d6ef-8986-4e59-909a-e8c6619dbc4e"},{"name":"Retrieve Lead Source Campiagns Copy","id":"5a80fdaf-85d3-4c68-a5d3-d6b1f2298c81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/v2-lead-source-campaign","urlObject":{"path":["v2-lead-source-campaign"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"type","value":"utm,custom,site_referral"},{"disabled":true,"key":"ad_provider","value":"FACEBOOK, GOOGLE"},{"disabled":true,"key":"page_size","value":"2"}],"variable":[]}},"response":[{"id":"34b425ea-b2f7-496f-adce-8d96654db74d","name":"Retrieve Lead Source Campiagns Copy","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/v2-lead-source-campaign","host":["{{base_url}}"],"path":["v2-lead-source-campaign"],"query":[{"key":"type","value":"utm,custom,site_referral","disabled":true},{"key":"ad_provider","value":"FACEBOOK, GOOGLE","type":"text","disabled":true},{"key":"page_size","value":"2","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:18:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"3"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 62,\n    \"next\": \"https://staging.kizen.com/api/v2-lead-source-campaign?page=2&page_size=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"6b579a80-f38c-446e-9f5a-4e084ff7e435\",\n            \"name\": \"1\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"770819cd-0ff0-4bef-aae0-c4a42024fa43\",\n            \"name\": \"11\",\n            \"type\": \"custom\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"5a80fdaf-85d3-4c68-a5d3-d6b1f2298c81"}],"id":"df3255a0-21f0-425f-969a-57564e09d606","_postman_id":"df3255a0-21f0-425f-969a-57564e09d606","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"96349963-39c5-4699-a84f-e721828d944e","id":"96349963-39c5-4699-a84f-e721828d944e","name":"Lead Sources","type":"folder"}}},{"name":"Medium","item":[{"name":"Create Lead Source Medium","id":"6ee889bd-d3f8-4eec-9a5a-80969b629e8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"utm2-medium\",\n    \"type\": \"utm\"\n}"},"url":"{{base_url}}/v2-lead-source-medium","urlObject":{"path":["v2-lead-source-medium"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"6c944091-115e-484d-85c0-a44e1ceba7db","name":"Create Lead Source Medium","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"utm2-medium\",\n    \"type\": \"utm\"\n}"},"url":"{{base_url}}/v2-lead-source-medium"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:20:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"2"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"f0bbf8f4-fab6-45ee-b8c0-1c9a15103384\",\n    \"type\": \"utm\",\n    \"name\": \"utm2-medium\",\n    \"ad_group_id\": null\n}"}],"_postman_id":"6ee889bd-d3f8-4eec-9a5a-80969b629e8a"},{"name":"Retrieve Lead Source Medium","id":"edf1cb5e-cf06-4122-93e6-214227296e0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/v2-lead-source-medium","urlObject":{"path":["v2-lead-source-medium"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"type","value":"custom,google_ads,utm, facebook_ads"}],"variable":[]}},"response":[{"id":"d4f22e4d-da99-4236-8781-180afa0703c8","name":"Retrieve Lead Source Medium","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/v2-lead-source-medium","host":["{{base_url}}"],"path":["v2-lead-source-medium"],"query":[{"key":"type","value":"custom,google_ads,utm, facebook_ads","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 19:59:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 38,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"2374147a-6e65-424d-a2cc-17a336c65dd0\",\n            \"name\": \"1\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"b8578f31-4bdb-4252-ac27-16e7f6d7ac69\",\n            \"name\": \"11\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"bb2fb633-0801-41b6-a54f-f7d22497e637\",\n            \"name\": \"bbbb\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"57e555c7-1c38-4dbd-8dc0-d2fad7e658cc\",\n            \"name\": \"Brand\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"bd20345b-711f-4b5f-9e17-1ef7f3115144\",\n            \"name\": \"cma\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"f44f04b7-950d-4873-b2e1-e8802842aa9b\",\n            \"name\": \"cmb\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"4eec90a4-2549-4ee4-ba50-57172d86cee2\",\n            \"name\": \"Competitors - Worldwide\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"2e4bcedd-11e6-49d3-97a4-ac0679c3bfb1\",\n            \"name\": \"Cool Medium\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"ed409431-854a-4c30-8a9e-507f2cd585e2\",\n            \"name\": \"Coworking Group 1\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"98a3d808-022e-49f1-8393-d67c904d8d14\",\n            \"name\": \"Coworking Group 1\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"71277c58-033f-49a4-8213-4c912f970fb9\",\n            \"name\": \"iamwritinginareallylongmediumnametotestthetruncationhere\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"81987886-ed3c-481e-841e-ed9e9c888951\",\n            \"name\": \"Leni Lead Source Custom\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"7cb1f53b-317c-4c20-a5c5-4b049e4797b4\",\n            \"name\": \"Leni Medium\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"d018c0ff-e1da-41b7-a0ff-e80dae5d4063\",\n            \"name\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"0b8eae8e-ed72-4e35-b756-7a59ea9882b8\",\n            \"name\": \"MediumCampaign\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"2c8dd670-e3f7-42bb-a174-0082582997c3\",\n            \"name\": \"Medium Name\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"692af00c-7cc4-4808-904f-4679c3c6fe08\",\n            \"name\": \"Medium Name\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"f5d37d3b-6da1-4b94-a9bc-1cbb4d7c67fd\",\n            \"name\": \"mmmm\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"c80da4ae-d417-4fe4-97df-f27f8026dbb9\",\n            \"name\": \"nm\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"6c09af5b-838b-4723-acac-af5789f22b05\",\n            \"name\": \"NU-Med\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"82e5b081-afcd-4c0c-8d85-74b998422a92\",\n            \"name\": \"Paid\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"20608e13-a3f7-4596-b919-634fa67966d1\",\n            \"name\": \"Pardot Competitive Keywords - Broad\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"9c74c78d-3a21-401f-a0c4-ebe21eb487d3\",\n            \"name\": \"Postman Medium\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"51b39b72-563b-4571-9537-06d3d0294981\",\n            \"name\": \"Postmedium\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"c3134468-dacc-4488-80a1-2dfca98d659e\",\n            \"name\": \"QAMedium\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"3154e155-bf4c-4173-b34d-fc2ce6f7614e\",\n            \"name\": \"sauce\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"385065d5-32f7-4b3b-a151-326e87a0dc4c\",\n            \"name\": \"sdf\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"5e2adf76-0c4e-424a-8cca-f96c081c5509\",\n            \"name\": \"sdf gsdg\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"e9df9987-4e1c-4952-a86d-1d5b2cd98eef\",\n            \"name\": \"Stuarts URTM medium\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"cdb11b28-2449-44f0-bc5a-1142c56568de\",\n            \"name\": \"Targeting CRM, Sales Campaign\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"23902433-b31c-4d39-afcc-bfcf0c90aa2e\",\n            \"name\": \"Targeting CRM, Sales Campaign\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"1bc12105-d88d-4cab-98fc-5cc47092137d\",\n            \"name\": \"Test #5\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"3be25fae-eb4d-4a1d-99fd-e05d6ba61659\",\n            \"name\": \"Testing #3\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"7f77eecd-8990-4769-b607-5921a4ebc9d5\",\n            \"name\": \"Testing #4\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"e5e05bc4-b3bb-49ad-b916-5294a474fe25\",\n            \"name\": \"thisisareallylongmediumnameinordertotestthelengthandtruncationofthetextbeingdisplayedhere\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"f6818a87-ae62-40af-8a35-f8425ea0b998\",\n            \"name\": \"utm-medium\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"5d1e1e33-9285-4624-8b9b-b9b1af71d153\",\n            \"name\": \"Veggy Medium\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"79a4d4ed-e556-4600-accc-ecf05f5cd9b0\",\n            \"name\": \"v-test-custom-medium\",\n            \"type\": \"custom\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"edf1cb5e-cf06-4122-93e6-214227296e0f"}],"id":"8cde62fc-d666-4d88-969b-283b17471c63","_postman_id":"8cde62fc-d666-4d88-969b-283b17471c63","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"96349963-39c5-4699-a84f-e721828d944e","id":"96349963-39c5-4699-a84f-e721828d944e","name":"Lead Sources","type":"folder"}}},{"name":"Term","item":[{"name":"Create Lead Source Term","id":"8e0d0798-b6c4-4753-a425-eefb3038e8b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"utm2-term\",\n    \"type\": \"utm\"\n}"},"url":"{{base_url}}/v2-lead-source-term","urlObject":{"path":["v2-lead-source-term"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"type","value":"custom,google_ads,utm, facebook_ads"}],"variable":[]}},"response":[{"id":"db23dd8e-5d20-4876-889f-8213a15aec57","name":"Create Lead Source Term","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"utm2-term\",\n    \"type\": \"utm\"\n}"},"url":{"raw":"{{base_url}}/v2-lead-source-term","host":["{{base_url}}"],"path":["v2-lead-source-term"],"query":[{"key":"type","value":"custom,google_ads,utm, facebook_ads","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:21:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"2"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"27333987-3fbe-44f4-bc79-5b2a769a4a40\",\n    \"type\": \"utm\",\n    \"name\": \"utm2-term\",\n    \"ad_id\": null\n}"}],"_postman_id":"8e0d0798-b6c4-4753-a425-eefb3038e8b5"},{"name":"Retrieve Lead Source Terms","id":"bbb17bdf-70be-4b11-b51d-c2acb940fc1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/v2-lead-source-term","urlObject":{"path":["v2-lead-source-term"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"type","value":"custom,google_ads,utm, facebook_ads"}],"variable":[]}},"response":[{"id":"c76219c0-fe0b-405f-a6fb-e5b25ba423bd","name":"Retrieve Lead Source Terms","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/v2-lead-source-term","host":["{{base_url}}"],"path":["v2-lead-source-term"],"query":[{"key":"type","value":"custom,google_ads,utm, facebook_ads","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:01:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"6"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"Set-Cookie","value":"sessionid=.eJwVyt2WQkAAAOAnck6NkVx0YY2whJChm84oZsr_MFk9_e5-1x_V_33RAe88NWC4H3HktPMdMZSdLkaZPNbaKV--oQkJbozNWR2KKAwVIX14RVGWzoXPtojuw5xEmTe94m5HYjAqyXgVwMZRH4uHa-HOVGFSL8yLGknL_g5fXH8s_ecs_ah0sKXVceF4zLrJWgMLeqBdupmfYUL4sWjntwC74Fb6ruCvvAGbYfxO6J60F57WxD6h590RXMbNPlAJoHWMa00Go3k1H0ze6n0qn96sV4KGhc0PTLUStp_o2ulbfTHsIZny5s7MSpMsQTyUT5VT3FYKzkhBlX44_AIww2JL:1ljSNX:tcSNMRFlxSHyep6uEQVfNwKpFAc; Domain=staging.kizen.com; expires=Thu, 19 May 2022 20:01:15 GMT; HttpOnly; Max-Age=31536000; Path=/; Secure"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 38,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"e4e49193-f284-4a8f-b8a2-6214d0d2e5c1\",\n            \"name\": \"1\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"fd997e5c-c839-4bd3-9e54-0ae44bd707b1\",\n            \"name\": \"11\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"f1144622-7c23-4ea4-a340-d1f212423ff5\",\n            \"name\": \"#1 collaborative office space\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"d8d9e378-a331-4c20-9005-7e42fa037a6e\",\n            \"name\": \"#1 collaborative office space\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"563902d4-a6d0-4eea-b48e-bcb7b18bc97b\",\n            \"name\": \"Beef Term\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"ffe92184-c5cd-4ee7-9562-eb81a7d6f976\",\n            \"name\": \"Best Coworking Space in SF\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"2e66c6f1-0ce6-4cb4-8f0a-3394a79d4a6c\",\n            \"name\": \"ccccc\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"fa28243c-88d2-4666-b3f7-e61d860cc635\",\n            \"name\": \"Cool Term\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"b008bbd0-feef-45b7-bd9a-7be83c4196ef\",\n            \"name\": \"Create Name\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"e82dac81-c08f-494c-97da-51cb6f566085\",\n            \"name\": \"CRM/Sales\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"4334f9cd-c7d3-4729-8bb2-25aa983716a7\",\n            \"name\": \"cta\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"b95a3ff5-caf2-403f-bc5e-586b4943477a\",\n            \"name\": \"ctb\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"cf5e1064-025a-4a16-ad1f-1599961e1463\",\n            \"name\": \"dfg sdgf s6456\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"0ce336bc-ea7d-4bda-a4c6-40040ce71528\",\n            \"name\": \"iamwritinginareallylongtermnametotestthetruncationhere\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"46431e4f-6230-45db-9345-7194ce86e9c0\",\n            \"name\": \"Leni Lead Source Custom\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"9f1d4900-ebdd-45e0-a0bc-a8745124cc1c\",\n            \"name\": \"Leni Term\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"9eb75242-4494-41c9-bb31-5f06c5d00dfa\",\n            \"name\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"2b350c07-6426-4b45-9e60-147b0cedb190\",\n            \"name\": \"Need An Alternative? Kizen\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"66b85048-1394-4508-9588-54c56baa271e\",\n            \"name\": \"nmn\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"7d4bd5ef-2d1e-4c2c-bd0b-5fe8a3e87232\",\n            \"name\": \"Postman Term\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"be81e241-c510-410d-ab6f-a1bdb4bf45b5\",\n            \"name\": \"Postterm\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"77cb20ea-98e5-4f6e-8c5b-e93347015e5c\",\n            \"name\": \"QATerm\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"1168996a-1752-40fd-9cfc-8a2015e7215b\",\n            \"name\": \"rocks\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"f6357ce1-57cd-415b-9945-24747198194a\",\n            \"name\": \"Sales Campaign\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"2455cdc1-a566-4d4b-a561-0467fc6fe9ce\",\n            \"name\": \"Sales Campaign\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"370e3cd6-82d2-40fa-a32c-566c3ec4aaa4\",\n            \"name\": \"sdf\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"4cbfc7e3-0ab9-45ba-81d3-b8ba8858f623\",\n            \"name\": \"STUARTS TERM\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"870529db-5065-4815-b288-99e17f79e21b\",\n            \"name\": \"Term Name\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"6d546cb8-b918-4b15-ae3e-096e53ba9041\",\n            \"name\": \"Test #5\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"51d9783a-9f3d-4962-af18-e149db030be6\",\n            \"name\": \"Testing #3\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"8bfbd11a-a44c-4910-96d1-e3e07eeb6008\",\n            \"name\": \"Testing #4\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"1c1e6722-ee05-455a-ab76-61c2b82feefe\",\n            \"name\": \"thisisareallylongtermnameinordertotestthelengthandtruncationofthetextbeingdisplayedhere\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"eb03571e-e657-4f65-b5dd-e12e63d0c2a7\",\n            \"name\": \"Top Coworking Space in SF\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"a4b5fd18-3df4-4bbd-8a05-b8198bc00ad8\",\n            \"name\": \"tttt\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"86caf5f7-7428-427d-8b77-8d39191f5b00\",\n            \"name\": \"ut0\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"5c4eecfe-4f02-482b-ab69-612fe531d100\",\n            \"name\": \"utm-term\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"9d36f413-cc33-4e11-b738-ae6e91b0d713\",\n            \"name\": \"v-test-custom-term\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"51b76801-ede9-4476-9dd3-06374b510675\",\n            \"name\": \"Werqwise™ Coworking Space SF\",\n            \"type\": \"google_ads\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"bbb17bdf-70be-4b11-b51d-c2acb940fc1e"}],"id":"8422c411-4959-492e-b28e-1ff63edb13f6","_postman_id":"8422c411-4959-492e-b28e-1ff63edb13f6","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"96349963-39c5-4699-a84f-e721828d944e","id":"96349963-39c5-4699-a84f-e721828d944e","name":"Lead Sources","type":"folder"}}},{"name":"Content","item":[{"name":"Create Lead Source Content","id":"6f8ca953-e4cc-47e2-bbda-b100628f6817","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"term Documentation\",\n    \"type\": \"utm\"\n}"},"url":"{{base_url}}/v2-lead-source-term","urlObject":{"path":["v2-lead-source-term"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"type","value":"custom,google_ads,utm, facebook_ads"}],"variable":[]}},"response":[{"id":"94714787-6cd8-418e-bd1d-ef23ddad5195","name":"Create Lead Source Content","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"term Documentation\",\n    \"type\": \"utm\"\n}"},"url":{"raw":"{{base_url}}/v2-lead-source-term","host":["{{base_url}}"],"path":["v2-lead-source-term"],"query":[{"key":"type","value":"custom,google_ads,utm, facebook_ads","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:22:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"2"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"fe0bb829-1292-4e30-9aaa-0238c3942c2a\",\n    \"type\": \"utm\",\n    \"name\": \"term Documentation\",\n    \"ad_id\": null\n}"}],"_postman_id":"6f8ca953-e4cc-47e2-bbda-b100628f6817"},{"name":"Retrieve Lead Source Content","id":"7036ddd6-b08b-450b-963e-cc9f7b97c3cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/v2-lead-source-term","urlObject":{"path":["v2-lead-source-term"],"host":["{{base_url}}"],"query":[{"disabled":true,"key":"type","value":"custom,google_ads,utm, facebook_ads"}],"variable":[]}},"response":[{"id":"389a7b25-9a7b-4f19-8825-546592f8f2f1","name":"Retrieve Lead Source Terms Copy","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/v2-lead-source-content","host":["{{base_url}}"],"path":["v2-lead-source-content"],"query":[{"key":"type","value":"custom,google_ads,utm, facebook_ads","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 19 May 2021 20:01:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"X-Kizen-Number-Database-Queries","value":"4"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Content-Language","value":"en-us"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 56,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"id\": \"45443d96-b196-473e-afea-7a63ef2fa8a1\",\n            \"name\": \"0ad51d2b-a049-4852-a284-eac4f3d8ed0b\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"3ccaab0c-8393-485a-8cd1-05cc183c184e\",\n            \"name\": \"1\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"5c7b5649-0bd2-4819-a627-2e5f3e354d21\",\n            \"name\": \"1a3552d2-1d05-4de0-814d-18d8d06d7073\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"55c6af09-9402-43f1-a910-23468f77e956\",\n            \"name\": \"399106a9-4ffe-4441-844b-2392768fca07\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"6c25cd9a-cc0e-46f0-82b3-be1d31cd6213\",\n            \"name\": \"4 56456w45nwnty\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"057a5802-f758-4651-b580-b5f9e10facbd\",\n            \"name\": \"5a16232c-b13a-4185-8943-116d04cd7cb7\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"03a00cac-cbc0-4fcf-ab8d-be2529602ce0\",\n            \"name\": \"836dd3aa-35f9-4338-8095-1172f362a3a9\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"5716ad2b-54d5-4ba8-9340-b93c81a0b99f\",\n            \"name\": \"a\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"a0dc385b-b137-4ad3-af5b-e837fcfba6cd\",\n            \"name\": \"Abba\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"f2ad11f8-9ff1-4876-ae5c-bc2f46f84135\",\n            \"name\": \"a word\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"b00239db-d88b-4cee-9d91-9a28c805fbab\",\n            \"name\": \"a word\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"5d7611e7-7304-4199-9c54-6e476ba5c1cf\",\n            \"name\": \"b2599aee-eb4a-42f3-9555-27542c6c5a73\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"c038108f-38bf-4e4e-a5c6-6d0878288b35\",\n            \"name\": \"badfb\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"9da4e9f7-1103-4e1f-8ee3-2c861c46f716\",\n            \"name\": \"Beef\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"d7edb575-698e-4f2a-a14a-3f6593a5b545\",\n            \"name\": \"BIngo\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"e84ba684-4d0b-4a76-957d-4c0dddd9aa9d\",\n            \"name\": \"Bingo\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"bf0d93ae-792c-4198-bd01-677a725fd549\",\n            \"name\": \"Bingo #2\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"8aa23eff-ff84-43c9-9784-a904d4f40655\",\n            \"name\": \"Bingo Google\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"5b962663-5b43-462f-93db-14ad23ad9e97\",\n            \"name\": \"ccccccc\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"a8206b0f-4ab8-4716-9da1-2bc321c2c196\",\n            \"name\": \"ccona\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"da4f796b-5ae7-4c01-934d-07ecca43e19a\",\n            \"name\": \"ccoonb\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"336c92c2-0b76-4b78-b22f-bfe83f803969\",\n            \"name\": \"Content Name\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"06258baf-fe9d-4976-8306-5103633a0b00\",\n            \"name\": \"Content Name\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"8b8cf7b3-6765-477e-832b-5ae6a1baeabc\",\n            \"name\": \"f\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"b76d944c-0655-4bf2-9b38-602f1ce7b228\",\n            \"name\": \"f5ecbcd6-13d4-43f9-a16a-1cb878567d3f\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"ac7e2ba7-3125-4bc5-9757-33efbc1f103d\",\n            \"name\": \"f94e80c8-76d9-4fa1-a5ac-0c9227b65159\",\n            \"type\": \"default\"\n        },\n        {\n            \"id\": \"5f572d5b-4df5-458f-9b2b-a4bd48473ffa\",\n            \"name\": \"Face book\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"752c1971-a398-4792-bf96-3cb5f36b741f\",\n            \"name\": \"fdgsdg\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"0a53e79f-c7a1-482d-a363-65dbd9684113\",\n            \"name\": \"food\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"8faa0bea-6007-444b-882c-8003f48be1d9\",\n            \"name\": \"Food\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"3b0f2723-902e-42da-94e4-bb523793d8f3\",\n            \"name\": \"GG\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"40c10f08-39af-4d6d-b177-32b5276a53e8\",\n            \"name\": \"iamwritinginareallylongcampaignnametotestthetruncationhere\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"fa572ab4-7ebc-490a-bedf-8d3e48cb4daf\",\n            \"name\": \"Leni Content\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"90d90371-5cb5-483a-9bc8-c9abc87f444b\",\n            \"name\": \"Leni Lead Source Custom\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"557ccc09-6c18-4c12-8abf-b7b78f35d0b1\",\n            \"name\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"38ab3933-7e3d-445a-8d22-79f82b6c9d78\",\n            \"name\": \"mn\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"ab9ce27e-09bf-4576-b7b5-48cfc2473fa8\",\n            \"name\": \"NU-Content\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"4ea8ced2-7fc9-435a-b105-d79d615a7fb6\",\n            \"name\": \"Postcontent\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"18c67229-eb95-469c-8e71-498264faf75e\",\n            \"name\": \"Postman Content\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"b8b5defa-908f-45ca-b9d4-d4e044e0208d\",\n            \"name\": \"QAContent\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"6ea04394-9ff7-4e89-bbc0-6f029c16145c\",\n            \"name\": \"sdf\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"0ddbb2f5-851f-442b-b990-437c280a580d\",\n            \"name\": \"stuart\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"29d29850-c7c0-4159-a1ba-1a3e34fae9d0\",\n            \"name\": \"Stuarts UTM Content\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"7ca4e1cb-8742-421c-868f-34bd0f9c510d\",\n            \"name\": \"Test\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"516b87e3-defd-4f82-83f7-2c251c761553\",\n            \"name\": \"Test #5\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"7325e6d9-1001-41e1-bbb8-e6303df622b0\",\n            \"name\": \"Testing\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"c2aa57a6-2e3e-44fa-ad43-a7de2e908129\",\n            \"name\": \"Testing #1\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"1ae1ec09-2feb-49ac-89f6-dbe3d58ce8a3\",\n            \"name\": \"Testing #2\",\n            \"type\": \"facebook_ads\"\n        },\n        {\n            \"id\": \"4badc041-c3b3-4159-bd17-cd43d375ad48\",\n            \"name\": \"Testing #3\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"465006ae-6f1f-4296-982f-f2ee2c91959f\",\n            \"name\": \"Testing #4\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"dba96231-ce66-405e-a48f-713179ec20d9\",\n            \"name\": \"thisisareallylongcontentameinordertotestthelengthandtruncationofthetextbeingdisplayedhere\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"2c189b4a-eefa-40fe-884d-3ad3a4dccdb9\",\n            \"name\": \"utm-content\",\n            \"type\": \"utm\"\n        },\n        {\n            \"id\": \"10ff7fe8-8bb1-4f92-a8e2-b865c78f3b9d\",\n            \"name\": \"v-test-custom-content\",\n            \"type\": \"custom\"\n        },\n        {\n            \"id\": \"883f2585-b0d7-49cf-957d-ca11d41f285d\",\n            \"name\": \"xxx\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"25038905-aa2a-4a37-ae4d-1e2d9c6c2e7a\",\n            \"name\": \"xxxx\",\n            \"type\": \"google_ads\"\n        },\n        {\n            \"id\": \"74d37d97-d58b-4b19-8439-ef3486d4e6a7\",\n            \"name\": \"zzz\",\n            \"type\": \"facebook_ads\"\n        }\n    ],\n    \"errors\": null\n}"}],"_postman_id":"7036ddd6-b08b-450b-963e-cc9f7b97c3cb"}],"id":"20aaa2e0-0ab9-4a77-8261-101ac17483d1","_postman_id":"20aaa2e0-0ab9-4a77-8261-101ac17483d1","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"96349963-39c5-4699-a84f-e721828d944e","id":"96349963-39c5-4699-a84f-e721828d944e","name":"Lead Sources","type":"folder"}}}],"id":"96349963-39c5-4699-a84f-e721828d944e","description":"<p>Lead sources are used to gather exactly where you leads are coming from. </p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"96349963-39c5-4699-a84f-e721828d944e"},{"name":"Permissions","item":[{"name":"Roles","item":[{"name":"Retrieve Roles","id":"d40ba075-f248-435e-9bd6-d12b27f87d8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/role","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["role"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>possible values: (-)name, (-)permission_groups</p>\n","type":"text/plain"},"key":"ordering","value":"permission_groups"}],"variable":[]}},"response":[{"id":"2369d456-653c-4cfc-bf56-8b81d50f6055","name":"Retrieve Roles","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":{"raw":"{{base_url}}/role","host":["{{base_url}}"],"path":["role"],"query":[{"key":"ordering","value":"permission_groups","description":"possible values: (-)name, (-)permission_groups","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:10:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"acf3b927-d775-45a3-b0f0-9bdb4918d480\",\n        \"name\": \"All contact permissions including bulk action\",\n        \"permissions\": [],\n        \"permission_groups\": [\n            {\n                \"id\": \"ce253e73-50b8-4510-ac85-9e3cfd6a1ddf\",\n                \"name\": \"All contact permissions including bulk action\"\n            }\n        ]\n    },\n    {\n        \"id\": \"d0daab9f-97cb-4fb2-9027-505028b26a2c\",\n        \"name\": \"Full Test\",\n        \"permissions\": [],\n        \"permission_groups\": [\n            {\n                \"id\": \"75c1c530-fac0-49d3-b8ff-f894f112b2e6\",\n                \"name\": \"Full Test\"\n            }\n        ]\n    },\n    {\n        \"id\": \"10a070bd-2c19-4f54-bad4-c0d1346a4f6e\",\n        \"name\": \"Testing Contact Field Permissions\",\n        \"permissions\": [],\n        \"permission_groups\": [\n            {\n                \"id\": \"3edf606a-96f7-4a71-ba22-916c708aca38\",\n                \"name\": \"Testing Contact Field Permissions\"\n            }\n        ]\n    }\n]"}],"_postman_id":"d40ba075-f248-435e-9bd6-d12b27f87d8c"},{"name":"Create Roles","id":"3b0c17a0-6a3f-4272-9dab-6266fff793aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"New Role Name\",\n    \"permission_groups\": [\"ce253e73-50b8-4510-ac85-9e3cfd6a1ddf\", \"51cd43d1-dd43-4f94-8b8a-79ea836fa63f\"]\n}"},"url":"{{base_url}}/role","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["role"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"946d10a3-a70d-4916-988a-d2cc2894c3d3","name":"Create Roles","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"New Role Name\",\n    \"permission_groups\": [\"ce253e73-50b8-4510-ac85-9e3cfd6a1ddf\", \"51cd43d1-dd43-4f94-8b8a-79ea836fa63f\"]\n}"},"url":"{{base_url}}/role"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:12:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d199666e-7068-4736-b6e0-110ed540bd2e\",\n    \"name\": \"New Role Name\",\n    \"permissions\": [],\n    \"permission_groups\": [\n        \"ce253e73-50b8-4510-ac85-9e3cfd6a1ddf\",\n        \"51cd43d1-dd43-4f94-8b8a-79ea836fa63f\"\n    ]\n}"}],"_postman_id":"3b0c17a0-6a3f-4272-9dab-6266fff793aa"},{"name":"Update Roles","id":"e63fca36-9ee8-4e30-b35a-b86ab6544964","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Meo Role 1 - new name\",\n    \"permission_groups\": [\"19852f18-89fe-42a1-a8fe-cf4b3baccb21\", \"f2a300dd-5d33-4e1b-abea-56f6d7fff7f9\"]\n}"},"url":"{{base_url}}/role/{{Role_ID}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["role","{{Role_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"fe48abbe-c1d5-4388-bfe8-179b418f2372","name":"Update Roles","originalRequest":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Meo Role 1 - new name\",\n    \"permission_groups\": [\"51cd43d1-dd43-4f94-8b8a-79ea836fa63f\"]\n}"},"url":"{{base_url}}/role/d199666e-7068-4736-b6e0-110ed540bd2e"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:13:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d199666e-7068-4736-b6e0-110ed540bd2e\",\n    \"name\": \"Meo Role 1 - new name\",\n    \"permissions\": [],\n    \"permission_groups\": [\n        \"51cd43d1-dd43-4f94-8b8a-79ea836fa63f\"\n    ]\n}"}],"_postman_id":"e63fca36-9ee8-4e30-b35a-b86ab6544964"},{"name":"Duplicate Roles","id":"f2e349e3-081d-48bf-9f54-ee28cb8f0980","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/role/{{Role_ID}}/duplicate","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["role","{{Role_ID}}","duplicate"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"2282d9d5-7376-4da8-98df-d127df143a66","name":"Duplicate Roles","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/role/acf3b927-d775-45a3-b0f0-9bdb4918d480/duplicate"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:13:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"faa71360-e651-4f46-930b-c865dea2f61f\",\n    \"name\": \"All contact permissions including bulk action (copy #1)\",\n    \"permissions\": [],\n    \"permission_groups\": [\n        \"ce253e73-50b8-4510-ac85-9e3cfd6a1ddf\"\n    ]\n}"}],"_postman_id":"f2e349e3-081d-48bf-9f54-ee28cb8f0980"},{"name":"Delete Roles","id":"a0624b43-cd2b-4c74-8ece-55d89a1b45c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"","value":"{{api_key}}","type":"text"},{"key":"","value":"{{business_id}}","type":"text"},{"key":"","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/role/{{Role_ID}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["role","{{Role_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0624b43-cd2b-4c74-8ece-55d89a1b45c8"}],"id":"c78195df-e053-4fd9-b283-000063d86f40","description":"<p>Roles are used to assign specific team members access to different areas of the app.</p>\n","_postman_id":"c78195df-e053-4fd9-b283-000063d86f40","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}}},{"name":"Permission Groups","item":[{"name":"Retrieve Permission Group","id":"e3310821-911f-4c32-99a7-daef9b586170","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/permission-group","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["permission-group"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"b1ab86ee-b6ca-438d-aad5-a22ccca3cf25","name":"Retrieve Permission Group","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/permission-group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:13:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Allow","value":"GET, POST, HEAD, OPTIONS"},{"key":"Vary","value":"Cookie"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"e73e8c9a-4a7c-4e24-ab97-1ee29af60e76\",\n        \"name\": \"12345\",\n        \"contact_section\": {\n            \"all_contacts\": {\n                \"view\": false,\n                \"edit\": false,\n                \"remove\": false\n            },\n            \"my_associated_contacts\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            },\n            \"bulk_actions\": {\n                \"send_email\": true,\n                \"send_text\": false,\n                \"send_survey\": true,\n                \"invite_to_event\": true,\n                \"change_tags\": false,\n                \"change_field_value\": false,\n                \"export_to_csv\": false,\n                \"archive\": false,\n                \"start_automation\": false,\n                \"manage_associations\": true,\n                \"upload_contacts\": false\n            },\n            \"default_for_new_contact_fields\": {\n                \"view\": true,\n                \"edit\": false\n            },\n            \"custom_field_permissions\": [\n                {\n                    \"field\": \"e56309a9-04be-40a6-9f1f-e5dc2354f0ac\",\n                    \"view\": true,\n                    \"edit\": false\n                },\n                {\n                    \"field\": \"11fb558a-72c4-4d6d-8145-5c3283ea0912\",\n                    \"view\": true,\n                    \"edit\": false\n                }\n            ],\n            \"first_name\": {\n                \"view\": true,\n                \"edit\": true\n            },\n            \"last_name\": {\n                \"view\": true,\n                \"edit\": true\n            }\n\n]"}],"_postman_id":"e3310821-911f-4c32-99a7-daef9b586170"},{"name":"Create Permission Group","id":"cc2935da-ae8d-454d-b87b-d3c13ab67bdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"PG1\",\n    \"contact_section\": {\n        \"all_contacts\": {\n            \"view\": true,\n            \"edit\": true, \n            \"delete\": true\n        },\n        \"my_associated_contacts\": {\n            \"view\": true,\n            \"edit\": true,\n            \"delete\": true\n        },\n        \"bulk_actions\": {\n            \"send_email\": false,\n            \"send_text\": false,\n            \"send_survey\": false,\n            \"invite_to_event\": false,\n            \"change_tags\": false,\n            \"change_field_value\": false,\n            \"export_to_csv\": false,\n            \"archive\": false,\n            \"start_automation\": false,\n            \"manage_associations\": false,\n            \"upload_contacts\": false\n        },\n        \"default_for_new_contact_fields\": {\n            \"view\": false,\n            \"edit\": false\n        },\n        \"custom_field_permissions\": [],\n        \"first_name\": {\n            \"view\": true,\n            \"edit\": true\n        },\n        \"last_name\": {\n            \"view\": true,\n            \"edit\": true\n        }\n    }\n}"},"url":"{{base_url}}/permission-group","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["permission-group"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc2935da-ae8d-454d-b87b-d3c13ab67bdc"},{"name":"Duplicate Permission Group","id":"40d66626-e877-4bab-8160-0ea599cb4491","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/permission-group/{{Permission_ID}}/duplicate","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["permission-group","{{Permission_ID}}","duplicate"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"7ecab22c-9692-46fc-a16e-aa2c3ff34635","name":"Duplicate Permission Group","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/permission-group/{{Permission_ID}}/duplicate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:16:16 GMT"},{"key":"Content-Type","value":"text/html; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Cookie"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"e73e8c9a-4a7c-4e24-ab97-1ee29af60e76\",\n        \"name\": \"12345\",\n        \"contact_section\": {\n            \"all_contacts\": {\n                \"view\": false,\n                \"edit\": false,\n                \"remove\": false\n            },\n            \"my_associated_contacts\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            },\n            \"bulk_actions\": {\n                \"send_email\": true,\n                \"send_text\": false,\n                \"send_survey\": true,\n                \"invite_to_event\": true,\n                \"change_tags\": false,\n                \"change_field_value\": false,\n                \"export_to_csv\": false,\n                \"archive\": false,\n                \"start_automation\": false,\n                \"manage_associations\": true,\n                \"upload_contacts\": false\n            },\n            \"default_for_new_contact_fields\": {\n                \"view\": true,\n                \"edit\": false\n            },\n            \"custom_field_permissions\": [\n                {\n                    \"field\": \"e56309a9-04be-40a6-9f1f-e5dc2354f0ac\",\n                    \"view\": true,\n                    \"edit\": false\n                },\n                {\n                    \"field\": \"11fb558a-72c4-4d6d-8145-5c3283ea0912\",\n                    \"view\": true,\n                    \"edit\": false\n                }\n            ],\n            \"first_name\": {\n                \"view\": true,\n                \"edit\": true\n            },\n            \"last_name\": {\n                \"view\": true,\n                \"edit\": true\n            }\n\n]"}],"_postman_id":"40d66626-e877-4bab-8160-0ea599cb4491"},{"name":"Update Permission Group","id":"6d277ae0-2293-4a94-8ac8-3ffe4ef63a32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Meo PG 1 - new name\"\n}"},"url":"{{base_url}}/permission-group/{{Permission_Group_ID}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["permission-group","{{Permission_Group_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"3b834b29-593e-483a-ab8a-a5897d2436e4","name":"Update Permission Group","originalRequest":{"method":"PATCH","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Meo PG 1 - new name\"\n}"},"url":"{{base_url}}/permission-group/{{Permission_Group_ID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 21:16:43 GMT"},{"key":"Content-Type","value":"text/html; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Cookie"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"e73e8c9a-4a7c-4e24-ab97-1ee29af60e76\",\n        \"name\": \"12345\",\n        \"contact_section\": {\n            \"all_contacts\": {\n                \"view\": false,\n                \"edit\": false,\n                \"remove\": false\n            },\n            \"my_associated_contacts\": {\n                \"view\": true,\n                \"edit\": true,\n                \"remove\": false\n            },\n            \"bulk_actions\": {\n                \"send_email\": true,\n                \"send_text\": false,\n                \"send_survey\": true,\n                \"invite_to_event\": true,\n                \"change_tags\": false,\n                \"change_field_value\": false,\n                \"export_to_csv\": false,\n                \"archive\": false,\n                \"start_automation\": false,\n                \"manage_associations\": true,\n                \"upload_contacts\": false\n            },\n            \"default_for_new_contact_fields\": {\n                \"view\": true,\n                \"edit\": false\n            },\n            \"custom_field_permissions\": [\n                {\n                    \"field\": \"e56309a9-04be-40a6-9f1f-e5dc2354f0ac\",\n                    \"view\": true,\n                    \"edit\": false\n                },\n                {\n                    \"field\": \"11fb558a-72c4-4d6d-8145-5c3283ea0912\",\n                    \"view\": true,\n                    \"edit\": false\n                }\n            ],\n            \"first_name\": {\n                \"view\": true,\n                \"edit\": true\n            },\n            \"last_name\": {\n                \"view\": true,\n                \"edit\": true\n            }\n\n]"}],"_postman_id":"6d277ae0-2293-4a94-8ac8-3ffe4ef63a32"},{"name":"Delete Permission Group","id":"1374f0e1-22b6-4fea-98bd-f432d82e82f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"},{"key":"x-business-id","value":"{{business_id}}","type":"text"},{"key":"x-user-id","value":"{{user_id}}","type":"text"}],"url":"{{base_url}}/permission-group/{{Permission_Group_ID}}","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}},"urlObject":{"path":["permission-group","{{Permission_Group_ID}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1374f0e1-22b6-4fea-98bd-f432d82e82f7"}],"id":"b2e8e8aa-b4cb-4e25-877b-5aca05547f61","_postman_id":"b2e8e8aa-b4cb-4e25-877b-5aca05547f61","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","name":"Permissions","type":"folder"}}}],"id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6","description":"<p>Permissions are used to assign specific team members access to different areas of the app. There are two layers of permissions. </p>\n<ol>\n<li>Permission Groups - Assign CRUD access to specific areas of the app. </li>\n<li>Roles - Organize the different permission groups that can be assigned to team members.</li>\n</ol>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"0ad5d243-c3f6-42fd-a8e8-d304428882a6"}]}