{"info":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","description":"<html><head></head><body><h2 id=\"shared-api-options\">Shared API options</h2>\n<h3 id=\"parameters\">Parameters</h3>\n<p>When querying for multiple items (all list APIs) and for some show APIs where the record is not specified through the URL (i.e. giving an ID), it is possible to filter returned records using categories.</p>\n<p>Parameters generally must match the property names of the underlying model they are trying to query, where it is also possible to query using related model properties.</p>\n<p>For example, when you want to retrieve all components that have a certain category id set, you can add <code>categories.id=999</code> (where 999 is the category ID) to your request.</p>\n<p>Parameter comparison supports additional options that modify how the comparison is performed:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Operator</th>\n<th>Name</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>!</code></td>\n<td>Negation</td>\n<td>Matches records not matching the specified value</td>\n<td><code>!parent.id=NULL</code> =&gt; Records where the parent id is not null, thus have a parent</td>\n</tr>\n<tr>\n<td><code>&gt;</code></td>\n<td>GT</td>\n<td>Record value needs to be bigger than specified value</td>\n<td><code>&gt;min=2</code> =&gt; Records where the min property is bigger than two</td>\n</tr>\n<tr>\n<td><code>&lt;</code></td>\n<td>LT</td>\n<td>Record value needs to be smaller than specified value</td>\n<td><code>&lt;max=4</code> =&gt; Records where the min property is bigger than two</td>\n</tr>\n<tr>\n<td><code>%</code></td>\n<td>contains</td>\n<td>Matches records containing the specified value</td>\n<td><code>%name=Hello</code> =&gt; Records where the name property contains \"test\"</td>\n</tr>\n<tr>\n<td><code>|</code></td>\n<td>OR</td>\n<td>Matches records where any of the specified (comma separated) values matches.</td>\n<td><code>|category.id=2,3</code> =&gt; Any record that has either category 2 or category 3</td>\n</tr>\n<tr>\n<td><code>&amp;</code></td>\n<td>AND</td>\n<td>Matches records where any of the specified (comma separated) values matches.</td>\n<td><code>&amp;category.id=2,3</code> =&gt; Records that have both category 2 and category 3</td>\n</tr>\n</tbody>\n</table>\n</div><p>Please not operators need to be encoded when they are send in a URL query, so you would need to send for example <code>%25name=hello</code>.</p>\n<h3 id=\"graphql-like-response-modification\">GraphQL-like response modification</h3>\n<p>The API endpoints (CRUD) support specifying properties that should be queried using a GraphQL-like syntax. This way, you can retrieve only the properties you need, but also retrieve related properties from other records without having to do multiple API requests.</p>\n<p>The API supports standard field definitions and aliases. The following example shows how to query for related properties for a pages property retrieved from the API - this must be sent as string in the <code>properties</code> query parameter. Additional white spaces are ignored, so feel free to add line breaks for readability. Field names can be seperated with line breaks (GraphQL standard) or commas (to improve readibility in the query string). Example query:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  id\n  name\n  title: activeRevision.name\n  revisions {\n    id\n    created\n    modified\n  }\n}\n</code></pre><h3 id=\"ordering\">Ordering</h3>\n<p>When querying for multiple elements (i.e. list API requests), you can order the results using the <code>orderBy</code> parameter. The parameter accepts a comma-separated list of property-direction tupels (or property paths using dot notation) to order the results by. An example for this would be <code>orderBy=name:ASC</code> for sorting elements by their name in ascending order.</p>\n<h3 id=\"unpublished-records\">Unpublished Records</h3>\n<p>By default, unpublished records will not be retrieved when you query for multiple records (using the List endpoints) or when you query for a single record using anything but the record's ID. Records will be retrieved when accessed with an ID (and can thus also be updated or deleted), but this is only possible if the API is used by an authenticated Backend user.</p>\n<p>You can also specify that you want to retrieve unpublished records (when authenticated as Backend user) using the parameter <code>retrieveUnpublished=1</code>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"6917931","collectionId":"2592cfc9-f585-4adf-b34a-e821f212ecb6","publishedId":"Tzm2LeUU","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"ee1e3e"},"publishDate":"2025-08-28T06:55:16.000Z"},"item":[{"name":"Authentication","item":[{"name":"JSON Login","id":"0d68f6f1-afdf-48f4-b994-cb92cb5cadf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"username\": \"{{username}}\",\n\t\"password\": \"{{password}}\",\n\t\"redirectUrl\": \"/demo\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/login?properties={user {id, name: person.fullName, email: person.email, username}}","description":"<p>This login method can be used to log the user and set the authenticated user in the session.</p>\n<p>Further requests can be authenticated using the session cookie.</p>\n<p>If the redirectUrl is specified, successful logins will result in a HTTP redirect or a JSON response containing the redirect url, depending on the request type.</p>\n","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","login"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{user {id, name: person.fullName, email: person.email, username}}"}],"variable":[]}},"response":[{"id":"119053f1-32eb-4484-9155-edccdb93fb3c","name":"JSON Login","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"{{username}}\",\n\t\"password\": \"{{password}}\",\n\t\"redirectUrl\": \"/demo\"\n}"},"url":{"raw":"https://{{domain}}/login?properties={user {id, name: person.fullName, email: person.email, username}}","protocol":"https","host":["{{domain}}"],"path":["login"],"query":[{"key":"properties","value":"{user {id, name: person.fullName, email: person.email, username}}"}]}},"status":"See Other","code":303,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2019 11:16:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1552562174.2356/104.5969"},{"key":"Content-Security-Policy","value":"script-src 'self' https://cdnjs.cloudflare.com 'nonce-/tp3eo+PvBcX5sWmYDvu8RXrxYs=';"},{"key":"X-Content-Security-Policy","value":"script-src 'self' https://cdnjs.cloudflare.com 'nonce-/tp3eo+PvBcX5sWmYDvu8RXrxYs=';"},{"key":"Content-Length","value":"204"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"redirect\": \"/demo\",\n    \"message\": \"Successfully logged in\",\n    \"data\": {\n        \"user\": {\n            \"id\": 1,\n            \"name\": \"Dennis Westphal\",\n            \"email\": \"dennis.westphal@coredna.com\",\n            \"username\": \"dennis.westphal@coredna.com\"\n        }\n    }\n}"}],"_postman_id":"0d68f6f1-afdf-48f4-b994-cb92cb5cadf0"},{"name":"Form-data login","id":"f1c3eaa0-f547-482c-a12b-b48203ccc054","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"{{protocol}}://{{domain}}/cdna-api/login?properties={user {id, name: person.fullName, email: person.email, username}}","description":"<p>This login method can be used to log the user and set the authenticated user in the session.</p>\n<p>Further requests can be authenticated using the session cookie.</p>\n<p>If the redirectUrl is specified, successful logins will result in a HTTP redirect or a JSON response containing the redirect url, depending on the request type.</p>\n","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","login"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{user {id, name: person.fullName, email: person.email, username}}"}],"variable":[]}},"response":[{"id":"ab7e8a7a-68ee-41fa-9ca2-b713cc212957","name":"Form-data login","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}],"options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/login?properties={user {id, name: person.fullName, email: person.email, username}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","login"],"query":[{"key":"properties","value":"{user {id, name: person.fullName, email: person.email, username}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Apr 2020 15:50:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"194"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1588089058.757/351.9511"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"user\": {\n            \"id\": 1,\n            \"name\": \"Dennis Westphal\",\n            \"email\": \"dennis.westphal@coredna.com\",\n            \"username\": \"dennis.westphal@coredna.com\"\n        }\n    },\n    \"message\": \"You have successfully logged in.\"\n}"}],"_postman_id":"f1c3eaa0-f547-482c-a12b-b48203ccc054"},{"name":"JSON Logout","id":"78296d99-e361-41f1-9c25-b8a73007f2cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/logout","description":"<p>This login method can be used to log out the user.</p>\n","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","logout"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"bf8b7c09-bb47-4ba2-8e8c-3e42884faf1f","name":"JSON Logout","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{protocol}}://{{domain}}/cdna-api/logout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Mar 2019 11:16:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1552562174.2356/104.5969"},{"key":"Content-Security-Policy","value":"script-src 'self' https://cdnjs.cloudflare.com 'nonce-/tp3eo+PvBcX5sWmYDvu8RXrxYs=';"},{"key":"X-Content-Security-Policy","value":"script-src 'self' https://cdnjs.cloudflare.com 'nonce-/tp3eo+PvBcX5sWmYDvu8RXrxYs=';"},{"key":"Content-Length","value":"204"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"You have successfully logged out.\"\n}"}],"_postman_id":"78296d99-e361-41f1-9c25-b8a73007f2cd"}],"id":"c4ddbdb6-7b92-4203-9eb5-b018931a53d4","_postman_id":"c4ddbdb6-7b92-4203-9eb5-b018931a53d4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Globals","item":[{"name":"Get configuration setting","id":"04a3c4af-5b41-494c-87f9-0ab922857430","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/globals/config/{settingKey}","description":"<p>Get a configuration setting for the current site and authenticated user.</p>\n<p>{settingKey} should be replaced by the actual setting's key, which begins with the capitalized module name.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","globals","config","{settingKey}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b6e0d939-a2d8-441c-a83e-59ad5fb769a7","name":"Get date format","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/globals/config/Globals.i18n.dateFormat"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2019 15:19:45 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1555341585.8084/97.3630"},{"key":"Content-Length","value":"47"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"value\": \"d/m/Y\"\n    }\n}"}],"_postman_id":"04a3c4af-5b41-494c-87f9-0ab922857430"},{"name":"Get all configuration settings","id":"6bbd9ee7-b054-458f-a682-283cfb8ed16d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/globals/config","description":"<p>Fetches all configuration settings for all modules.</p>\n<p>Fetching all settings is slow and thus should only be used for debug or development purposes.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","globals","config"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6bbd9ee7-b054-458f-a682-283cfb8ed16d"}],"id":"bf951b64-4237-49eb-9fa5-9a0cb39277c9","_postman_id":"bf951b64-4237-49eb-9fa5-9a0cb39277c9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Carts","item":[{"name":"Carts","item":[{"name":"List carts","id":"0265f438-6e38-4eb3-8b20-ff1142544022","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{protocol}}://{{domain}}/cdna-api/cart/carts","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","carts"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0265f438-6e38-4eb3-8b20-ff1142544022"},{"name":"View cart","id":"cc8fdbc9-905a-450e-9629-a0248631ac56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/:uuid","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart",":uuid"],"host":["{{domain}}"],"query":[],"variable":[{"type":"any","value":"","key":"uuid"}]}},"response":[],"_postman_id":"cc8fdbc9-905a-450e-9629-a0248631ac56"},{"name":"View current cart","id":"eef90d06-f3c1-422d-819d-c7e47b584f69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eef90d06-f3c1-422d-819d-c7e47b584f69"},{"name":"Add cart","id":"6a144e76-e5fc-4cea-a30b-a4f389c547dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a144e76-e5fc-4cea-a30b-a4f389c547dd"},{"name":"Clear cart","id":"26d84a35-64bc-45ad-b5b4-4847389ec215","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/56fd4aec-0bb7-41a0-91af-87136d9fd3e3/clear","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","56fd4aec-0bb7-41a0-91af-87136d9fd3e3","clear"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"26d84a35-64bc-45ad-b5b4-4847389ec215"},{"name":"Clear current cart","id":"6f544aec-ee32-4685-ba0b-3c385c80f6ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/clear","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","clear"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f544aec-ee32-4685-ba0b-3c385c80f6ba"},{"name":"Delete cart","id":"f631a3e4-4d2a-4165-89af-61073f570a29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/7a5f2de9-0b75-4777-8ba8-6a80ce0969ae","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","7a5f2de9-0b75-4777-8ba8-6a80ce0969ae"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f631a3e4-4d2a-4165-89af-61073f570a29"},{"name":"Evaluate cart","id":"c07eeb50-2571-4270-a79d-0fd3a7f21fb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/56fd4aec-0bb7-41a0-91af-87136d9fd3e3/evaluate","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","56fd4aec-0bb7-41a0-91af-87136d9fd3e3","evaluate"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c07eeb50-2571-4270-a79d-0fd3a7f21fb4"},{"name":"Evaluate current cart","id":"37c06112-19ff-4bc3-b5a5-e1352bacecba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/evaluate","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","evaluate"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"37c06112-19ff-4bc3-b5a5-e1352bacecba"},{"name":"Add discount code","id":"daefbaaa-a20a-40c0-bc79-38cf056d3c5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/45ae9a1c-f3a9-42d7-8497-53ffd590c844/discount/50-off","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","45ae9a1c-f3a9-42d7-8497-53ffd590c844","discount","50-off"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"daefbaaa-a20a-40c0-bc79-38cf056d3c5d"},{"name":"Add discount to current cart","id":"17dc8e8e-e19e-4bb1-b277-f6a4347c6900","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/discount/50-off","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","discount","50-off"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"17dc8e8e-e19e-4bb1-b277-f6a4347c6900"},{"name":"Delete discount code","id":"1b310091-3b57-45c9-b88d-7baffb14e3a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/45ae9a1c-f3a9-42d7-8497-53ffd590c844/discount/50-off","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","45ae9a1c-f3a9-42d7-8497-53ffd590c844","discount","50-off"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b310091-3b57-45c9-b88d-7baffb14e3a9"},{"name":"Delete discount code from current cart","id":"700ce2d2-1532-4f20-a6e9-8b2c3fa3491a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/discount/50-off","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","discount","50-off"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"700ce2d2-1532-4f20-a6e9-8b2c3fa3491a"}],"id":"e48b47c2-b13c-48c8-84b3-8a66fe5ddfa8","_postman_id":"e48b47c2-b13c-48c8-84b3-8a66fe5ddfa8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Items","item":[{"name":"Add item","id":"f3821c4d-b70d-4d6d-80c1-22b2eec9dff0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/5f6749ec-22b3-4700-a7f2-f4733d2142bf/item/CARD","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","5f6749ec-22b3-4700-a7f2-f4733d2142bf","item","CARD"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3821c4d-b70d-4d6d-80c1-22b2eec9dff0"},{"name":"Add item to current cart","id":"b039de88-74d5-416e-ace3-4f110698b185","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/item/CARD","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","item","CARD"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b039de88-74d5-416e-ace3-4f110698b185"},{"name":"Update item","id":"93a74e72-8851-484a-9312-d40e55d84f6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/5f6749ec-22b3-4700-a7f2-f4733d2142bf/item/30?quantity=4","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","5f6749ec-22b3-4700-a7f2-f4733d2142bf","item","30"],"host":["{{domain}}"],"query":[{"key":"quantity","value":"4"}],"variable":[]}},"response":[],"_postman_id":"93a74e72-8851-484a-9312-d40e55d84f6f"},{"name":"Update item in current cart","id":"cb7b68a1-3e8b-4ebc-bfa7-3c0f83a61b4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"quantity\": 5\r\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/item/29","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","item","29"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb7b68a1-3e8b-4ebc-bfa7-3c0f83a61b4b"},{"name":"Delete item","id":"a2565ed3-2f88-458f-a6db-ff4de9353550","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/5f6749ec-22b3-4700-a7f2-f4733d2142bf/item/32","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","5f6749ec-22b3-4700-a7f2-f4733d2142bf","item","32"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2565ed3-2f88-458f-a6db-ff4de9353550"},{"name":"Delete item from current cart","id":"b1cc0705-7255-45ed-9a14-3b0ce7bed1a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/item/5","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","item","5"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1cc0705-7255-45ed-9a14-3b0ce7bed1a1"}],"id":"61f60255-246e-42fe-9b61-4af13ffd0f98","_postman_id":"61f60255-246e-42fe-9b61-4af13ffd0f98","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Messages","item":[{"name":"Delete message","id":"943bbbd2-b054-4398-9758-1711fa62f392","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/56fd4aec-0bb7-41a0-91af-87136d9fd3e3/message/32","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","56fd4aec-0bb7-41a0-91af-87136d9fd3e3","message","32"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"943bbbd2-b054-4398-9758-1711fa62f392"},{"name":"Delete message from current cart","id":"e0442659-9691-49d1-8d06-81307bfdecb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"{{protocol}}://{{domain}}/cdna-api/cart/message/5","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","cart","message","5"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0442659-9691-49d1-8d06-81307bfdecb3"}],"id":"0348e8bb-84e9-4a15-8035-203e8d2b23ab","_postman_id":"0348e8bb-84e9-4a15-8035-203e8d2b23ab","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"363a30c5-f0ba-40fc-ad88-cfd111f9d80a","_postman_id":"363a30c5-f0ba-40fc-ad88-cfd111f9d80a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Checkouts","item":[{"name":"Discount Codes","item":[{"name":"Add discount code","id":"548a21be-9d52-4a32-a6e2-5fab0a7e691a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/discount-code","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","id":"4af15b32-a687-4736-a9b5-1fe332b4300d","name":"Checkouts","type":"folder"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","checkout",":uuid","discount-code"],"host":["{{domain}}"],"query":[],"variable":[{"description":{"content":"<p>Unique identifer of the checkout</p>\n","type":"text/plain"},"type":"any","value":"","key":"uuid"}]}},"response":[{"id":"d1e4a2d4-9819-4b7c-a1e1-31341a21848e","name":"Incorrect discount code","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"100OFF\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/discount-code","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","discount-code"],"variable":[{"key":"uuid","value":"","description":"Unique identifer of the checkout"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"Discount code does not exist\"\n}"},{"id":"50984b7e-9267-4196-839b-3c69a93e4f2f","name":"Add discount code","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"10OFF\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/discount-code","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","discount-code"],"variable":[{"key":"uuid","value":"","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"f27d6526-9623-4b9e-81a2-2b5130a90a83\",\n            \"person\": null,\n            \"deliveryAddress\": null,\n            \"billingAddress\": null,\n            \"items\": [\n                {\n                    \"id\": 94,\n                    \"productCode\": \"course-02\",\n                    \"name\": \"Intermediate Course\",\n                    \"quantity\": 10,\n                    \"discount\": \"200\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"2000.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [],\n            \"discountCodes\": [\n                \"10OFF\"\n            ],\n            \"discountTotal\": \"200\",\n            \"surchargeTotal\": \"0.0000\",\n            \"shippingTotal\": \"0.0000\",\n            \"handlingTotal\": \"0.0000\",\n            \"insuranceTotal\": \"0.0000\",\n            \"taxTotal\": \"0.0000\",\n            \"total\": \"1800.0000\",\n            \"created\": \"2025-08-20T04:58:00+00:00\",\n            \"modified\": \"2025-08-20T05:26:55+00:00\"\n        }\n    },\n    \"message\": \"Discount code added to checkout\"\n}"}],"_postman_id":"548a21be-9d52-4a32-a6e2-5fab0a7e691a"},{"name":"Delete discount code","id":"b4269ef9-d786-40c7-bffa-c878a3d2583e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/discount-code/:code","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","id":"4af15b32-a687-4736-a9b5-1fe332b4300d","name":"Checkouts","type":"folder"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","checkout",":uuid","discount-code",":code"],"host":["{{domain}}"],"query":[],"variable":[{"description":{"content":"<p>Unique identifer of the checkout</p>\n","type":"text/plain"},"type":"any","value":"","key":"uuid"},{"type":"any","value":"","key":"code"}]}},"response":[{"id":"f10c6de5-584d-4f91-a797-ed323e35cef3","name":"Delete a single code","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/discount-code/10OFF","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","discount-code","10OFF"],"variable":[{"key":"uuid","value":"","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"f27d6526-9623-4b9e-81a2-2b5130a90a83\",\n            \"person\": null,\n            \"deliveryAddress\": null,\n            \"billingAddress\": null,\n            \"items\": [\n                {\n                    \"id\": 94,\n                    \"productCode\": \"course-02\",\n                    \"name\": \"Intermediate Course\",\n                    \"quantity\": 10,\n                    \"discount\": \"0\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"2000.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [],\n            \"discountCodes\": [],\n            \"discountTotal\": \"0\",\n            \"surchargeTotal\": \"0.0000\",\n            \"shippingTotal\": \"0.0000\",\n            \"handlingTotal\": \"0.0000\",\n            \"insuranceTotal\": \"0.0000\",\n            \"taxTotal\": \"0.0000\",\n            \"total\": \"1800.0000\",\n            \"created\": \"2025-08-20T04:58:00+00:00\",\n            \"modified\": \"2025-08-20T05:32:15+00:00\"\n        }\n    },\n    \"message\": \"Discount code was removed from checkout\"\n}"},{"id":"6e521f9f-2ceb-451f-977c-c1f6de265fa3","name":"Delete all codes","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/discount-code","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","discount-code"],"variable":[{"key":"uuid","value":"","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"f27d6526-9623-4b9e-81a2-2b5130a90a83\",\n            \"person\": null,\n            \"deliveryAddress\": null,\n            \"billingAddress\": null,\n            \"items\": [\n                {\n                    \"id\": 94,\n                    \"productCode\": \"course-02\",\n                    \"name\": \"Intermediate Course\",\n                    \"quantity\": 10,\n                    \"discount\": \"0\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"2000.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [],\n            \"discountCodes\": [],\n            \"discountTotal\": \"0\",\n            \"surchargeTotal\": \"0.0000\",\n            \"shippingTotal\": \"0.0000\",\n            \"handlingTotal\": \"0.0000\",\n            \"insuranceTotal\": \"0.0000\",\n            \"taxTotal\": \"0.0000\",\n            \"total\": \"1800.0000\",\n            \"created\": \"2025-08-20T04:58:00+00:00\",\n            \"modified\": \"2025-08-20T05:33:22+00:00\"\n        }\n    },\n    \"message\": \"Discount code was removed from checkout\"\n}"}],"_postman_id":"b4269ef9-d786-40c7-bffa-c878a3d2583e"}],"id":"d85ae96c-7d97-40a0-b5fc-ad4022d65641","_postman_id":"d85ae96c-7d97-40a0-b5fc-ad4022d65641","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","id":"4af15b32-a687-4736-a9b5-1fe332b4300d","name":"Checkouts","type":"folder"}}},{"name":"Add checkout","id":"8139f860-82e9-4543-afa2-b6fdb3094304","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/checkout/:cartUuid","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","id":"4af15b32-a687-4736-a9b5-1fe332b4300d","name":"Checkouts","type":"folder"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","checkout",":cartUuid"],"host":["{{domain}}"],"query":[],"variable":[{"type":"any","value":"","key":"cartUuid"}]}},"response":[{"id":"d9215280-20f2-47bc-9725-f005c7317de7","name":"Add checkout","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:cartUuid","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":cartUuid"],"variable":[{"key":"cartUuid","value":"47684961-8a19-4316-8f65-6d068d87b18f","description":"The unique identifier of the cart to base the checkout from"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Cache-Control","value":"public, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"47684961-8a19-4316-8f65-6d068d87b18f\",\n            \"person\": null,\n            \"deliveryAddress\": null,\n            \"billingAddress\": null,\n            \"items\": [\n                {\n                    \"id\": 85,\n                    \"productCode\": \"course-03\",\n                    \"name\": \"Advanced Course\",\n                    \"quantity\": 6,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"3000.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [],\n            \"discountTotal\": \"0\",\n            \"surchargeTotal\": \"0\",\n            \"shippingTotal\": \"0\",\n            \"handlingTotal\": \"0\",\n            \"insuranceTotal\": \"0\",\n            \"taxTotal\": \"0\",\n            \"total\": \"3000\",\n            \"created\": \"2025-08-13T06:06:46+00:00\",\n            \"modified\": \"2025-08-13T06:06:46+00:00\"\n        }\n    },\n    \"message\": \"The Checkout has been added successfully.\"\n}"},{"id":"ba0256cd-69f0-44d1-a230-db7b0d9fbe36","name":"Add checkout (selected cart items)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"items\": [\r\n        85, 87\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:cartUuid","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":cartUuid"],"variable":[{"key":"cartUuid","value":"47684961-8a19-4316-8f65-6d068d87b18f","description":"The unique identifier of the cart to base the checkout from"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Cache-Control","value":"public, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"47684961-8a19-4316-8f65-6d068d87b18f\",\n            \"person\": null,\n            \"deliveryAddress\": null,\n            \"billingAddress\": null,\n            \"items\": [\n                {\n                    \"id\": 85,\n                    \"productCode\": \"course-03\",\n                    \"name\": \"Advanced Course\",\n                    \"quantity\": 6,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"3000.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 87,\n                    \"productCode\": \"course-02\",\n                    \"name\": \"Intermediate Course\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"200.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [],\n            \"discountTotal\": \"0\",\n            \"surchargeTotal\": \"0\",\n            \"shippingTotal\": \"0\",\n            \"handlingTotal\": \"0\",\n            \"insuranceTotal\": \"0\",\n            \"taxTotal\": \"0\",\n            \"total\": \"3200\",\n            \"created\": \"2025-08-13T06:19:27+00:00\",\n            \"modified\": \"2025-08-13T06:19:27+00:00\"\n        }\n    },\n    \"message\": \"The Checkout has been added successfully.\"\n}"}],"_postman_id":"8139f860-82e9-4543-afa2-b6fdb3094304"},{"name":"Edit checkout","id":"45ca686e-09da-4d41-b01d-812d4adb13f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    // When guest checkout is enabled and user is unauthenticated, this is how user's email is recorded\r\n    \"person\": {\r\n        \"email\": \"sample.person@acme.com\"\r\n    },\r\n\r\n    \"deliveryAddress\": {\r\n        \"firstName\": \"Sample\",\r\n        \"lastName\": \"Person\",\r\n        \"addressLine1\": \"348 High Street\",\r\n        \"addressLine2\": \"\",\r\n        \"countryName\": \"Australia\",\r\n        \"stateName\": \"VIC\",\r\n        \"suburb\": \"Prahran\",\r\n        \"postcode\": \"3181\"\r\n    },\r\n\r\n    \"billingAddress\": {\r\n        \"firstName\": \"Sample\",\r\n        \"lastName\": \"Person\",\r\n        \"addressLine1\": \"348 High Street\",\r\n        \"addressLine2\": \"\",\r\n        \"countryName\": \"Australia\",\r\n        \"stateName\": \"VIC\",\r\n        \"suburb\": \"Prahran\",\r\n        \"postcode\": \"3181\"\r\n    },\r\n\r\n    \"metadataFieldValues\": {\r\n        // Update an existing value\r\n        \"0\": {\r\n            \"id\": \"26\",\r\n            \"value\": \"1\"\r\n        },\r\n\r\n        // Set a new value\r\n        \"1\": {\r\n            \"metadataField\": {\r\n                \"id\": \"2\"\r\n            },\r\n            \"value\": \"dodgy@acme.com\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","id":"4af15b32-a687-4736-a9b5-1fe332b4300d","name":"Checkouts","type":"folder"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","checkout",":uuid"],"host":["{{domain}}"],"query":[],"variable":[{"description":{"content":"<p>Unique identifer of the checkout</p>\n","type":"text/plain"},"type":"any","value":"","key":"uuid"}]}},"response":[{"id":"373b4515-4630-4fba-b7cc-2aa08f1fcb33","name":"Assign email address to guest checkout","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"person\": {\r\n        \"email\": \"sample.person@acme.com\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid"],"variable":[{"key":"uuid","value":"41437ae4-4dd0-4719-8708-f5cd59f0bc9c","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Cache-Control","value":"public, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"41437ae4-4dd0-4719-8708-f5cd59f0bc9c\",\n            \"person\": {\n                \"email\": \"sample.person@acme.com\"\n            },\n            \"deliveryAddress\": null,\n            \"billingAddress\": null,\n            \"items\": [\n                {\n                    \"id\": 88,\n                    \"productCode\": \"BAG0001\",\n                    \"name\": \"Single Origin Coffee Beans\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"15.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [],\n            \"discountTotal\": \"0.0000\",\n            \"surchargeTotal\": \"0.0000\",\n            \"shippingTotal\": \"0.0000\",\n            \"handlingTotal\": \"0.0000\",\n            \"insuranceTotal\": \"0.0000\",\n            \"taxTotal\": \"0.0000\",\n            \"total\": \"15.0000\",\n            \"created\": \"2025-08-13T06:44:13+00:00\",\n            \"modified\": \"2025-08-13T06:45:03+00:00\"\n        }\n    },\n    \"message\": \"Checkout updated successfully.\",\n    \"messages\": [\n        {\n            \"type\": \"warning\",\n            \"message\": \"Delivery address has not been set\",\n            \"deleteUrl\": null\n        },\n        {\n            \"type\": \"warning\",\n            \"message\": \"Billing address has not been set\",\n            \"deleteUrl\": null\n        }\n    ]\n}"},{"id":"7890008b-be96-4166-8cf0-d7599ffd09b4","name":"Assign addresses to checkout","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"deliveryAddress\": {\r\n        \"firstName\": \"Sample\",\r\n        \"lastName\": \"Person\",\r\n        \"addressLine1\": \"348 High Street\",\r\n        \"addressLine2\": \"\",\r\n        \"countryName\": \"Australia\",\r\n        \"stateName\": \"VIC\",\r\n        \"suburb\": \"Prahran\",\r\n        \"postcode\": \"3181\"\r\n    },\r\n    \"billingAddress\": {\r\n        \"firstName\": \"Sample\",\r\n        \"lastName\": \"Person\",\r\n        \"addressLine1\": \"348 High Street\",\r\n        \"addressLine2\": \"\",\r\n        \"countryName\": \"Australia\",\r\n        \"stateName\": \"VIC\",\r\n        \"suburb\": \"Prahran\",\r\n        \"postcode\": \"3181\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid"],"variable":[{"key":"uuid","value":"41437ae4-4dd0-4719-8708-f5cd59f0bc9c","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Cache-Control","value":"public, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"41437ae4-4dd0-4719-8708-f5cd59f0bc9c\",\n            \"person\": {\n                \"email\": \"sample.person@acme.com\"\n            },\n            \"deliveryAddress\": {\n                \"companyName\": null,\n                \"firstName\": \"Sample\",\n                \"lastName\": \"Person\",\n                \"addressLine1\": \"348 High Street\",\n                \"addressLine2\": null,\n                \"suburb\": \"Prahran\",\n                \"city\": null,\n                \"stateName\": \"VIC\",\n                \"postcode\": \"3181\",\n                \"countryName\": \"Australia\"\n            },\n            \"billingAddress\": {\n                \"companyName\": null,\n                \"firstName\": \"Sample\",\n                \"lastName\": \"Person\",\n                \"addressLine1\": \"348 High Street\",\n                \"addressLine2\": null,\n                \"suburb\": \"Prahran\",\n                \"city\": null,\n                \"stateName\": \"VIC\",\n                \"postcode\": \"3181\",\n                \"countryName\": \"Australia\"\n            },\n            \"items\": [\n                {\n                    \"id\": 88,\n                    \"productCode\": \"BAG0001\",\n                    \"name\": \"Single Origin Coffee Beans\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"15.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [],\n            \"discountTotal\": \"0.0000\",\n            \"surchargeTotal\": \"0.0000\",\n            \"shippingTotal\": \"0.0000\",\n            \"handlingTotal\": \"0.0000\",\n            \"insuranceTotal\": \"0.0000\",\n            \"taxTotal\": \"0.0000\",\n            \"total\": \"15.0000\",\n            \"created\": \"2025-08-13T06:44:13+00:00\",\n            \"modified\": \"2025-08-13T06:48:01+00:00\"\n        }\n    },\n    \"message\": \"Checkout updated successfully.\"\n}"}],"_postman_id":"45ca686e-09da-4d41-b01d-812d4adb13f5"},{"name":"Delete checkout","id":"0b83d6b3-b30b-4765-bb73-27d79ec2e547","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","id":"4af15b32-a687-4736-a9b5-1fe332b4300d","name":"Checkouts","type":"folder"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","checkout",":uuid"],"host":["{{domain}}"],"query":[],"variable":[{"description":{"content":"<p>Unique identifer of the checkout</p>\n","type":"text/plain"},"type":"any","value":"","key":"uuid"}]}},"response":[{"id":"1508356b-3c6f-4022-b30b-d8c29ad9392c","name":"Delete checkout","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid"],"variable":[{"key":"uuid","value":"41437ae4-4dd0-4719-8708-f5cd59f0bc9c","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Cache-Control","value":"public, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"41437ae4-4dd0-4719-8708-f5cd59f0bc9c\",\n            \"person\": {\n                \"email\": \"sample.person@acme.com\"\n            },\n            \"deliveryAddress\": {\n                \"companyName\": null,\n                \"firstName\": \"Sample\",\n                \"lastName\": \"Person\",\n                \"addressLine1\": \"348 High Street\",\n                \"addressLine2\": null,\n                \"suburb\": \"Prahran\",\n                \"city\": null,\n                \"stateName\": \"VIC\",\n                \"postcode\": \"3181\",\n                \"countryName\": \"Australia\"\n            },\n            \"billingAddress\": {\n                \"companyName\": null,\n                \"firstName\": \"Sample\",\n                \"lastName\": \"Person\",\n                \"addressLine1\": \"348 High Street\",\n                \"addressLine2\": null,\n                \"suburb\": \"Prahran\",\n                \"city\": null,\n                \"stateName\": \"VIC\",\n                \"postcode\": \"3181\",\n                \"countryName\": \"Australia\"\n            },\n            \"items\": [\n                {\n                    \"id\": 21,\n                    \"productCode\": \"1234567890\",\n                    \"name\": \"Test Product\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"100.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 22,\n                    \"productCode\": \"1234567890\",\n                    \"name\": \"Test Product\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"100.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 23,\n                    \"productCode\": \"1234567890\",\n                    \"name\": \"Test Product\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"100.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 24,\n                    \"productCode\": \"1234567890\",\n                    \"name\": \"Test Product\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"100.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 26,\n                    \"productCode\": \"course-02\",\n                    \"name\": \"Intermediate Course\",\n                    \"quantity\": 2,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"400.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 31,\n                    \"productCode\": \"course-03\",\n                    \"name\": \"Advanced Course\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"500.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 32,\n                    \"productCode\": \"course-03\",\n                    \"name\": \"Advanced Course\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"500.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 33,\n                    \"productCode\": \"course-03\",\n                    \"name\": \"Advanced Course\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"500.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 36,\n                    \"productCode\": \"milk-jug\",\n                    \"name\": \"Milk Jug\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"50.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 38,\n                    \"productCode\": \"Course-01\",\n                    \"name\": \"Beginners Course\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"10.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 39,\n                    \"productCode\": \"milk-jug\",\n                    \"name\": \"Milk Jug\",\n                    \"quantity\": 2,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"10.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 40,\n                    \"productCode\": \"Course-01\",\n                    \"name\": \"Beginners Course\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"10.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 41,\n                    \"productCode\": \"milk-jug\",\n                    \"name\": \"Milk Jug\",\n                    \"quantity\": 2,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"10.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 63,\n                    \"productCode\": \"milk-jug\",\n                    \"name\": \"Milk Jug\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"5.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 73,\n                    \"productCode\": \"Course-01\",\n                    \"name\": \"Beginners Course\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"95.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 74,\n                    \"productCode\": \"BAG0001\",\n                    \"name\": \"Single Origin Coffee Beans\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"15.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 86,\n                    \"productCode\": \"BAG0001\",\n                    \"name\": \"Single Origin Coffee Beans\",\n                    \"quantity\": 2,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"31.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 88,\n                    \"productCode\": \"BAG0001\",\n                    \"name\": \"Single Origin Coffee Beans\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"15.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [],\n            \"discountTotal\": \"0.0000\",\n            \"surchargeTotal\": \"0.0000\",\n            \"shippingTotal\": \"0.0000\",\n            \"handlingTotal\": \"0.0000\",\n            \"insuranceTotal\": \"0.0000\",\n            \"taxTotal\": \"0.0000\",\n            \"total\": \"15.0000\",\n            \"created\": \"2025-08-13T06:44:13+00:00\",\n            \"modified\": \"2025-08-13T06:48:01+00:00\"\n        }\n    },\n    \"message\": \"Checkout deleted successfully.\"\n}"}],"_postman_id":"0b83d6b3-b30b-4765-bb73-27d79ec2e547"},{"name":"Show checkout","id":"59f299ed-4b76-41f6-ba62-7ecafd2321d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","id":"4af15b32-a687-4736-a9b5-1fe332b4300d","name":"Checkouts","type":"folder"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","checkout",":uuid"],"host":["{{domain}}"],"query":[],"variable":[{"description":{"content":"<p>Unique identifer of the checkout</p>\n","type":"text/plain"},"type":"any","value":"","key":"uuid"}]}},"response":[{"id":"edcdea45-b08f-4bcb-87db-8ed0918bca69","name":"Show checkout","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid"],"variable":[{"key":"uuid","value":"47684961-8a19-4316-8f65-6d068d87b18f","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Cache-Control","value":"public, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"checkout\": {\n            \"uuid\": \"47684961-8a19-4316-8f65-6d068d87b18f\",\n            \"person\": {\n                \"email\": \"sample.person@coredna.com\"\n            },\n            \"deliveryAddress\": {\n                \"companyName\": null,\n                \"firstName\": \"Sample\",\n                \"lastName\": \"Person\",\n                \"addressLine1\": \"348 High Street\",\n                \"addressLine2\": null,\n                \"suburb\": \"Prahran\",\n                \"city\": null,\n                \"stateName\": \"VIC\",\n                \"postcode\": \"3181\",\n                \"countryName\": \"Australia\"\n            },\n            \"billingAddress\": {\n                \"companyName\": null,\n                \"firstName\": \"Sample\",\n                \"lastName\": \"Person\",\n                \"addressLine1\": \"348 High Street\",\n                \"addressLine2\": null,\n                \"suburb\": \"Prahran\",\n                \"city\": null,\n                \"stateName\": \"VIC\",\n                \"postcode\": \"3181\",\n                \"countryName\": \"Australia\"\n            },\n            \"items\": [\n                {\n                    \"id\": 85,\n                    \"productCode\": \"course-03\",\n                    \"name\": \"Advanced Course\",\n                    \"quantity\": 6,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"3000.0000\",\n                    \"available\": true\n                },\n                {\n                    \"id\": 87,\n                    \"productCode\": \"course-02\",\n                    \"name\": \"Intermediate Course\",\n                    \"quantity\": 1,\n                    \"discount\": \"0.0000\",\n                    \"tax\": \"0.0000\",\n                    \"amount\": \"200.0000\",\n                    \"available\": true\n                }\n            ],\n            \"metadataFieldValues\": [\n                {\n                    \"metadataField\": {\n                        \"id\": 1,\n                        \"identifier\": \"ready-to-export\",\n                        \"name\": \"Ready to export 📩\",\n                        \"dataType\": \"boolean\"\n                    },\n                    \"id\": 26,\n                    \"value\": true\n                },\n                {\n                    \"metadataField\": {\n                        \"id\": 2,\n                        \"identifier\": \"alt-email\",\n                        \"name\": \"Alternate Email\",\n                        \"dataType\": \"text\"\n                    },\n                    \"id\": 27,\n                    \"value\": \"dodgy@acme.com\"\n                }\n            ],\n            \"discountTotal\": \"0.0000\",\n            \"surchargeTotal\": \"0.0000\",\n            \"shippingTotal\": \"0.0000\",\n            \"handlingTotal\": \"0.0000\",\n            \"insuranceTotal\": \"0.0000\",\n            \"taxTotal\": \"0.0000\",\n            \"total\": \"3200.0000\",\n            \"created\": \"2025-08-13T06:19:27+00:00\",\n            \"modified\": \"2025-08-13T06:36:48+00:00\"\n        }\n    }\n}"}],"_postman_id":"59f299ed-4b76-41f6-ba62-7ecafd2321d2"},{"name":"Purchase checkout","id":"7b339570-2365-45a6-90b8-914ea2ea6c49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    // ID of the payment method\r\n    \"_paymentMethodId\": 1,\r\n\r\n    // When required, recaptcha response should be passed\r\n    \"_recaptchaToken\": \"\"\r\n\r\n    // Additional data could be sent depending on the payment method\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/purchase","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","id":"4af15b32-a687-4736-a9b5-1fe332b4300d","name":"Checkouts","type":"folder"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","checkout",":uuid","purchase"],"host":["{{domain}}"],"query":[],"variable":[{"description":{"content":"<p>Unique identifer of the checkout</p>\n","type":"text/plain"},"type":"any","value":"","key":"uuid"}]}},"response":[{"id":"c96bdf55-9d32-4a2c-9cbb-f8dda3c31db9","name":"Successful Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_paymentMethodId\": 2\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/purchase","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","purchase"],"variable":[{"key":"uuid","value":"f1312555-f2fd-4333-acad-cddec75dc341","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Cache-Control","value":"public, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"state\": \"success\",\n        \"action\": {\n            \"type\": \"redirect\",\n            \"method\": \"GET\",\n            \"url\": \"https://acme.com/checkout/complete/bde48fcb-e194-4007-bc51-b78a25e4dd55\"\n        },\n        \"code\": \"PAYMENT_SUCCESSFUL\",\n        \"order\": {\n            \"uuid\": \"bde48fcb-e194-4007-bc51-b78a25e4dd55\"\n        }\n    },\n    \"message\": \"Payment successful\"\n}"},{"id":"b5d693cf-1191-41f8-8b49-59211df4d984","name":"Pending Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_paymentMethodId\": 1,\r\n    \r\n    // Stripe confirmation token\r\n    \"confirmationToken\": \"ctoken_1Ry3wDRL8Mf5X2fZ5IK70aQn\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/purchase","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","purchase"],"variable":[{"key":"uuid","value":"","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"result\": \"success\",\r\n    \"data\": {\r\n        \"state\": \"pending\",\r\n        \"action\": {\r\n            \"type\": \"redirect\",\r\n            \"method\": \"GET\",\r\n            \"url\": \"\\/checkout\\/payment-processing\"\r\n        },\r\n        \"code\": \"PAYMENT_PENDING\"\r\n    },\r\n    \"message\": \"Redirect to payment processing\"\r\n}"},{"id":"2cd52880-ffad-478c-b8b6-83a4d4452179","name":"Authentication Required","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_paymentMethodId\": 1,\r\n\r\n    // Stripe confirmation token\r\n    \"confirmationToken\": \"ctoken_1Ry41ERL8Mf5X2fZnBou2rl7\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/purchase","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","purchase"],"variable":[{"key":"uuid","value":"","description":"Unique identifer of the checkout"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"result\": \"success\",\r\n    \"data\": {\r\n        \"state\": \"pending\",\r\n        \"action\": {\r\n            \"type\": \"authenticate\",\r\n            \"data\": {\r\n                \"paymentIntentId\": \"pi_3Ry41FRL8Mf5X2fZ1hQglHhI\",\r\n                \"clientSecret\": \"pi_3Ry41FRL8Mf5X2fZ1hQglHhI_secret_ZbhPJU3iUa2zJ6s4H2hfVYtj2\"\r\n            }\r\n        },\r\n        \"code\": \"PAYMENT_AUTHENTICATION_REQUIRED\"\r\n    },\r\n    \"message\": \"Authentication required\"\r\n}"},{"id":"4c15efa8-5b62-438a-a8ef-332de9809533","name":"Failed Payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_paymentMethodId\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/purchase","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","purchase"],"variable":[{"key":"uuid","value":"","description":"Unique identifer of the checkout"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"Your card has insufficient funds.\"\n}"},{"id":"70cdaa0b-ce4b-4c47-aeeb-64d29905c58f","name":"Incomplete Checkout","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    // ID of the payment method\r\n    \"_paymentMethodId\": 1,\r\n\r\n    // When required, recaptcha response should be passed\r\n    \"_recaptchaToken\": \"\"\r\n\r\n    // Additional data could be sent depending on the payment method\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/checkout/:uuid/purchase","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","checkout",":uuid","purchase"],"variable":[{"key":"uuid","value":"","description":"Unique identifer of the checkout"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"Checkout is not ready for payment\",\n    \"messages\": [\n        {\n            \"type\": \"warning\",\n            \"message\": \"Checkout has no person\",\n            \"deleteUrl\": null\n        },\n        {\n            \"type\": \"warning\",\n            \"message\": \"Delivery address has not been set\",\n            \"deleteUrl\": null\n        },\n        {\n            \"type\": \"warning\",\n            \"message\": \"Billing address has not been set\",\n            \"deleteUrl\": null\n        }\n    ]\n}"}],"_postman_id":"7b339570-2365-45a6-90b8-914ea2ea6c49"}],"id":"4af15b32-a687-4736-a9b5-1fe332b4300d","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"51380d2d-c042-4756-bae4-1181fd832f56","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"910e5e67-57df-4020-a111-38f160a05f79","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"4af15b32-a687-4736-a9b5-1fe332b4300d","description":""},{"name":"Common","item":[{"name":"Input Types","item":[{"name":"List input types","id":"d80d0275-308d-4b13-a93a-8bacabbb15a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/input-types?properties={inputTypes {id, name, category, editor, possibleValues}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","input-types"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{inputTypes {id, name, category, editor, possibleValues}}"}],"variable":[]}},"response":[{"id":"40331fd0-5007-4a88-99fe-890427fc9a29","name":"List input types","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/common/input-types?properties={inputTypes {id, name, category, editor, possibleValues}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","common","input-types"],"query":[{"key":"properties","value":"{inputTypes {id, name, category, editor, possibleValues}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 03 Feb 2020 14:04:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1724"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1580738643.4671/424.0551"},{"key":"Expires","value":"Wed, 05 Feb 2020 14:04:03 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inputTypes\": [\n            {\n                \"id\": 1,\n                \"name\": \"Text\",\n                \"category\": \"text\",\n                \"editor\": \"text\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 2,\n                \"name\": \"Richtext\",\n                \"category\": \"text\",\n                \"editor\": \"richtext\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 3,\n                \"name\": \"Email\",\n                \"category\": \"text\",\n                \"editor\": \"email\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 4,\n                \"name\": \"Number\",\n                \"category\": \"text\",\n                \"editor\": \"number\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 5,\n                \"name\": \"Switch\",\n                \"category\": \"text\",\n                \"editor\": \"switch\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 6,\n                \"name\": \"Gender\",\n                \"category\": \"text\",\n                \"editor\": \"gender\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 7,\n                \"name\": \"Textarea\",\n                \"category\": \"text\",\n                \"editor\": \"textarea\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 8,\n                \"name\": \"Date\",\n                \"category\": \"text\",\n                \"editor\": \"date\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 9,\n                \"name\": \"DateTime\",\n                \"category\": \"text\",\n                \"editor\": \"datetime\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 10,\n                \"name\": \"Image\",\n                \"category\": \"image\",\n                \"editor\": null,\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 11,\n                \"name\": \"Widget\",\n                \"category\": \"widget\",\n                \"editor\": null,\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 12,\n                \"name\": \"Component\",\n                \"category\": \"component\",\n                \"editor\": null,\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 13,\n                \"name\": \"Collection\",\n                \"category\": \"collection\",\n                \"editor\": null,\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 14,\n                \"name\": \"File\",\n                \"category\": \"file\",\n                \"editor\": null,\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 15,\n                \"name\": \"Math\",\n                \"category\": \"text\",\n                \"editor\": \"math\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 16,\n                \"name\": \"Table Width\",\n                \"category\": \"text\",\n                \"editor\": \"select\",\n                \"possibleValues\": [\n                    1,\n                    2,\n                    3,\n                    4\n                ]\n            },\n            {\n                \"id\": 17,\n                \"name\": \"Font\",\n                \"category\": \"text\",\n                \"editor\": \"select\",\n                \"possibleValues\": [\n                    5,\n                    12,\n                    15,\n                    6,\n                    7,\n                    8,\n                    16\n                ]\n            },\n            {\n                \"id\": 18,\n                \"name\": \"Font Weight\",\n                \"category\": \"text\",\n                \"editor\": \"select\",\n                \"possibleValues\": [\n                    9,\n                    10,\n                    11\n                ]\n            },\n            {\n                \"id\": 19,\n                \"name\": \"Font Size\",\n                \"category\": \"text\",\n                \"editor\": \"number\",\n                \"possibleValues\": []\n            },\n            {\n                \"id\": 20,\n                \"name\": \"Headline Size\",\n                \"category\": \"text\",\n                \"editor\": \"select\",\n                \"possibleValues\": [\n                    14,\n                    13\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"d80d0275-308d-4b13-a93a-8bacabbb15a4"},{"name":"List input types for name","id":"5b40c4c3-bdd0-4ab4-ba31-0ea10399cc0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/input-types?properties={inputTypes {id, name, category, editor, possibleValues}}&name=Table width","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","input-types"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{inputTypes {id, name, category, editor, possibleValues}}"},{"key":"name","value":"Table width"}],"variable":[]}},"response":[{"id":"14edcb92-4078-4d51-be68-2731c6b6b49a","name":"List input types for name","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/common/input-types?properties={inputTypes {id, name, category, editor, possibleValues}}&name=Table width","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","common","input-types"],"query":[{"key":"properties","value":"{inputTypes {id, name, category, editor, possibleValues}}"},{"key":"name","value":"Table width"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 03 Feb 2020 14:05:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"138"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1580738714.6485/397.4731"},{"key":"Expires","value":"Wed, 05 Feb 2020 14:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inputTypes\": [\n            {\n                \"id\": 16,\n                \"name\": \"Table Width\",\n                \"category\": \"text\",\n                \"editor\": \"select\",\n                \"possibleValues\": [\n                    1,\n                    2,\n                    3,\n                    4\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"5b40c4c3-bdd0-4ab4-ba31-0ea10399cc0e"},{"name":"Show input type","id":"d79ca53b-6a0d-4f5d-a5c3-aa08d7d1ebc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/input-types?properties={inputTypes {id, name, category, editor, possibleValues}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","input-types"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{inputTypes {id, name, category, editor, possibleValues}}"}],"variable":[]}},"response":[{"id":"b46b4e8a-2990-450e-bbdc-b2b8558d6787","name":"Show input type","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/common/input-type/18?properties={inputType {id, name, category, editor, possibleValues}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","common","input-type","18"],"query":[{"key":"properties","value":"{inputType {id, name, category, editor, possibleValues}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 03 Feb 2020 14:08:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"135"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1580738880.9387/371.6991"},{"key":"Expires","value":"Wed, 05 Feb 2020 14:08:00 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inputType\": {\n            \"id\": 18,\n            \"name\": \"Font Weight\",\n            \"category\": \"text\",\n            \"editor\": \"select\",\n            \"possibleValues\": [\n                9,\n                10,\n                11\n            ]\n        }\n    }\n}"}],"_postman_id":"d79ca53b-6a0d-4f5d-a5c3-aa08d7d1ebc0"},{"name":"Add input type","id":"d1151e5c-d1b2-46af-829f-85575c1b5c5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Only vocals and white space\",\n\t\"category\": \"text\",\n\t\"editor\": \"textarea\",\n\t\"regex\": \"/^[aeiou ]*$/i\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/input-type","description":"<p>Add a new input type.</p>\n<p>Available categories are:</p>\n<ul>\n<li>text</li>\n<li>image</li>\n<li>file</li>\n<li>component</li>\n<li>collection</li>\n<li>widget</li>\n</ul>\n<p>Available editors for the \"text\" input type:</p>\n<ul>\n<li>text</li>\n<li>textarea</li>\n<li>number</li>\n<li>richtext</li>\n<li>select</li>\n<li>date</li>\n<li>datetime</li>\n<li>switch</li>\n<li>match</li>\n<li>record</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","input-type"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6094274e-02be-4963-a5f7-fd1d15818c25","name":"Add input type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Only vocals and white space\",\n\t\"category\": \"text\",\n\t\"editor\": \"textarea\",\n\t\"regex\": \"/^[aeiou ]*$/i\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/input-type"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 03:50:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"396"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583898620.4883/452.2641"},{"key":"Expires","value":"Fri, 13 Mar 2020 03:50:20 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inputType\": {\n            \"id\": 25,\n            \"name\": \"Only vocals and white space\",\n            \"category\": \"text\",\n            \"editor\": \"textarea\",\n            \"regex\": \"/^[aeiou ]*$/i\",\n            \"maxLength\": null,\n            \"created\": \"2020-03-11T03:50:20+00:00\",\n            \"modified\": \"2020-03-11T03:50:20+00:00\",\n            \"defaultContent\": null,\n            \"possibleValues\": [],\n            \"layoutAreas\": [],\n            \"customFields\": [],\n            \"parameters\": []\n        }\n    },\n    \"message\": \"The Input Type has been added successfully.\"\n}"}],"_postman_id":"d1151e5c-d1b2-46af-829f-85575c1b5c5f"},{"name":"Edit input type","id":"269ae07d-9a22-45ea-a122-d6019697b8fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Only small caps vocals\",\n\t\"regex\": \"/^[aeiou]*$/\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/input-type/25","description":"<p>Add a new input type.</p>\n<p>Available categories are:</p>\n<ul>\n<li>text</li>\n<li>image</li>\n<li>file</li>\n<li>component</li>\n<li>collection</li>\n<li>widget</li>\n</ul>\n<p>Available editors for the \"text\" input type:</p>\n<ul>\n<li>text</li>\n<li>textarea</li>\n<li>number</li>\n<li>richtext</li>\n<li>select</li>\n<li>date</li>\n<li>datetime</li>\n<li>switch</li>\n<li>match</li>\n<li>record</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","input-type","25"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"22eca364-2a32-40be-b8ac-673f8e4d312b","name":"Edit input type","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Only small caps vocals\",\n\t\"regex\": \"/^[aeiou]*$/\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/input-type/25"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 03:51:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"389"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583898719.1312/452.1952"},{"key":"Expires","value":"Fri, 13 Mar 2020 03:51:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inputType\": {\n            \"id\": 25,\n            \"name\": \"Only small caps vocals\",\n            \"category\": \"text\",\n            \"editor\": \"textarea\",\n            \"regex\": \"/^[aeiou]*$/\",\n            \"maxLength\": null,\n            \"created\": \"2020-03-11T03:50:20+00:00\",\n            \"modified\": \"2020-03-11T03:51:59+00:00\",\n            \"defaultContent\": null,\n            \"possibleValues\": [],\n            \"layoutAreas\": [],\n            \"customFields\": [],\n            \"parameters\": []\n        }\n    },\n    \"message\": \"The Input Type has been saved successfully.\"\n}"}],"_postman_id":"269ae07d-9a22-45ea-a122-d6019697b8fd"},{"name":"Delete input type","id":"a2b713c1-fa7f-4e2d-bdbb-d2deec902ef5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/input-type/25","description":"<p>Add a new input type.</p>\n<p>Available categories are:</p>\n<ul>\n<li>text</li>\n<li>image</li>\n<li>file</li>\n<li>component</li>\n<li>collection</li>\n<li>widget</li>\n</ul>\n<p>Available editors for the \"text\" input type:</p>\n<ul>\n<li>text</li>\n<li>textarea</li>\n<li>number</li>\n<li>richtext</li>\n<li>select</li>\n<li>date</li>\n<li>datetime</li>\n<li>switch</li>\n<li>match</li>\n<li>record</li>\n</ul>\n<p>Deleting input types only works if the input type is not used by content, a layout area or a custom field.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","input-type","25"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8d9e4e8f-95e9-4777-91f9-e73fdcab917b","name":"Delete input type","originalRequest":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/input-type/25"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 04:23:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"88"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583900585.0589/619.8471"},{"key":"Expires","value":"Fri, 13 Mar 2020 04:23:04 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Input Type has successfully been deleted.\"\n}"}],"_postman_id":"a2b713c1-fa7f-4e2d-bdbb-d2deec902ef5"}],"id":"b6350510-26e3-46ad-99f1-6d8e0c364197","_postman_id":"b6350510-26e3-46ad-99f1-6d8e0c364197","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Layouts","item":[{"name":"List layouts","id":"3f857f67-78b4-4d33-ab17-6148c628dc86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/layouts?properties={\n  layouts {\n    id,\n    category: category.name,\n    controller,\n    template,\n    name,\n    text,\n    previewImage: image.path\n  }\n}","description":"<p>List the configured layouts.</p>\n<p>Layouts without a controller are used for components.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","layouts"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  layouts {\n    id,\n    category: category.name,\n    controller,\n    template,\n    name,\n    text,\n    previewImage: image.path\n  }\n}"}],"variable":[]}},"response":[{"id":"c945357c-42ad-4573-9545-7df013fee710","name":"List layouts","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  layouts {\n    id,\n    controller,\n    template,\n    name,\n    text,\n    previewImage: image.path\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/common/layouts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 14:48:29 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553611709.736/144.0449"},{"key":"Content-Length","value":"895"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"layouts\": [\n            {\n                \"id\": 1,\n                \"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n                \"template\": \"pages/pages/print/test.html\",\n                \"name\": \"Test print\",\n                \"text\": null,\n                \"previewImage\": \"/files/layout-preview/Unit-start.png\"\n            },\n            {\n                \"id\": 2,\n                \"controller\": null,\n                \"template\": \"components/test-block.html\",\n                \"name\": \"Image and Text\",\n                \"text\": null,\n                \"previewImage\": null\n            },\n            {\n                \"id\": 3,\n                \"controller\": \"Pages\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n                \"template\": \"pages/pages/show.html\",\n                \"name\": \"Default template\",\n                \"text\": null,\n                \"previewImage\": null\n            },\n            {\n                \"id\": 4,\n                \"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n                \"template\": \"books/pages/ela/unit-intro.html\",\n                \"name\": \"ELA unit intro\",\n                \"text\": null,\n                \"previewImage\": \"/files/layout-preview/Sample-layout-preview-1.png\"\n            },\n            {\n                \"id\": 5,\n                \"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n                \"template\": \"books/pages/show.html\",\n                \"name\": \"Empty\",\n                \"text\": null,\n                \"previewImage\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"3f857f67-78b4-4d33-ab17-6148c628dc86"},{"name":"Show layout","id":"e64fafc3-5a30-4276-86db-f6fdca4b7bd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/layout/57?properties={\n  layout {\n    id,\n    controller,\n    category: category.name,\n    template,\n    name,\n    text,\n    previewImage: image.path,\n    areas {\n      id,\n\t    name,\n\t    type {\n\t      id,\n\t      name\n\t    },\n    position,\n    supportedLayouts {\n      id,\n      name,\n      text,\n      template\n    }\n    }\n  }\n}","description":"<p>Retrieve details about a layout, including the contained layout areas.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","layout","57"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  layout {\n    id,\n    controller,\n    category: category.name,\n    template,\n    name,\n    text,\n    previewImage: image.path,\n    areas {\n      id,\n\t    name,\n\t    type {\n\t      id,\n\t      name\n\t    },\n    position,\n    supportedLayouts {\n      id,\n      name,\n      text,\n      template\n    }\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"39b11efc-77d6-4b25-8bf3-177b15f1fd2d","name":"Show layout","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  layout {\n    id,\n    controller,\n    template,\n    name,\n    text,\n    previewImage: image.path,\n    areas {\n      name,\n      type: type.name,\n      category: type.category\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Mar 2019 11:19:16 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1552475956.601/140.9879"},{"key":"Content-Length","value":"476"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"layout\": {\n            \"id\": 1,\n            \"controller\": \"Pages\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n            \"template\": \"pages/pages/print/test.html\",\n            \"name\": \"Test print\",\n            \"text\": null,\n            \"previewImage\": \"/files/images/Sample-layout-image.png\",\n            \"areas\": [\n                {\n                    \"name\": \"headline\",\n                    \"type\": \"Text\",\n                    \"category\": \"text\"\n                },\n                {\n                    \"name\": \"header text\",\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\"\n                },\n                {\n                    \"name\": \"main headline\",\n                    \"type\": \"Text\",\n                    \"category\": \"text\"\n                },\n                {\n                    \"name\": \"main\",\n                    \"type\": \"Collection\",\n                    \"category\": \"collection\"\n                }\n            ]\n        }\n    }\n}"},{"id":"e7a58d47-b791-40d8-8bd2-81430c97cae5","name":"Show layout with area ids","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  layout {\n    id,\n    controller,\n    category: category.name,\n    template,\n    name,\n    text,\n    previewImage: image.path,\n    areas {\n      id,\n      name,\n      type: type.name,\n      category: type.category\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout/56"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Mar 2020 13:04:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"465"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1584968652.0892/393.1620"},{"key":"Expires","value":"Wed, 25 Mar 2020 13:04:11 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"layout\": {\n            \"id\": 56,\n            \"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n            \"category\": null,\n            \"template\": \"books/pages/show.html\",\n            \"name\": \"New layout from API\",\n            \"text\": null,\n            \"previewImage\": null,\n            \"areas\": [\n                {\n                    \"id\": 249,\n                    \"name\": \"headline\",\n                    \"type\": \"Text\",\n                    \"category\": \"text\"\n                },\n                {\n                    \"id\": 250,\n                    \"name\": \"left area (collection)\",\n                    \"type\": \"Collection\",\n                    \"category\": \"collection\"\n                },\n                {\n                    \"id\": 251,\n                    \"name\": \"right area (collection)\",\n                    \"type\": \"Collection\",\n                    \"category\": \"collection\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"e64fafc3-5a30-4276-86db-f6fdca4b7bd9"},{"name":"Add layout","id":"fc20a1de-017b-49b7-9c17-6a031880e475","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New layout from API\",\n\t\"template\": \"books/pages/show.html\",\n\t\"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n\t\"areas\": [\n\t\t{\n\t\t\t\"name\": \"headline\",\n\t\t\t\"type\": 1,\n\t\t\t\"label\": \"Page headline (can be ommitted)\",\n\t\t\t\"default\": \"Default text (can be ommitted)\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"left area (collection)\",\n\t\t\t\"type\": 13,\n\t\t\t\"label\": \"Left content\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"right area (collection)\",\n\t\t\t\"type\": 13,\n\t\t\t\"label\": \"Right content\"\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout","description":"<p>Add a layout from the API.</p>\n<p>A template file does not have to exist for the layout if you do not wish to render the template through an HTML file.</p>\n<p>If a controller is defined for the layout, the layout is displayed for selection in the corresponding edit/add page of the DXP. Valid values are currently:</p>\n<ul>\n<li>Blogs\\Controllers\\Frontend\\Posts\\Index =&gt; List blog posts/show blog</li>\n<li>Blogs\\Controllers\\Frontend\\Posts\\Show =&gt; Show blog post</li>\n<li>Pages\\Controllers\\Frontend\\Pages\\Show =&gt; Show page</li>\n<li>Books\\Controllers\\Frontend\\Pages\\Show =&gt; Show book page</li>\n</ul>\n<p>If no controller is defined for the layout, the layout is used for (global) components.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","layout"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0959fcf4-6057-42d4-abc1-d67784cafcd1","name":"Add layout","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New layout from API\",\n\t\"template\": \"books/pages/show.html\",\n\t\"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n\t\"areas\": [\n\t\t{\n\t\t\t\"name\": \"headline\",\n\t\t\t\"type\": 1,\n\t\t\t\"label\": \"Page headline (can be ommitted)\",\n\t\t\t\"default\": \"Default text (can be ommitted)\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"left area (collection)\",\n\t\t\t\"type\": 13,\n\t\t\t\"label\": \"Left content\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"right area (collection)\",\n\t\t\t\"type\": 13,\n\t\t\t\"label\": \"Right content\"\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Mar 2020 12:55:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"377"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1584968130.9442/485.1780"},{"key":"Expires","value":"Wed, 25 Mar 2020 12:55:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"layout\": {\n            \"id\": 56,\n            \"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n            \"template\": \"books/pages/show.html\",\n            \"name\": \"New layout from API\",\n            \"text\": null,\n            \"created\": \"2020-03-23T12:55:30+00:00\",\n            \"modified\": \"2020-03-23T12:55:30+00:00\",\n            \"hidden\": null,\n            \"areas\": [\n                249,\n                250,\n                251\n            ],\n            \"image\": null,\n            \"category\": null\n        }\n    },\n    \"message\": \"The Layout has been added successfully.\"\n}"}],"_postman_id":"fc20a1de-017b-49b7-9c17-6a031880e475"},{"name":"Edit layout","id":"c8711229-7cad-44b3-8786-a1df017113e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Layout from API\",\n\t\"template\": \"books/pages/show.html\",\n\t\"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n\t\"areas\": [\n\t\t{\n\t\t\t\"id\": 249\n\t\t},\n\t\t{\n\t\t\t\"id\": 250,\n\t\t\t\"hidden\": \"2020-03-23 10:00:00\"\n\t\t},\n\t\t{\n\t\t\t\"id\": 251,\n\t\t\t\"hidden\": \"2020-03-23 10:00:00\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"main area\",\n\t\t\t\"label\": \"Main area (collection)\",\n\t\t\t\"type\": 13\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout/56","description":"<p>Edit a layout.</p>\n<p><strong>Attention:</strong> When updating a layout, be careful when removing content areas - deleting in area will result in <strong>irreversibly deleting all content</strong> associated with it.</p>\n<p>Instead, <em>hide</em> a layout area by specifying a \"hidden\" date.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","layout","56"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"708f5192-b6e2-44f6-8449-9253bf34be2d","name":"Edit layout","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Layout from API\",\n\t\"template\": \"books/pages/show.html\",\n\t\"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n\t\"areas\": [\n\t\t{\n\t\t\t\"id\": 249\n\t\t},\n\t\t{\n\t\t\t\"id\": 250,\n\t\t\t\"hidden\": \"2020-03-23 10:00:00\"\n\t\t},\n\t\t{\n\t\t\t\"id\": 251,\n\t\t\t\"hidden\": \"2020-03-23 10:00:00\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"main area\",\n\t\t\t\"label\": \"Main area (collection)\",\n\t\t\t\"type\": 13\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout/56"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Mar 2020 13:09:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"377"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1584968973.5325/485.4531"},{"key":"Expires","value":"Wed, 25 Mar 2020 13:09:33 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"layout\": {\n            \"id\": 56,\n            \"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n            \"template\": \"books/pages/show.html\",\n            \"name\": \"Layout from API\",\n            \"text\": null,\n            \"created\": \"2020-03-23T12:55:30+00:00\",\n            \"modified\": \"2020-03-23T13:09:33+00:00\",\n            \"hidden\": null,\n            \"areas\": [\n                249,\n                250,\n                251,\n                252\n            ],\n            \"image\": null,\n            \"category\": null\n        }\n    },\n    \"message\": \"The Layout has been saved successfully.\"\n}"}],"_postman_id":"c8711229-7cad-44b3-8786-a1df017113e5"},{"name":"Hide layout","id":"12176b97-17aa-43fe-9590-4378e52927ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"hidden\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout/56","description":"<p>Hide a layout.</p>\n<p>As content associated with a layout will irreversibly deleted when the layout is deleted, this is not supported from the API.</p>\n<p>Instead, it is possible to <em>hide</em> the layout from the DXP.</p>\n<p>For the hidden field, either a date or 1 can be specified, which will lead to the current date being used.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","layout","56"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"5e537883-3441-4013-9313-a86e69f70c8b","name":"Hide layout","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"hidden\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout/56"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Mar 2020 13:12:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"400"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1584969150.1957/458.7109"},{"key":"Expires","value":"Wed, 25 Mar 2020 13:12:29 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"layout\": {\n            \"id\": 56,\n            \"controller\": \"Books\\\\Controllers\\\\Frontend\\\\Pages\\\\Show\",\n            \"template\": \"books/pages/show.html\",\n            \"name\": \"Layout from API\",\n            \"text\": null,\n            \"created\": \"2020-03-23T12:55:30+00:00\",\n            \"modified\": \"2020-03-23T13:12:30+00:00\",\n            \"hidden\": \"2020-03-23T13:12:30+00:00\",\n            \"areas\": [\n                249,\n                250,\n                251,\n                252\n            ],\n            \"image\": null,\n            \"category\": null\n        }\n    },\n    \"message\": \"The Layout has been saved successfully.\"\n}"}],"_postman_id":"12176b97-17aa-43fe-9590-4378e52927ab"}],"id":"931e4e7d-d3e9-4a5a-959b-16bd7f623f26","_postman_id":"931e4e7d-d3e9-4a5a-959b-16bd7f623f26","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Layout Categories","item":[{"name":"List layout categories","id":"8a14006a-b291-4333-894d-be2cad6257d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout-categories?properties={\n  layoutCategories {\n    id,\n    name,\n    parent\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","layout-categories"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  layoutCategories {\n    id,\n    name,\n    parent\n  }\n}"}],"variable":[]}},"response":[{"id":"156e07a4-a734-48e8-8c8a-a22aaceaf2c3","name":"List layout categories","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  layoutCategories {\n    id,\n    name,\n    parent\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout-categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 May 2019 16:36:34 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1557246994.3156/122.5500"},{"key":"Content-Length","value":"127"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"layoutCategories\": [\n            {\n                \"id\": 1,\n                \"name\": \"ELA\",\n                \"parent\": null\n            },\n            {\n                \"id\": 2,\n                \"name\": \"Intro pages\",\n                \"parent\": 1\n            }\n        ]\n    }\n}"}],"_postman_id":"8a14006a-b291-4333-894d-be2cad6257d3"},{"name":"Show layout category","id":"cdcbb001-3946-420b-bdfb-533019c18361","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  layoutCategory {\n    id,\n    name,\n    parent,\n    children,\n    layouts\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout-category/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","layout-category","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ebdd8c02-da45-4ce9-b5d3-4fe9a9c35ea7","name":"Show layout category","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  layoutCategory {\n    id,\n    name,\n    parent,\n    children,\n    layouts\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/common/layout-category/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 May 2019 16:38:28 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1557247108.262/117.0449"},{"key":"Content-Length","value":"110"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"layoutCategory\": {\n            \"id\": 1,\n            \"name\": \"ELA\",\n            \"parent\": null,\n            \"children\": [\n                2\n            ],\n            \"layouts\": []\n        }\n    }\n}"}],"_postman_id":"cdcbb001-3946-420b-bdfb-533019c18361"}],"id":"06fe35bf-8d2b-4aaf-9057-05f313cac624","_postman_id":"06fe35bf-8d2b-4aaf-9057-05f313cac624","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Categories","item":[{"name":"List categories","id":"7c30b8ce-792f-4b64-8d19-dc90d60a3702","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/categories?properties={\n  categories {\n    id,\n    name,\n    parent,\n    children\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","categories"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  categories {\n    id,\n    name,\n    parent,\n    children\n  }\n}"}],"variable":[]}},"response":[{"id":"c2fd4f32-6a7f-4ea3-a752-09a90702f2f6","name":"List categories","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  categories {\n    id,\n    name,\n    parent,\n    children\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/common/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2019 16:28:01 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555345681.4374/104.4102"},{"key":"Content-Length","value":"144"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"categories\": [\n            {\n                \"id\": 2,\n                \"name\": \"ELA\",\n                \"parent\": 1,\n                \"children\": []\n            },\n            {\n                \"id\": 1,\n                \"name\": \"Texas\",\n                \"parent\": null,\n                \"children\": [\n                    2\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"7c30b8ce-792f-4b64-8d19-dc90d60a3702"},{"name":"List root categories","id":"b01b2e6a-edc5-4e30-ba45-f6b8ba873e1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/categories?parent=NULL&properties={\n  categories {\n    id,\n    name,\n    children\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","categories"],"host":["{{domain}}"],"query":[{"key":"parent","value":"NULL"},{"key":"properties","value":"{\n  categories {\n    id,\n    name,\n    children\n  }\n}"}],"variable":[]}},"response":[{"id":"619dd097-15a5-45c7-b060-d3244ea11d48","name":"List root categories","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  categories {\n    id,\n    name,\n    children\n  }\n}"},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/common/categories?parent=NULL","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","common","categories"],"query":[{"key":"parent","value":"NULL"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2019 16:28:33 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555345713.7223/105.3360"},{"key":"Content-Length","value":"83"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"categories\": [\n            {\n                \"id\": 1,\n                \"name\": \"Texas\",\n                \"children\": [\n                    2\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"b01b2e6a-edc5-4e30-ba45-f6b8ba873e1a"},{"name":"Show category","id":"36775327-ca77-41ee-ab9a-a13227c3ca61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/category/1?properties={\n  category {\n    id,\n    name,\n    children\n  }\n}","description":"<p>Retrieve details about a layout, including the contained layout areas.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","category","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  category {\n    id,\n    name,\n    children\n  }\n}"}],"variable":[]}},"response":[{"id":"6317afca-50e5-40ee-83e4-f11cdd8f9803","name":"Show category","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  category {\n    id,\n    name,\n    children\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/common/category/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2019 16:30:10 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555345811.0897/104.6741"},{"key":"Content-Length","value":"79"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"category\": {\n            \"id\": 1,\n            \"name\": \"Texas\",\n            \"children\": [\n                2\n            ]\n        }\n    }\n}"}],"_postman_id":"36775327-ca77-41ee-ab9a-a13227c3ca61"},{"name":"Add category","id":"418d54c2-8432-4cf8-ad6f-04663d291104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"parent\": 9,\n\t\"name\": \"New category from API\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/category","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","category"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"36f3a27c-3147-4b42-892e-30eb24369b9f","name":"Add category","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"parent\": 9,\n\t\"name\": \"New category from API\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/category"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 01:28:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"269"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583890111.1466/388.5472"},{"key":"Expires","value":"Fri, 13 Mar 2020 01:28:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"category\": {\n            \"id\": 633,\n            \"name\": \"New category from API\",\n            \"slug\": \"new-category-from-api\",\n            \"created\": \"2020-03-11T01:28:31+00:00\",\n            \"modified\": \"2020-03-11T01:28:31+00:00\",\n            \"parent\": 9,\n            \"children\": []\n        }\n    },\n    \"message\": \"The Category has been added successfully.\"\n}"}],"_postman_id":"418d54c2-8432-4cf8-ad6f-04663d291104"},{"name":"Change category","id":"a0c757d1-1cc7-4732-928d-c4ed07860a82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed category from API\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/category/633","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","category","633"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ab029d4d-83ef-480d-b108-946334852c2c","name":"Change category","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed category from API\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/category/633"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 01:29:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"273"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583890196.8753/382.2629"},{"key":"Expires","value":"Fri, 13 Mar 2020 01:29:56 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"category\": {\n            \"id\": 633,\n            \"name\": \"Changed category from API\",\n            \"slug\": \"new-category-from-api\",\n            \"created\": \"2020-03-11T01:28:31+00:00\",\n            \"modified\": \"2020-03-11T01:29:56+00:00\",\n            \"parent\": 9,\n            \"children\": []\n        }\n    },\n    \"message\": \"The Category has been saved successfully.\"\n}"}],"_postman_id":"a0c757d1-1cc7-4732-928d-c4ed07860a82"},{"name":"Delete category","id":"782eeb20-c24d-479c-a700-f946ab8db6f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/category/633","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","category","633"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"59efdd35-1bc5-46bc-89e3-8c2c3e2db915","name":"Delete category","originalRequest":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/category/633"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 01:30:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"86"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583890246.8463/357.3010"},{"key":"Expires","value":"Fri, 13 Mar 2020 01:30:46 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Category has successfully been deleted.\"\n}"}],"_postman_id":"782eeb20-c24d-479c-a700-f946ab8db6f4"}],"id":"d5cb1f8c-880a-4da7-a7bc-b70fc6d4bdd6","_postman_id":"d5cb1f8c-880a-4da7-a7bc-b70fc6d4bdd6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Global Components","item":[{"name":"List global components","id":"1b365fa3-f2f9-4a1d-bb33-4564c81c0d30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/global-components","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","global-components"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d70db33e-3e6d-4809-9508-cc618b2bd59b","name":"List global components","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/global-components"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Feb 2020 02:44:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"374"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1581389095.4974/456.3491"},{"key":"Expires","value":"Thu, 13 Feb 2020 02:44:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"globalComponents\": [\n            {\n                \"areas\": [\n                    25,\n                    57\n                ],\n                \"usedInContent\": true,\n                \"numUsedInContent\": 3,\n                \"lastRevision\": 11,\n                \"id\": 2,\n                \"name\": \"Test global component\",\n                \"layout\": 13,\n                \"created\": \"2020-02-06T17:52:25+00:00\",\n                \"modified\": \"2020-02-10T01:41:43+00:00\",\n                \"hidden\": null,\n                \"activeRevision\": 11,\n                \"revisions\": [\n                    10,\n                    11\n                ],\n                \"copiedComponents\": [],\n                \"tags\": [],\n                \"categories\": [\n                    130\n                ],\n                \"blank\": false\n            }\n        ]\n    }\n}"}],"_postman_id":"1b365fa3-f2f9-4a1d-bb33-4564c81c0d30"},{"name":"Show global component","id":"26204212-38e3-4e3e-9abe-67f169955942","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/global-component/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","global-component","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"acb9d5a8-9490-4784-a337-8e2598e3a4f0","name":"Show global component","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/global-component/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Feb 2020 02:46:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"371"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1581389194.9619/451.8521"},{"key":"Expires","value":"Thu, 13 Feb 2020 02:46:34 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"globalComponent\": {\n            \"areas\": [\n                25,\n                57\n            ],\n            \"usedInContent\": true,\n            \"numUsedInContent\": 3,\n            \"lastRevision\": 11,\n            \"id\": 2,\n            \"name\": \"Test global component\",\n            \"layout\": 13,\n            \"created\": \"2020-02-06T17:52:25+00:00\",\n            \"modified\": \"2020-02-10T01:41:43+00:00\",\n            \"hidden\": null,\n            \"activeRevision\": 11,\n            \"revisions\": [\n                10,\n                11\n            ],\n            \"copiedComponents\": [],\n            \"tags\": [],\n            \"categories\": [\n                130\n            ],\n            \"blank\": false\n        }\n    }\n}"},{"id":"136c0e4d-b832-40f2-82db-416ec4d268f8","name":"Show global component with area content","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/common/global-component/2?properties={globalComponent {id, name, areas:activeRevision.areasContent}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","common","global-component","2"],"query":[{"key":"properties","value":"{globalComponent {id, name, areas:activeRevision.areasContent}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Feb 2020 11:09:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"325"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1582542584.0314/450.3438"},{"key":"Expires","value":"Wed, 26 Feb 2020 11:09:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"globalComponent\": {\n            \"id\": 2,\n            \"name\": \"Test global component\",\n            \"areas\": {\n                \"text\": {\n                    \"id\": 20065517,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"editor\": \"richtext\",\n                    \"text\": \"<p>updated from api</p>\"\n                },\n                \"margin bottom\": {\n                    \"id\": 20065518,\n                    \"type\": \"Number\",\n                    \"category\": \"text\",\n                    \"editor\": \"number\",\n                    \"text\": \"4\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"26204212-38e3-4e3e-9abe-67f169955942"},{"name":"Add global component","id":"51ca6c64-0ec9-428a-b858-db96cbe03d0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"layout\": 13,\n\t\"name\": \"New global component from API\",\n\t\"revisions\": {\n\t\t\"areas\": {\n\t\t\t\"text\": \"Sample text\",\n\t\t\t\"margin bottom\": 3\n\t\t}\n\t},\n\t\"categories\": [\n\t\t9, 12\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/global-component","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","global-component"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a27678bb-52e6-4ad7-a5be-56721e6caa09","name":"Add global component","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"layout\": 13,\n\t\"name\": \"New global component from API\",\n\t\"revisions\": {\n\t\t\"areas\": {\n\t\t\t\"text\": \"Sample text\",\n\t\t\t\"margin bottom\": 3\n\t\t}\n\t},\n\t\"categories\": [\n\t\t9, 12\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/global-component"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 01:46:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"439"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583891216.3435/541.4639"},{"key":"Expires","value":"Fri, 13 Mar 2020 01:46:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"globalComponent\": {\n            \"areas\": [\n                25,\n                57\n            ],\n            \"usedInContent\": true,\n            \"numUsedInContent\": 1,\n            \"lastRevision\": 16,\n            \"id\": 3,\n            \"name\": \"New global component from API\",\n            \"layout\": 13,\n            \"created\": \"2020-03-11T01:46:56+00:00\",\n            \"modified\": \"2020-03-11T01:46:56+00:00\",\n            \"hidden\": null,\n            \"activeRevision\": 16,\n            \"revisions\": [\n                16\n            ],\n            \"copiedComponents\": [],\n            \"tags\": [],\n            \"categories\": [\n                9,\n                12\n            ],\n            \"blank\": false\n        }\n    },\n    \"message\": \"The Global Component has been added successfully.\"\n}"}],"_postman_id":"51ca6c64-0ec9-428a-b858-db96cbe03d0e"},{"name":"Edit global component","id":"0b107010-49d1-4c83-bb45-c70700063eb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"categories\": [\n\t\t12\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/global-component/3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","global-component","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"f9943853-f61b-429a-81ef-a4ad2609d6e6","name":"Edit global component","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"categories\": [\n\t\t12\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/common/global-component/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 01:48:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"437"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583891323.5541/498.0960"},{"key":"Expires","value":"Fri, 13 Mar 2020 01:48:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"globalComponent\": {\n            \"areas\": [\n                25,\n                57\n            ],\n            \"usedInContent\": true,\n            \"numUsedInContent\": 1,\n            \"lastRevision\": 16,\n            \"id\": 3,\n            \"name\": \"New global component from API\",\n            \"layout\": 13,\n            \"created\": \"2020-03-11T01:46:56+00:00\",\n            \"modified\": \"2020-03-11T01:48:43+00:00\",\n            \"hidden\": null,\n            \"activeRevision\": 16,\n            \"revisions\": [\n                16\n            ],\n            \"copiedComponents\": [],\n            \"tags\": [],\n            \"categories\": [\n                12\n            ],\n            \"blank\": false\n        }\n    },\n    \"message\": \"The Global Component has been saved successfully.\"\n}"}],"_postman_id":"0b107010-49d1-4c83-bb45-c70700063eb6"},{"name":"Delete global component","id":"23de5b1d-7402-4833-8ee9-bed1a1a9d456","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/global-component/3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","global-component","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"bd46e3b7-697f-49a5-9f95-cb93177f400f","name":"Delete global component","originalRequest":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/global-component/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Mar 2020 01:49:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"94"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583891374.3469/450.9070"},{"key":"Expires","value":"Fri, 13 Mar 2020 01:49:33 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Global Component has successfully been deleted.\"\n}"}],"_postman_id":"23de5b1d-7402-4833-8ee9-bed1a1a9d456"}],"id":"1286b18f-3d85-4dd1-b8f2-3e264b71b8b8","_postman_id":"1286b18f-3d85-4dd1-b8f2-3e264b71b8b8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Tags","item":[{"name":"List tags","id":"cf4beadd-fdce-41d4-8735-1559f9c2a62b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","tags"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c5866677-c8f9-4242-8b70-7bdcb329cebc","name":"List tags","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Jun 2021 13:20:16 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"SPSI=3f91e722b87831d8e4dd4c676bbb778c; path=/; HttpOnly; SameSite=Lax;"},{"key":"Set-Cookie","value":"SPSE=28g67R68LOtRNBpfRlrTDTv35avN1SKVASR1ZbYaU4sI9x3ag13rwz5Ts556f6gV2iUfhNvA7dRnXungg9rxNw==; path=/; HttpOnly; SameSite=Lax;"},{"key":"x-coredna-heartbeat","value":"1624540816.563/382.015"},{"key":"Expires","value":"Sat, 26 Jun 2021 13:20:16 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1624540816.cds053.fr8.hn,1624540816.cds207.fr8.sc,1624540816.cdn2-wafbe02-fra1.stackpath.systems.-.wx,1624540816.cds207.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"392"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"tags\": [\n            {\n                \"id\": 1,\n                \"name\": \"coffee\",\n                \"slug\": \"coffee\",\n                \"created\": \"2019-08-27T16:09:18+00:00\",\n                \"modified\": \"2019-08-27T16:09:18+00:00\"\n            },\n            {\n                \"id\": 2,\n                \"name\": \"roasting\",\n                \"slug\": \"roasting\",\n                \"created\": \"2019-08-27T16:09:18+00:00\",\n                \"modified\": \"2019-08-27T16:09:18+00:00\"\n            },\n            {\n                \"id\": 3,\n                \"name\": \"news\",\n                \"slug\": \"news\",\n                \"created\": \"2021-01-14T04:56:53+00:00\",\n                \"modified\": \"2021-01-14T04:56:53+00:00\"\n            }\n        ]\n    }\n}"}],"_postman_id":"cf4beadd-fdce-41d4-8735-1559f9c2a62b"},{"name":"Show tag","id":"8ab605e0-1b70-4593-95ec-fa7b59fe0875","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/common/tag/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","common","tag","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ab605e0-1b70-4593-95ec-fa7b59fe0875"}],"id":"f73189a7-1041-40e8-92ff-43c8254fa63f","_postman_id":"f73189a7-1041-40e8-92ff-43c8254fa63f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"47f16139-261c-4e88-84a5-ce814dee37e2","_postman_id":"47f16139-261c-4e88-84a5-ce814dee37e2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Custom Entities","item":[{"name":"List records","id":"350a6411-c952-4708-b420-a4d2259cbb65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.pluralIdentifier}}?properties={id, relatedRecords{name}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","custom-entities","{{customEntities.pluralIdentifier}}"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{id, relatedRecords{name}}"}],"variable":[]}},"response":[{"id":"64a0c4a4-f2cd-43ae-8fb3-b79af8106896","name":"List records","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.pluralIdentifier}}?properties={id, relatedRecords{name}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","custom-entities","{{customEntities.pluralIdentifier}}"],"query":[{"key":"properties","value":"{id, relatedRecords{name}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Feb 2024 14:20:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"BunnyCDN-DE1-1082"},{"key":"CDN-PullZone","value":"1699086"},{"key":"CDN-Uid","value":"6693b183-47e3-47a6-9ede-e6d623ad7307"},{"key":"CDN-RequestCountryCode","value":"DE"},{"key":"Cache-Control","value":"public, max-age=0"},{"key":"x-coredna-heartbeat","value":"1707747610.2173/696.0218"},{"key":"CDN-ProxyVer","value":"1.04"},{"key":"CDN-RequestPullSuccess","value":"True"},{"key":"CDN-RequestPullCode","value":"200"},{"key":"CDN-CachedAt","value":"02/12/2024 14:20:10"},{"key":"CDN-EdgeStorageId","value":"1081"},{"key":"CDN-Status","value":"200"},{"key":"CDN-RequestId","value":"3f109a416ffd993158d0d27bbcf96b24"},{"key":"CDN-Cache","value":"BYPASS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"totalCount\": 1,\n    \"data\": [\n        {\n            \"id\": 19,\n            \"relatedRecords\": {\n                \"location\": {\n                    \"name\": \"Olypiastadium\"\n                },\n                \"artists\": [\n                    {\n                        \"name\": \"Forever Green Socks\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"350a6411-c952-4708-b420-a4d2259cbb65"},{"name":"Show record","id":"15f1c6f5-37d9-44ba-9ab5-1f4c4e64f16c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.identifier}}/{{customEntities.recordId}}?properties={id, relatedRecords{name}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","custom-entities","{{customEntities.identifier}}","{{customEntities.recordId}}"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{id, relatedRecords{name}}"}],"variable":[]}},"response":[{"id":"9b7bd161-2fd3-407f-a771-2c6f487b30d6","name":"Show record","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.identifier}}/{{customEntities.recordId}}?properties={id, relatedRecords{name}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","custom-entities","{{customEntities.identifier}}","{{customEntities.recordId}}"],"query":[{"key":"properties","value":"{id, relatedRecords{name}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Feb 2024 14:20:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"BunnyCDN-DE1-1082"},{"key":"CDN-PullZone","value":"1699086"},{"key":"CDN-Uid","value":"6693b183-47e3-47a6-9ede-e6d623ad7307"},{"key":"CDN-RequestCountryCode","value":"DE"},{"key":"Cache-Control","value":"public, max-age=0"},{"key":"x-coredna-heartbeat","value":"1707747628.3785/644.6459"},{"key":"CDN-ProxyVer","value":"1.04"},{"key":"CDN-RequestPullSuccess","value":"True"},{"key":"CDN-RequestPullCode","value":"200"},{"key":"CDN-CachedAt","value":"02/12/2024 14:20:28"},{"key":"CDN-EdgeStorageId","value":"1081"},{"key":"CDN-Status","value":"200"},{"key":"CDN-RequestId","value":"6f2202b54535e3645d754b87a342afe7"},{"key":"CDN-Cache","value":"BYPASS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"id\": 19,\n        \"relatedRecords\": {\n            \"location\": {\n                \"name\": \"Olypiastadium\"\n            },\n            \"artists\": [\n                {\n                    \"name\": \"Forever Green Socks\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"15f1c6f5-37d9-44ba-9ab5-1f4c4e64f16c"},{"name":"Add record","id":"03a9f0f3-d36c-4d57-9ed1-fcf11562c9ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Forever in Berlin\",\r\n    \"areasContent\": {\r\n        \"description\": \"Join us for an electrifying evening as the acclaimed alternative rock sensation, Forever Green Socks, takes the stage at the iconic Olympiastadion Berlin. Known for their dynamic performances and a fervent fanbase, Forever Green Socks is set to deliver an unforgettable concert experience in one of the most prestigious venues in Germany.\"\r\n    },\r\n    \"relatedRecords\": {\r\n        \"location\": 11,\r\n        \"artists\": [\r\n            17\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.identifier}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","custom-entities","{{customEntities.identifier}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e61a6e54-065d-4480-8708-66751e23d5a4","name":"Add record","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Forever in Berlin\",\r\n    \"areasContent\": {\r\n        \"description\": \"Join us for an electrifying evening as the acclaimed alternative rock sensation, Forever Green Socks, takes the stage at the iconic Olympiastadion Berlin. Known for their dynamic performances and a fervent fanbase, Forever Green Socks is set to deliver an unforgettable concert experience in one of the most prestigious venues in Germany.\"\r\n    },\r\n    \"relatedRecords\": {\r\n        \"location\": 11,\r\n        \"artists\": [\r\n            17\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.identifier}}?properties={id, areasContent}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","custom-entities","{{customEntities.identifier}}"],"query":[{"key":"properties","value":"{id, areasContent}","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Feb 2024 15:29:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"BunnyCDN-DE1-1081"},{"key":"CDN-PullZone","value":"1699086"},{"key":"CDN-Uid","value":"6693b183-47e3-47a6-9ede-e6d623ad7307"},{"key":"CDN-RequestCountryCode","value":"DE"},{"key":"Cache-Control","value":"public, max-age=0"},{"key":"x-coredna-heartbeat","value":"1707751781.3607/1227.3378"},{"key":"CDN-ProxyVer","value":"1.04"},{"key":"CDN-RequestPullSuccess","value":"True"},{"key":"CDN-RequestPullCode","value":"200"},{"key":"CDN-CachedAt","value":"02/12/2024 15:29:41"},{"key":"CDN-EdgeStorageId","value":"1081"},{"key":"CDN-RequestId","value":"54bee371c224d85ebdfdf2a1abd7c1a9"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"id\": 50,\n        \"areasContent\": {\n            \"description\": {\n                \"id\": 214665,\n                \"type\": \"Richtext\",\n                \"category\": \"text\",\n                \"editor\": \"richtext\",\n                \"text\": \"Join us for an electrifying evening as the acclaimed alternative rock sensation, Forever Green Socks, takes the stage at the iconic Olympiastadion Berlin. Known for their dynamic performances and a fervent fanbase, Forever Green Socks is set to deliver an unforgettable concert experience in one of the most prestigious venues in Germany.\"\n            },\n            \"date\": {\n                \"id\": null,\n                \"type\": \"Date\",\n                \"category\": \"text\",\n                \"editor\": \"date\",\n                \"content\": null\n            },\n            \"doors\": {\n                \"id\": null,\n                \"type\": \"Text\",\n                \"category\": \"text\",\n                \"editor\": \"text\",\n                \"content\": null\n            }\n        }\n    },\n    \"message\": \"The Record has been added successfully.\"\n}"}],"_postman_id":"03a9f0f3-d36c-4d57-9ed1-fcf11562c9ea"},{"name":"Update record","id":"f1625c55-8fec-4cd6-b64e-d615d34a5650","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Forever Green Socks in Berlin\",\r\n    \"areasContent\": {\r\n        \"description\": \"Join us for an electrifying evening as the acclaimed alternative rock sensation, Forever Green Socks, takes the stage at the iconic Olympiastadion Berlin. Known for their dynamic performances and a fervent fanbase, Forever Green Socks is set to deliver an unforgettable concert experience in one of the most prestigious venues in Germany.\",\r\n        \"doors\": \"19:00\"\r\n    },\r\n    \"relatedRecords\": {\r\n        \"location\": 11,\r\n        \"artists\": [\r\n            17\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.identifier}}/{{customEntities.recordId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","custom-entities","{{customEntities.identifier}}","{{customEntities.recordId}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9d114299-77fc-4cae-82c0-cf1624742156","name":"Update record","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Forever Green Socks in Berlin\",\r\n    \"areasContent\": {\r\n        \"description\": \"Join us for an electrifying evening as the acclaimed alternative rock sensation, Forever Green Socks, takes the stage at the iconic Olympiastadion Berlin. Known for their dynamic performances and a fervent fanbase, Forever Green Socks is set to deliver an unforgettable concert experience in one of the most prestigious venues in Germany.\",\r\n        \"doors\": \"19:00\"\r\n    },\r\n    \"relatedRecords\": {\r\n        \"location\": 11,\r\n        \"artists\": [\r\n            17\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.identifier}}/{{customEntities.recordId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Feb 2024 15:44:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"BunnyCDN-DE1-1081"},{"key":"CDN-PullZone","value":"1699086"},{"key":"CDN-Uid","value":"6693b183-47e3-47a6-9ede-e6d623ad7307"},{"key":"CDN-RequestCountryCode","value":"DE"},{"key":"Cache-Control","value":"public, max-age=0"},{"key":"x-coredna-heartbeat","value":"1707752648.0998/1107.228"},{"key":"CDN-ProxyVer","value":"1.04"},{"key":"CDN-RequestPullSuccess","value":"True"},{"key":"CDN-RequestPullCode","value":"200"},{"key":"CDN-CachedAt","value":"02/12/2024 15:44:08"},{"key":"CDN-EdgeStorageId","value":"1080"},{"key":"CDN-Status","value":"200"},{"key":"CDN-RequestId","value":"2d3d1233bae959082e674a30f03f4cc0"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"record\": {\n            \"name\": \"Forever Green Socks in Berlin\",\n            \"layout\": 131,\n            \"originalPath\": \"/event/forever-in-berlin\",\n            \"fullSlug\": \"forever-in-berlin\",\n            \"fullPath\": \"/event/forever-in-berlin\",\n            \"url\": \"//theme3corednacom-dennis.de.coredna.dev/event/forever-in-berlin\",\n            \"id\": 19,\n            \"slug\": \"forever-in-berlin\",\n            \"position\": null,\n            \"created\": \"2024-02-06T15:35:42+00:00\",\n            \"modified\": \"2024-02-12T15:43:06+00:00\",\n            \"published\": \"2024-02-08T15:52:30+00:00\",\n            \"definition\": 3,\n            \"activeRevision\": 60,\n            \"parent\": null,\n            \"children\": [],\n            \"customUrl\": null,\n            \"language\": 47,\n            \"site\": 1,\n            \"revisions\": [\n                19,\n                20,\n                22,\n                59,\n                60\n            ],\n            \"lastRevision\": 60,\n            \"relatedRecords\": {\n                \"location\": 11,\n                \"artists\": [\n                    17\n                ]\n            },\n            \"areasContent\": {\n                \"description\": {\n                    \"id\": 214667,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"editor\": \"richtext\",\n                    \"text\": \"Join us for an electrifying evening as the acclaimed alternative rock sensation, Forever Green Socks, takes the stage at the iconic Olympiastadion Berlin. Known for their dynamic performances and a fervent fanbase, Forever Green Socks is set to deliver an unforgettable concert experience in one of the most prestigious venues in Germany.\"\n                },\n                \"date\": {\n                    \"id\": null,\n                    \"type\": \"Date\",\n                    \"category\": \"text\",\n                    \"editor\": \"date\",\n                    \"content\": null\n                },\n                \"doors\": {\n                    \"id\": 214668,\n                    \"type\": \"Text\",\n                    \"category\": \"text\",\n                    \"editor\": \"text\",\n                    \"text\": \"19:00\"\n                }\n            }\n        }\n    },\n    \"message\": \"The Record has been saved successfully.\"\n}"}],"_postman_id":"f1625c55-8fec-4cd6-b64e-d615d34a5650"},{"name":"Delete record","id":"70c3fa16-301e-4681-aad6-72a55960a960","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.identifier}}/{{customEntities.recordId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","custom-entities","{{customEntities.identifier}}","{{customEntities.recordId}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"28c14231-6290-4ff9-9d85-62c5fbfe388f","name":"Delete record","originalRequest":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/custom-entities/{{customEntities.identifier}}/51"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Feb 2024 15:45:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"BunnyCDN-DE1-1081"},{"key":"CDN-PullZone","value":"1699086"},{"key":"CDN-Uid","value":"6693b183-47e3-47a6-9ede-e6d623ad7307"},{"key":"CDN-RequestCountryCode","value":"DE"},{"key":"Cache-Control","value":"public, max-age=0"},{"key":"x-coredna-heartbeat","value":"1707752719.1689/1470.505"},{"key":"CDN-ProxyVer","value":"1.04"},{"key":"CDN-RequestPullSuccess","value":"True"},{"key":"CDN-RequestPullCode","value":"200"},{"key":"CDN-CachedAt","value":"02/12/2024 15:45:19"},{"key":"CDN-EdgeStorageId","value":"1081"},{"key":"CDN-Status","value":"200"},{"key":"CDN-RequestId","value":"ddb3e06917e647a7bd1888893bb0a440"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"record\": {\n            \"name\": \"Forever in Berlin\",\n            \"layout\": 131,\n            \"originalPath\": \"/event/forever-in-berlin-1\",\n            \"fullSlug\": \"forever-in-berlin-1\",\n            \"fullPath\": \"/event/forever-in-berlin-1\",\n            \"url\": \"//theme3corednacom-dennis.de.coredna.dev/event/forever-in-berlin-1\",\n            \"id\": 51,\n            \"slug\": \"forever-in-berlin-1\",\n            \"position\": null,\n            \"created\": \"2024-02-12T15:44:30+00:00\",\n            \"modified\": \"2024-02-12T15:44:30+00:00\",\n            \"published\": false,\n            \"definition\": 3,\n            \"activeRevision\": 61,\n            \"parent\": null,\n            \"children\": [],\n            \"customUrl\": null,\n            \"language\": null,\n            \"site\": 1,\n            \"revisions\": [\n                61\n            ],\n            \"lastRevision\": 61,\n            \"relatedRecords\": {\n                \"location\": 11,\n                \"artists\": [\n                    17\n                ]\n            },\n            \"areasContent\": {\n                \"description\": {\n                    \"id\": 214669,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"editor\": \"richtext\",\n                    \"text\": \"Join us for an electrifying evening as the acclaimed alternative rock sensation, Forever Green Socks, takes the stage at the iconic Olympiastadion Berlin. Known for their dynamic performances and a fervent fanbase, Forever Green Socks is set to deliver an unforgettable concert experience in one of the most prestigious venues in Germany.\"\n                },\n                \"date\": {\n                    \"id\": null,\n                    \"type\": \"Date\",\n                    \"category\": \"text\",\n                    \"editor\": \"date\",\n                    \"content\": null\n                },\n                \"doors\": {\n                    \"id\": null,\n                    \"type\": \"Text\",\n                    \"category\": \"text\",\n                    \"editor\": \"text\",\n                    \"content\": null\n                }\n            }\n        }\n    },\n    \"message\": \"The Record has been successfully deleted.\"\n}"}],"_postman_id":"70c3fa16-301e-4681-aad6-72a55960a960"}],"id":"4c9c8edc-652f-4a57-9048-e8ceb5765aa2","_postman_id":"4c9c8edc-652f-4a57-9048-e8ceb5765aa2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Blogs","item":[{"name":"Blogs","item":[{"name":"List blogs","id":"4ea49e65-4a6b-4835-942f-62b5cd5910ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blogs?properties={\n  blogs {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}","description":"<p>List the blogs available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","blogs"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  blogs {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}"}],"variable":[]}},"response":[{"id":"a6cae2b6-0b78-4e9c-8787-a818319cec98","name":"List blogs","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  blogs {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blogs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 14:54:33 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553612073.8918/122.7748"},{"key":"Content-Length","value":"3676"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"blogs\": [\n            {\n                \"id\": 3,\n                \"name\": \"Web Trends and Insights\",\n                \"slug\": \"web-trends-and-insights\",\n                \"posts\": 80,\n                \"comments\": 15,\n                \"created\": \"2008-04-30T22:57:06+00:00\",\n                \"modified\": \"2019-02-08T20:41:54+00:00\"\n            },\n            {\n                \"id\": 4,\n                \"name\": \"Digital Web Strategy\",\n                \"slug\": \"digital-web-strategy\",\n                \"posts\": 78,\n                \"comments\": 37,\n                \"created\": \"2008-05-16T02:03:22+00:00\",\n                \"modified\": \"2019-02-08T20:43:22+00:00\"\n            },\n            {\n                \"id\": 6,\n                \"name\": \"Internet Application Development and Infrastructure\",\n                \"slug\": \"internet-application-development-and-infrastructure\",\n                \"posts\": 0,\n                \"comments\": 26,\n                \"created\": \"2008-09-01T08:37:35+00:00\",\n                \"modified\": \"2019-02-08T20:43:43+00:00\"\n            },\n            {\n                \"id\": 7,\n                \"name\": \"Web Devices\",\n                \"slug\": \"web-devices\",\n                \"posts\": 7,\n                \"comments\": 5,\n                \"created\": \"2008-11-10T02:44:27+00:00\",\n                \"modified\": \"2019-02-08T20:43:46+00:00\"\n            },\n            {\n                \"id\": 10,\n                \"name\": \"Growing business with the Web\",\n                \"slug\": \"growing-business-with-the-web\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2008-12-10T02:53:24+00:00\",\n                \"modified\": \"2019-02-08T20:43:46+00:00\"\n            },\n            {\n                \"id\": 15,\n                \"name\": \"Web Innovation\",\n                \"slug\": \"web-innovation\",\n                \"posts\": 3,\n                \"comments\": 2,\n                \"created\": \"2009-08-04T05:03:45+00:00\",\n                \"modified\": \"2019-02-08T20:43:49+00:00\"\n            },\n            {\n                \"id\": 16,\n                \"name\": \"Jeff's Shed\",\n                \"slug\": \"jeffs-shed\",\n                \"posts\": 6,\n                \"comments\": 0,\n                \"created\": \"2009-09-07T02:32:34+00:00\",\n                \"modified\": \"2019-02-08T20:43:51+00:00\"\n            },\n            {\n                \"id\": 17,\n                \"name\": \"Marketing Online\",\n                \"slug\": \"marketing-online\",\n                \"posts\": 5,\n                \"comments\": 1,\n                \"created\": \"2009-10-06T00:09:41+00:00\",\n                \"modified\": \"2019-02-08T20:43:52+00:00\"\n            },\n            {\n                \"id\": 24,\n                \"name\": \"From the Team\",\n                \"slug\": \"from-the-team\",\n                \"posts\": 29,\n                \"comments\": 11,\n                \"created\": \"2010-05-07T11:53:40+00:00\",\n                \"modified\": \"2019-02-08T20:44:14+00:00\"\n            },\n            {\n                \"id\": 26,\n                \"name\": \"Making the Web Work\",\n                \"slug\": \"richard-steers-making-web-work\",\n                \"posts\": 3,\n                \"comments\": 0,\n                \"created\": \"2012-08-25T09:20:38+00:00\",\n                \"modified\": \"2019-02-08T20:44:20+00:00\"\n            },\n            {\n                \"id\": 27,\n                \"name\": \"Strategy\",\n                \"slug\": \"strategy-blog\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2013-02-27T04:52:01+00:00\",\n                \"modified\": \"2019-02-08T20:44:23+00:00\"\n            },\n            {\n                \"id\": 28,\n                \"name\": \"Services Domain\",\n                \"slug\": \"services-domain\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2013-02-27T06:21:56+00:00\",\n                \"modified\": \"2019-02-08T20:44:29+00:00\"\n            },\n            {\n                \"id\": 29,\n                \"name\": \"Food for Thought\",\n                \"slug\": \"Food-for-Thought\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2013-04-15T00:39:32+00:00\",\n                \"modified\": \"2019-02-08T20:44:31+00:00\"\n            },\n            {\n                \"id\": 31,\n                \"name\": \"How To-Google Analytics\",\n                \"slug\": \"how-to-google-analytics\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2015-05-05T00:14:06+00:00\",\n                \"modified\": \"2019-02-08T20:44:31+00:00\"\n            },\n            {\n                \"id\": 32,\n                \"name\": \"Digital Marketing\",\n                \"slug\": \"digital-marketing\",\n                \"posts\": 8,\n                \"comments\": 3,\n                \"created\": \"2015-05-12T05:04:10+00:00\",\n                \"modified\": \"2019-02-08T20:44:35+00:00\"\n            },\n            {\n                \"id\": 33,\n                \"name\": \"Content Marketing\",\n                \"slug\": \"content-marketing\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2016-01-21T23:49:07+00:00\",\n                \"modified\": \"2019-03-04T17:51:55+00:00\"\n            },\n            {\n                \"id\": 34,\n                \"name\": \"SEO\",\n                \"slug\": \"seo\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2016-01-21T23:50:58+00:00\",\n                \"modified\": \"2019-02-08T20:44:36+00:00\"\n            },\n            {\n                \"id\": 35,\n                \"name\": \"Paid Traffic\",\n                \"slug\": \"paid-traffic\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2016-01-21T23:53:04+00:00\",\n                \"modified\": \"2019-02-08T20:44:36+00:00\"\n            },\n            {\n                \"id\": 36,\n                \"name\": \"Analytics\",\n                \"slug\": \"analytics\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2016-01-21T23:54:01+00:00\",\n                \"modified\": \"2019-03-01T19:11:43+00:00\"\n            },\n            {\n                \"id\": 37,\n                \"name\": \"Social Media Marketing\",\n                \"slug\": \"social-media-marketing\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2016-01-21T23:54:48+00:00\",\n                \"modified\": \"2019-02-08T20:44:37+00:00\"\n            },\n            {\n                \"id\": 38,\n                \"name\": \"Email Marketing\",\n                \"slug\": \"email-marketing\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2016-01-21T23:56:37+00:00\",\n                \"modified\": \"2019-02-08T20:44:37+00:00\"\n            },\n            {\n                \"id\": 39,\n                \"name\": \"Miscellaneous\",\n                \"slug\": \"miscellaneous\",\n                \"posts\": 0,\n                \"comments\": 0,\n                \"created\": \"2016-01-21T23:58:07+00:00\",\n                \"modified\": \"2019-02-08T20:44:37+00:00\"\n            }\n        ]\n    }\n}"}],"_postman_id":"4ea49e65-4a6b-4835-942f-62b5cd5910ed"},{"name":"Show blog","id":"078b1246-0323-4ea4-a34b-a920e638da26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/1?properties={\n  blog {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","blog","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  blog {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}"}],"variable":[]}},"response":[{"id":"4df29695-f6d0-42d3-ba10-af214038be83","name":"Show blog","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/1?properties={\n  blog {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","blog","1"],"query":[{"key":"properties","value":"{\n  blog {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:08:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"184"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589213335.2264/320.3890"},{"key":"Expires","value":"Wed, 13 May 2020 16:08:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"blog\": {\n            \"id\": 1,\n            \"name\": \"Main Blog\",\n            \"slug\": \"main-blog\",\n            \"posts\": 11,\n            \"comments\": 0,\n            \"created\": \"2019-08-27T14:27:38+00:00\",\n            \"modified\": \"2019-08-27T18:20:30+00:00\"\n        }\n    }\n}"}],"_postman_id":"078b1246-0323-4ea4-a34b-a920e638da26"},{"name":"Show blog by url","id":"421c4c68-85b8-4671-a329-08f4299f6c43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/events-listing?properties={\n  blog {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","blog","events-listing"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  blog {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}"}],"variable":[]}},"response":[{"id":"4b9748f8-d1a2-4ef2-af91-443df09c5d93","name":"Show blog by url","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/events-listing?properties={\n  blog {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","blog","events-listing"],"query":[{"key":"properties","value":"{\n  blog {\n    id,\n    name,\n    slug,\n    posts: publishedPostsCount,\n    comments: publishedCommentsCount,\n    created,\n    modified\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:10:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"193"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589213422.0313/327.3270"},{"key":"Expires","value":"Wed, 13 May 2020 16:10:21 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"blog\": {\n            \"id\": 2,\n            \"name\": \"Events listing\",\n            \"slug\": \"events-listing\",\n            \"posts\": 8,\n            \"comments\": 0,\n            \"created\": \"2019-08-27T15:17:24+00:00\",\n            \"modified\": \"2019-08-27T17:21:55+00:00\"\n        }\n    }\n}"}],"_postman_id":"421c4c68-85b8-4671-a329-08f4299f6c43"},{"name":"Add blog","id":"0d64fc9e-5fe6-4e76-87f7-96b7ff9c4ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New blog from API\",\n\t\"layout\": 10,\n\t\"postsLayout\": 11,\n\t\"author\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","blog"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cb774918-6e2b-40e2-b3e2-5fb784689220","name":"Add blog","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New blog from API\",\n\t\"layout\": 10,\n\t\"postsLayout\": 11,\n\t\"author\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:23:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"979"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589214205.8922/499.2101"},{"key":"Expires","value":"Wed, 13 May 2020 16:23:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"blog\": {\n            \"text\": null,\n            \"imageTargetFolderPath\": \"images/blogs/3\",\n            \"fullSlug\": \"new-blog-from-api\",\n            \"fullPath\": \"/blogs/new-blog-from-api\",\n            \"originalPath\": \"/blogs/new-blog-from-api\",\n            \"areas\": [\n                43\n            ],\n            \"imageSelectorStartPath\": \"images/blogs/3\",\n            \"id\": 3,\n            \"name\": \"New blog from API\",\n            \"slug\": \"new-blog-from-api\",\n            \"totalPostsCount\": 0,\n            \"publishedPostsCount\": 0,\n            \"totalCommentsCount\": 0,\n            \"publishedCommentsCount\": 0,\n            \"created\": \"2020-05-11T16:23:25+00:00\",\n            \"modified\": \"2020-05-11T16:23:25+00:00\",\n            \"published\": false,\n            \"author\": 1,\n            \"image\": null,\n            \"layout\": 10,\n            \"postsLayout\": 11,\n            \"allowRss\": true,\n            \"lockComments\": false,\n            \"autoPublishPosts\": false,\n            \"autoPublishComments\": false,\n            \"requireCommentatorEmail\": false,\n            \"tags\": [],\n            \"categories\": [],\n            \"posts\": [],\n            \"seoSettings\": null,\n            \"language\": 47,\n            \"sourceBlog\": null,\n            \"relatedBlogs\": null,\n            \"customUrl\": null,\n            \"owner\": 3,\n            \"blogAreas\": [],\n            \"areasContent\": {\n                \"pinnedPost\": {\n                    \"id\": 1161,\n                    \"type\": \"Widget\",\n                    \"category\": \"widget\",\n                    \"widget\": 1\n                }\n            }\n        }\n    },\n    \"message\": \"The Blog has been added successfully.\"\n}"}],"_postman_id":"0d64fc9e-5fe6-4e76-87f7-96b7ff9c4ae8"},{"name":"Edit blog","id":"b38dfa82-e1a5-447a-bd37-8106746d3e7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed blog title\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","blog","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"82b932da-235f-41c5-ad77-0e4013eddb9e","name":"Edit blog","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed blog title\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:25:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"978"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589214337.9073/513.2599"},{"key":"Expires","value":"Wed, 13 May 2020 16:25:37 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"blog\": {\n            \"text\": null,\n            \"imageTargetFolderPath\": \"images/blogs/3\",\n            \"fullSlug\": \"new-blog-from-api\",\n            \"fullPath\": \"/blogs/new-blog-from-api\",\n            \"originalPath\": \"/blogs/new-blog-from-api\",\n            \"areas\": [\n                43\n            ],\n            \"imageSelectorStartPath\": \"images/blogs/3\",\n            \"id\": 3,\n            \"name\": \"Changed blog title\",\n            \"slug\": \"new-blog-from-api\",\n            \"totalPostsCount\": 0,\n            \"publishedPostsCount\": 0,\n            \"totalCommentsCount\": 0,\n            \"publishedCommentsCount\": 0,\n            \"created\": \"2020-05-11T16:23:25+00:00\",\n            \"modified\": \"2020-05-11T16:25:37+00:00\",\n            \"published\": false,\n            \"author\": 1,\n            \"image\": null,\n            \"layout\": 10,\n            \"postsLayout\": 11,\n            \"allowRss\": true,\n            \"lockComments\": false,\n            \"autoPublishPosts\": false,\n            \"autoPublishComments\": false,\n            \"requireCommentatorEmail\": false,\n            \"tags\": [],\n            \"categories\": [],\n            \"posts\": [],\n            \"seoSettings\": null,\n            \"language\": 47,\n            \"sourceBlog\": null,\n            \"relatedBlogs\": [],\n            \"customUrl\": null,\n            \"owner\": 3,\n            \"blogAreas\": [],\n            \"areasContent\": {\n                \"pinnedPost\": {\n                    \"id\": 1161,\n                    \"type\": \"Widget\",\n                    \"category\": \"widget\",\n                    \"widget\": 1\n                }\n            }\n        }\n    },\n    \"message\": \"The Blog has been saved successfully.\"\n}"},{"id":"f7f0adac-c105-4794-b2af-707e7e31870a","name":"Change image using its path","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"image\": \"/images/login.png\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/1?properties={\n  blog {\n    id,\n    image,\n    image.path\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","blog","1"],"query":[{"key":"properties","value":"{\n  blog {\n    id,\n    image,\n    image.path\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:25:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"978"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589214337.9073/513.2599"},{"key":"Expires","value":"Wed, 13 May 2020 16:25:37 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"blog\": {\n            \"id\": 1,\n            \"image\": 247,\n            \"path\": \"/files/images/login.png\"\n        }\n    },\n    \"message\": \"The Blog has been saved successfully.\"\n}"}],"_postman_id":"b38dfa82-e1a5-447a-bd37-8106746d3e7f"},{"name":"Delete blog","id":"77c91d39-4bbb-4a31-8a01-c8748575962d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","blog","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ea1f450c-ddbe-4a1b-ab49-d69b6b39990b","name":"Delete blog","originalRequest":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 17:03:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"82"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589216601.499/351.9728"},{"key":"Expires","value":"Wed, 13 May 2020 17:03:21 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Blog has successfully been deleted.\"\n}"}],"_postman_id":"77c91d39-4bbb-4a31-8a01-c8748575962d"}],"id":"06f3c6cd-eaa9-41b1-8967-a9b44a2418bd","_postman_id":"06f3c6cd-eaa9-41b1-8967-a9b44a2418bd","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Posts","item":[{"name":"List blog posts","id":"b8d30a84-216c-4027-894d-2b299c00feec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/4/posts?limit=10&offset=10&orderBy=created:desc&properties={\n  posts {\n    id,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}","description":"<p>List the blog posts available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","blog","4","posts"],"host":["{{domain}}"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"10"},{"key":"orderBy","value":"created:desc"},{"key":"properties","value":"{\n  posts {\n    id,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}"}],"variable":[]}},"response":[{"id":"47017d24-b033-4448-862e-ee53c4e56132","name":"List blog posts","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  posts {\n    id,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}"},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/4/posts?limit=10&offset=10&orderBy=created:desc","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","blog","4","posts"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"10"},{"key":"orderBy","value":"created:desc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 14:55:05 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553612105.3865/220.4521"},{"key":"Content-Length","value":"4329"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"posts\": [\n            {\n                \"id\": 379,\n                \"name\": \"[VIDEO] How to Configure Custom Reports in Google Analytics\",\n                \"layout\": 1,\n                \"created\": \"2016-11-21T05:18:00+00:00\",\n                \"modified\": \"2016-11-21T05:25:14+00:00\",\n                \"author\": \"CW\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 309,\n                            \"imagePath\": \"/files/images/blogs/7/687/How to Configure Custom Reports in Google Analytics.png\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    379\n                ]\n            },\n            {\n                \"id\": 378,\n                \"name\": \"[VIDEO] How to Set Up Custom Alert in Google Analytics\",\n                \"layout\": 1,\n                \"created\": \"2016-11-21T05:14:00+00:00\",\n                \"modified\": \"2016-11-21T05:25:04+00:00\",\n                \"author\": \"CW\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 308,\n                            \"imagePath\": \"/files/images/blogs/7/686/How to Set Up Custom Alert in Google Analytics.png\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    378\n                ]\n            },\n            {\n                \"id\": 377,\n                \"name\": \"[VIDEO] How to Link AdWords with Google Analytics \",\n                \"layout\": 1,\n                \"created\": \"2016-11-21T05:09:00+00:00\",\n                \"modified\": \"2017-04-06T02:24:15+00:00\",\n                \"author\": \"CW\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 307,\n                            \"imagePath\": \"/files/images/blogs/7/685/How to Link AdWords with Google Analytics.png\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    377\n                ]\n            },\n            {\n                \"id\": 374,\n                \"name\": \"How to Hack Your Small Business Marketing with Automation\",\n                \"layout\": 1,\n                \"created\": \"2016-10-17T01:37:00+00:00\",\n                \"modified\": \"2017-06-20T05:43:11+00:00\",\n                \"author\": \"CW\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 263,\n                            \"imagePath\": \"/files/images/blogs/7/682/marketing-automation-square-alt-1.jpg\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    374\n                ]\n            },\n            {\n                \"id\": 372,\n                \"name\": \"Are Buyer Personas Just a Time Suck?\",\n                \"layout\": 1,\n                \"created\": \"2016-09-01T00:18:00+00:00\",\n                \"modified\": \"2017-06-20T05:47:15+00:00\",\n                \"author\": \"Kieran\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 216,\n                            \"imagePath\": \"/files/images/blogs/7/680/buyerPersonas.jpg\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    372\n                ]\n            },\n            {\n                \"id\": 343,\n                \"name\": \"Why Your AdWords Campaign Doesn't Work\",\n                \"layout\": 1,\n                \"created\": \"2016-08-03T03:37:00+00:00\",\n                \"modified\": \"2016-08-03T03:38:10+00:00\",\n                \"author\": \"NJD\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 113,\n                            \"imagePath\": \"/files/images/blogs/7/648/whyYourAdwordsCampaignDoesntWorkNoLogo.png\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    343\n                ]\n            },\n            {\n                \"id\": 371,\n                \"name\": \"The Real Reasons Why Your Website is Failing (And What To Do About It)\",\n                \"layout\": 1,\n                \"created\": \"2016-07-19T02:02:00+00:00\",\n                \"modified\": \"2017-05-29T05:07:46+00:00\",\n                \"author\": \"dnvalctnw\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 210,\n                            \"imagePath\": \"/files/images/blogs/7/679/whyYourWebsiteIsFailing.jpg\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    371\n                ]\n            },\n            {\n                \"id\": 370,\n                \"name\": \"5 Examples of Killer Digital Marketing Campaigns to Inspire You (With ROI)\",\n                \"layout\": 1,\n                \"created\": \"2016-07-01T04:34:00+00:00\",\n                \"modified\": \"2017-05-08T05:09:30+00:00\",\n                \"author\": \"dnvalctnw\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 209,\n                            \"imagePath\": \"/files/images/blogs/7/678/killerContentMarketing.jpg\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    370\n                ]\n            },\n            {\n                \"id\": 368,\n                \"name\": \" If You're Not Doing Content Marketing, You're Missing Out on These 5 Things\",\n                \"layout\": 1,\n                \"created\": \"2016-06-23T06:15:00+00:00\",\n                \"modified\": \"2017-05-11T01:21:32+00:00\",\n                \"author\": \"joppyo\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 194,\n                            \"imagePath\": \"/files/images/blogs/7/676/content-marketing-benefits.jpg\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    368\n                ]\n            },\n            {\n                \"id\": 367,\n                \"name\": \"17 Insanely Practical eCommerce SEO Tips to Increase Organic Traffic\",\n                \"layout\": 1,\n                \"created\": \"2016-06-15T14:00:00+00:00\",\n                \"modified\": \"2017-06-29T01:23:34+00:00\",\n                \"author\": \"dnvalctnw\",\n                \"areas\": {\n                    \"image 1\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": {\n                            \"imageId\": 193,\n                            \"imagePath\": \"/files/images/blogs/7/675/17-SEO-Tips-640x640.jpeg\"\n                        }\n                    },\n                    \"image 2\": {\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    367\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"b8d30a84-216c-4027-894d-2b299c00feec"},{"name":"List blog posts by blog slug","id":"136f9830-8723-48b4-9ea4-8fe32420776c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/main-blog/posts?limit=10&offset=10&orderBy=created:desc&properties={\n  posts {\n    id,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}","description":"<p>List the blog posts available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","blog","main-blog","posts"],"host":["{{domain}}"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"10"},{"key":"orderBy","value":"created:desc"},{"key":"properties","value":"{\n  posts {\n    id,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}"}],"variable":[]}},"response":[{"id":"372ca225-7389-443b-be3e-bab929de6666","name":"List blog posts by blog slug","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/blog/main-blog/posts?limit=10&offset=10&orderBy=created:desc&properties={\n  posts {\n    id,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","blog","main-blog","posts"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"10"},{"key":"orderBy","value":"created:desc"},{"key":"properties","value":"{\n  posts {\n    id,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:13:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"421"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589213629.9935/448.4639"},{"key":"Expires","value":"Wed, 13 May 2020 16:13:49 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"posts\": [\n            {\n                \"id\": 1,\n                \"name\": \"Our Mission\",\n                \"layout\": 11,\n                \"created\": \"2019-08-27T14:29:30+00:00\",\n                \"modified\": \"2019-08-27T16:06:43+00:00\",\n                \"author\": \"\",\n                \"areas\": {\n                    \"image\": {\n                        \"id\": 1512,\n                        \"type\": \"Image\",\n                        \"category\": \"image\",\n                        \"imageId\": 31,\n                        \"imagePath\": \"/files/images/blogs/1/1/espresso-cup-on-ledge.jpg\"\n                    },\n                    \"event-date\": {\n                        \"id\": null,\n                        \"type\": \"DateTime\",\n                        \"category\": \"text\",\n                        \"content\": null\n                    }\n                },\n                \"revisions\": [\n                    1,\n                    2,\n                    3,\n                    4,\n                    7,\n                    8,\n                    9\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"136f9830-8723-48b4-9ea4-8fe32420776c"},{"name":"Show blog post","id":"944fa1e5-07a9-4351-b77f-d3f4b19ed260","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post/1?properties={\n  post {\n    id,\n    postSlug: slug,\n\tblogSlug: blog.slug,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}","description":"<p>List the blog posts available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","post","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  post {\n    id,\n    postSlug: slug,\n\tblogSlug: blog.slug,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}"}],"variable":[]}},"response":[{"id":"52336e6e-1849-49ad-b174-19b97c2273e9","name":"Show blog post","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/post/1?properties={\n  post {\n    id,\n    postSlug: slug,\n\tblogSlug: blog.slug,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","post","1"],"query":[{"key":"properties","value":"{\n  post {\n    id,\n    postSlug: slug,\n\tblogSlug: blog.slug,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:31:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"466"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589214678.4355/453.5258"},{"key":"Expires","value":"Wed, 13 May 2020 16:31:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"post\": {\n            \"id\": 1,\n            \"postSlug\": \"our-mission\",\n            \"blogSlug\": \"main-blog\",\n            \"name\": \"Our Mission\",\n            \"layout\": 11,\n            \"created\": \"2019-08-27T14:29:30+00:00\",\n            \"modified\": \"2019-08-27T16:06:43+00:00\",\n            \"author\": \"\",\n            \"areas\": {\n                \"image\": {\n                    \"id\": 1512,\n                    \"type\": \"Image\",\n                    \"category\": \"image\",\n                    \"imageId\": 31,\n                    \"imagePath\": \"/files/images/blogs/1/1/espresso-cup-on-ledge.jpg\"\n                },\n                \"event-date\": {\n                    \"id\": null,\n                    \"type\": \"DateTime\",\n                    \"category\": \"text\",\n                    \"content\": null\n                }\n            },\n            \"revisions\": [\n                1,\n                2,\n                3,\n                4,\n                7,\n                8,\n                9\n            ]\n        }\n    }\n}"}],"_postman_id":"944fa1e5-07a9-4351-b77f-d3f4b19ed260"},{"name":"Show blog post by url","id":"91d4c193-f287-48c5-ab77-e4f74ca137a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post/main-blog/our-mission?properties={\n  post {\n    id,\n    postSlug: slug,\n\tblogSlug: blog.slug,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}","description":"<p>List the blog posts available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","post","main-blog","our-mission"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  post {\n    id,\n    postSlug: slug,\n\tblogSlug: blog.slug,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}"}],"variable":[]}},"response":[{"id":"60a631ec-6142-409c-8fd6-99c235c9ec43","name":"Show blog post by url","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/post/main-blog/our-mission?properties={\n  post {\n    id,\n    postSlug: slug,\n\tblogSlug: blog.slug,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","post","main-blog","our-mission"],"query":[{"key":"properties","value":"{\n  post {\n    id,\n    postSlug: slug,\n\tblogSlug: blog.slug,\n    name: activeRevision.name,\n    layout: activeRevision.layout,\n    created,\n    modified,\n    author: author.person.fullName,\n    areas: activeRevision.areasContent,\n    revisions\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:32:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"466"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589214740.3676/470.5870"},{"key":"Expires","value":"Wed, 13 May 2020 16:32:19 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"post\": {\n            \"id\": 1,\n            \"postSlug\": \"our-mission\",\n            \"blogSlug\": \"main-blog\",\n            \"name\": \"Our Mission\",\n            \"layout\": 11,\n            \"created\": \"2019-08-27T14:29:30+00:00\",\n            \"modified\": \"2019-08-27T16:06:43+00:00\",\n            \"author\": \"\",\n            \"areas\": {\n                \"image\": {\n                    \"id\": 1512,\n                    \"type\": \"Image\",\n                    \"category\": \"image\",\n                    \"imageId\": 31,\n                    \"imagePath\": \"/files/images/blogs/1/1/espresso-cup-on-ledge.jpg\"\n                },\n                \"event-date\": {\n                    \"id\": null,\n                    \"type\": \"DateTime\",\n                    \"category\": \"text\",\n                    \"content\": null\n                }\n            },\n            \"revisions\": [\n                1,\n                2,\n                3,\n                4,\n                7,\n                8,\n                9\n            ]\n        }\n    }\n}"}],"_postman_id":"91d4c193-f287-48c5-ab77-e4f74ca137a8"},{"name":"Add blog post","id":"c0b810e1-fba5-4f86-b153-80b07df6673d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"New blog post\",\n\t\t\"text\": \"Content of blog post\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post/3","description":"<p>List the blog posts available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","post","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6b20d466-98c3-4cf0-9c79-2e9fa67d5e0f","name":"Add blog post","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"New blog post\",\n\t\t\"text\": \"Content of blog post\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:59:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"815"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589216347.9331/461.0782"},{"key":"Expires","value":"Wed, 13 May 2020 16:59:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"post\": {\n            \"lastRevision\": 58,\n            \"name\": \"New blog post\",\n            \"text\": \"Content of blog post\",\n            \"imageTargetFolderPath\": \"images/blogs/3/22\",\n            \"fullSlug\": \"new-blog-post-1\",\n            \"fullPath\": \"/blogs/new-blog-from-api/new-blog-post-1\",\n            \"originalPath\": \"/blogs/new-blog-from-api/new-blog-post-1\",\n            \"imageSelectorStartPath\": \"images/blogs/3/22\",\n            \"id\": 22,\n            \"slug\": \"new-blog-post-1\",\n            \"totalCommentsCount\": 0,\n            \"publishedCommentsCount\": 0,\n            \"lockComments\": false,\n            \"featured\": false,\n            \"created\": \"2020-05-11T16:59:07+00:00\",\n            \"modified\": \"2020-05-11T16:59:07+00:00\",\n            \"published\": false,\n            \"author\": null,\n            \"blog\": 3,\n            \"tags\": [],\n            \"categories\": [],\n            \"comments\": [],\n            \"activeRevision\": 58,\n            \"revisions\": [\n                58\n            ],\n            \"seoSettings\": null,\n            \"language\": 47,\n            \"sourcePost\": null,\n            \"relatedPosts\": null,\n            \"customUrl\": null,\n            \"owner\": 3\n        }\n    },\n    \"message\": \"The Post has been added successfully.\"\n}"}],"_postman_id":"c0b810e1-fba5-4f86-b153-80b07df6673d"},{"name":"Edit blog post","id":"721afa9b-b62b-4cfa-bc02-bbcaddfb3b34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"New blog post title\",\n\t\t\"text\": \"Changed text => saved in new revision\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post/22","description":"<p>List the blog posts available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","post","22"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8602e80d-2645-4a76-baef-9eee97307e5f","name":"Edit blog post","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"New blog post title\",\n\t\t\"text\": \"Changed text => saved in new revision\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post/22"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 17:01:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"816"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589216506.7675/478.5080"},{"key":"Expires","value":"Wed, 13 May 2020 17:01:46 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"post\": {\n            \"lastRevision\": 59,\n            \"name\": \"New blog post\",\n            \"text\": \"Content of blog post\",\n            \"imageTargetFolderPath\": \"images/blogs/3/22\",\n            \"fullSlug\": \"new-blog-post-1\",\n            \"fullPath\": \"/blogs/new-blog-from-api/new-blog-post-1\",\n            \"originalPath\": \"/blogs/new-blog-from-api/new-blog-post-1\",\n            \"imageSelectorStartPath\": \"images/blogs/3/22\",\n            \"id\": 22,\n            \"slug\": \"new-blog-post-1\",\n            \"totalCommentsCount\": 0,\n            \"publishedCommentsCount\": 0,\n            \"lockComments\": false,\n            \"featured\": false,\n            \"created\": \"2020-05-11T16:59:07+00:00\",\n            \"modified\": \"2020-05-11T17:01:46+00:00\",\n            \"published\": false,\n            \"author\": null,\n            \"blog\": 3,\n            \"tags\": [],\n            \"categories\": [],\n            \"comments\": [],\n            \"activeRevision\": 58,\n            \"revisions\": [\n                58,\n                59\n            ],\n            \"seoSettings\": null,\n            \"language\": 47,\n            \"sourcePost\": null,\n            \"relatedPosts\": [],\n            \"customUrl\": null,\n            \"owner\": 3\n        }\n    },\n    \"message\": \"The Post has been saved successfully.\"\n}"}],"_postman_id":"721afa9b-b62b-4cfa-bc02-bbcaddfb3b34"},{"name":"Delete blog post","id":"bc2181e4-2abd-4ec5-b9a6-a5af9b39daad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post/22","description":"<p>List the blog posts available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","post","22"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"92375b80-0bbd-40e6-99bc-66bbea7aab0a","name":"Delete blog post","originalRequest":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post/22"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 17:03:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"82"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589216581.2706/373.6050"},{"key":"Expires","value":"Wed, 13 May 2020 17:03:00 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Post has successfully been deleted.\"\n}"}],"_postman_id":"bc2181e4-2abd-4ec5-b9a6-a5af9b39daad"},{"name":"Duplicate blog post","id":"d96c55e4-48e6-4bb1-a437-58f60873c6fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/duplicate-post/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","duplicate-post","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ce4f9084-629b-453b-bad4-977d3c4e06fb","name":"Post is not found","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/duplicate-post/100500"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"No data was returned by the Blogs\\\\Controllers\\\\Api\\\\Posts\\\\Duplicate controller for the url \\\"/cdna-api/blogs/duplicate-post/100500\\\" via POST\"\n}"},{"id":"3cde4759-324b-48b8-9eb5-0ae0dd428ba5","name":"Success","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/duplicate-post/22"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"post\": {\n            \"name\": \"Copy of The Silktide Voice Search Readiness Test – Powered by Uberall a\",\n            \"text\": \"<h2>Getting Businesses Prepared for the Big Change in Consumer Search</h2><p>According to a recent <a href=\\\"/en-gb/resources/blog\\\" target=\\\"_blank\\\">Uberall study</a>, 48% of voice search users currently search for local business information, however only 4% of business locations are currently ready to reach them.</p><p>At Uberall, we think this presents an excellent opportunity for businesses wanting to reach even more consumers in the relatively untapped voice search market.</p><p>Our Partner <a href=\\\"https://silktide.com/\\\" target=\\\"_blank\\\">Silktide</a> happens to agree.&nbsp;&nbsp;</p><p>The talented people there recently put their heads together to create a new Voice Search Readiness scan, which builds on the pioneering <a href=\\\"/en-gb/resources/blog\\\" target=\\\"_blank\\\">voice search readiness score</a> we created.</p><h2><span style=\\\"font-size: 30px;\\\">Calculating Voice Search Readiness</span></h2><p>This new voice search readiness test is able to show whether a business is optimised across the four leading voice assistants: Google Assistant, Alexa, Siri and Cortana. Results of the analysis are presented clearly to help a business owner understand the gaps in their optimisation and what needs to be done to improve it.</p><p><img src=\\\"https://s3-eu-west-1.amazonaws.com/uberall-cms/contentimages/Blog/Screenshot-2019-05-22-at-16.01.59.png\\\" class=\\\"fr-fic fr-dii\\\"></p><p>The increasing adoption of <a href=\\\"https://www.vox.com/2019/1/15/18182465/voice-assistant-alexa-siri-home-car-future\\\">in-car voice search technology</a>- the second most popular form of voice search following mobile - combined with the fact that smart speaker purchases are expected to grow by <a href=\\\"https://techcrunch.com/2019/04/15/smart-speakers-installed-base-to-top-200-million-by-year-end/\\\">82.4% this year</a>, clearly demonstrates that voice search is only going to become more important to people’s lives in the future.</p><p>This is why Uberall and Silktide are working together to try and make it as easy as possible for businesses to understand the problem/requirements of the current digital environment and ensure they are keeping up with how consumers are currently searching for businesses online.</p><h2>How to Calculate Your Own Score</h2><p><img src=\\\"https://s3-eu-west-1.amazonaws.com/uberall-cms/contentimages/Blog/VSRS.png\\\" class=\\\"fr-fic fr-dii\\\"></p><p>Diagnosing voice search readiness will become increasingly necessary across many industries as businesses struggle to optimise for the impending voice search revolution. If you would like to know more about this project and how to diagnose voice search readiness with Silktide’s VSR scan please <a href=\\\"mailto:help@uberall.com\\\" target=\\\"_blank\\\">contact us</a> for more information. x</p>\",\n            \"fullSlug\": \"silktide-voice-search-readiness-test-powered-by-uberall-copy-1\",\n            \"fullPath\": \"/en-gb/resources/blog/silktide-voice-search-readiness-test-powered-by-uberall-copy-1\",\n            \"originalPath\": \"/blogs/blog/silktide-voice-search-readiness-test-powered-by-uberall-copy-1\",\n            \"id\": 3765,\n            \"slug\": \"silktide-voice-search-readiness-test-powered-by-uberall-copy-1\",\n            \"totalCommentsCount\": 0,\n            \"publishedCommentsCount\": 0,\n            \"lockComments\": false,\n            \"featured\": true,\n            \"created\": \"2019-05-22T10:46:00+00:00\",\n            \"modified\": \"2021-07-06T21:24:45+00:00\",\n            \"published\": false,\n            \"author\": null,\n            \"blog\": 1,\n            \"tags\": [\n                1,\n                2\n            ],\n            \"categories\": [],\n            \"comments\": [],\n            \"activeRevision\": 10270,\n            \"revisions\": [\n                10270\n            ],\n            \"lastRevision\": 10270,\n            \"seoSettings\": 2049,\n            \"language\": 40,\n            \"sourcePost\": null,\n            \"relatedPosts\": [],\n            \"customUrl\": null,\n            \"owner\": 96\n        }\n    },\n    \"message\": \"The Post has been successfully duplicated.\"\n}"}],"_postman_id":"d96c55e4-48e6-4bb1-a437-58f60873c6fb"}],"id":"58ffa304-1ee2-4668-b7c5-459a9cfde1c8","_postman_id":"58ffa304-1ee2-4668-b7c5-459a9cfde1c8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Post Comments","item":[{"name":"List comments","id":"b2f92596-e56b-4dd1-a94d-b7a9b9f0069b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/post-comments/1?properties={\n  comments {\n    id,\n    text,\n    created,\n    modified,\n    published,\n    parent\n  }\n}","description":"<p>List of question comments at FAQ module.\nList all comments for a specific question (via question ID).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","post-comments","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  comments {\n    id,\n    text,\n    created,\n    modified,\n    published,\n    parent\n  }\n}"}],"variable":[]}},"response":[{"id":"c2f0a979-1343-4d09-a310-10e1c1aefdb5","name":"List of comments for a specific post","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"text/plain","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","options":{"raw":{"language":"text"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/post-comments/1?properties={\n  comments {\n    id,\n    text,\n    created,\n    modified,\n    published,\n    parent\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","post-comments","1"],"query":[{"key":"properties","value":"{\n  comments {\n    id,\n    text,\n    created,\n    modified,\n    published,\n    parent\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:24:49 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617489.7795/137.5041"},{"key":"Content-Length","value":"1068"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"comments\": [\n            {\n                \"id\": 2,\n                \"text\": \"Changed comment from API 744\",\n                \"created\": \"2020-12-28T23:29:23+01:00\",\n                \"modified\": \"2021-01-11T13:25:18+01:00\",\n                \"published\": \"2020-12-28T23:29:18+01:00\",\n                \"parent\": null\n            },\n            {\n                \"id\": 3,\n                \"text\": \"<p>qqwqrq</p>\",\n                \"created\": \"2020-12-28T23:29:53+01:00\",\n                \"modified\": \"2020-12-28T23:29:53+01:00\",\n                \"published\": \"2020-12-28T23:29:46+01:00\",\n                \"parent\": null\n            },\n            {\n                \"id\": 4,\n                \"text\": \"<p>qweqw</p><p>qw</p><p>eqw</p><p>e</p><p>qwe</p><p>qwe</p><p>qwe</p>\",\n                \"created\": \"2020-12-29T11:17:12+01:00\",\n                \"modified\": \"2020-12-29T11:17:12+01:00\",\n                \"published\": null,\n                \"parent\": null\n            },\n            {\n                \"id\": 5,\n                \"text\": \"<p>Test comment</p>\",\n                \"created\": \"2021-01-08T10:08:35+01:00\",\n                \"modified\": \"2021-01-08T10:08:35+01:00\",\n                \"published\": null,\n                \"parent\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"b2f92596-e56b-4dd1-a94d-b7a9b9f0069b"},{"name":"Add comment","id":"6d22f158-7beb-4871-81b2-332d88fd21df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"text\": \"Added test comment from API 571\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/comment/3","description":"<p>Add comment for a specific post by passed post ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","comment","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"67d0a53c-fc2e-460e-8b99-ce3c473aeada","name":"Add post comment by postID","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"text\": \"Added test comment from API 801\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/comment/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:59:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"815"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589216347.9331/461.0782"},{"key":"Expires","value":"Wed, 13 May 2020 16:59:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"comment\": {\n            \"id\": 6,\n            \"text\": \"Added test comment from API 889\",\n            \"created\": \"2021-01-11T13:24:02+01:00\",\n            \"modified\": \"2021-01-11T13:24:02+01:00\",\n            \"published\": false,\n            \"person\": null,\n            \"parent\": null,\n            \"children\": [],\n            \"post\": 3\n        }\n    },\n    \"message\": \"The Comment has been added successfully.\"\n}"}],"_postman_id":"6d22f158-7beb-4871-81b2-332d88fd21df"},{"name":"Show comment","id":"eb5d7198-4b5d-4bbe-925b-041c85dce241","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/blogs/comment/2?properties={\n  comment {\n    id,\n    text,\n    created,\n    modified,\n    person,\n    post {\n      name\n    }\n  }\n}","description":"<p>Show details for a specific post comment by ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","comment","2"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  comment {\n    id,\n    text,\n    created,\n    modified,\n    person,\n    post {\n      name\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"2580a83a-81fe-4ddb-9598-ecaa81187c35","name":"Show post comment by ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/blogs/comment/2?properties={\n  comment {\n    id,\n    text,\n    created,\n    modified,\n    person,\n    post {\n      name\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","blogs","comment","2"],"query":[{"key":"properties","value":"{\n  comment {\n    id,\n    text,\n    created,\n    modified,\n    person,\n    post {\n      name\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:31:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"466"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589214678.4355/453.5258"},{"key":"Expires","value":"Wed, 13 May 2020 16:31:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"comment\": {\n            \"id\": 2,\n            \"text\": \"<p>Some comment</p>\",\n            \"created\": \"2020-12-28T23:29:23+01:00\",\n            \"modified\": \"2020-12-28T23:29:23+01:00\",\n            \"person\": null,\n            \"post\": {\n                \"name\": \"The Silktide Voice Search Readiness Test – Powered by Uberall !!!\"\n            }\n        }\n    }\n}"}],"_postman_id":"eb5d7198-4b5d-4bbe-925b-041c85dce241"},{"name":"Edit comment","id":"b3d5aa50-ff22-4a05-813e-fdcb1193924e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"text\": \"Changed comment from API 741\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/comment/2","description":"<p>Edit a post comment by ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","comment","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"a8709003-08c7-4870-aaa1-a56b66de9d19","name":"Edit a post comment by passed ID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"text\": \"Changed comment from API 840\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/comment/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 11:42:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553600538.2729/283.9229"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"comment\": {\n            \"id\": 2,\n            \"text\": \"Changed comment from API 744\",\n            \"created\": \"2020-12-28T23:29:23+01:00\",\n            \"modified\": \"2021-01-11T13:25:18+01:00\",\n            \"published\": \"2020-12-28T23:29:18+01:00\",\n            \"person\": null,\n            \"parent\": null,\n            \"children\": [],\n            \"post\": 1\n        }\n    },\n    \"message\": \"The Comment has been saved successfully.\"\n}"}],"_postman_id":"b3d5aa50-ff22-4a05-813e-fdcb1193924e"},{"name":"Delete comment","id":"aaaca802-22e8-426b-a5fa-fa370373cc8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/comment/6","description":"<p>Delete a post comment by passed ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","blogs","comment","6"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7708f411-6d9c-411b-b66f-512c3a406750","name":"Delete a post comment by ID","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/blogs/comment/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:48:44 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553536125.0593/355.3410"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"comment\": {\n            \"id\": 6,\n            \"text\": \"Added test comment from API 889\",\n            \"created\": \"2021-01-11T13:24:02+01:00\",\n            \"modified\": \"2021-01-11T13:24:02+01:00\",\n            \"published\": false,\n            \"person\": null,\n            \"parent\": null,\n            \"children\": [],\n            \"post\": 3\n        }\n    },\n    \"message\": \"The Comment has been successfully deleted.\"\n}"}],"_postman_id":"aaaca802-22e8-426b-a5fa-fa370373cc8c"}],"id":"d82fea0d-f6c7-44ba-8058-6fef77574798","_postman_id":"d82fea0d-f6c7-44ba-8058-6fef77574798","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"e74455b4-8862-473d-8cc5-93a70f550c7d","_postman_id":"e74455b4-8862-473d-8cc5-93a70f550c7d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Books","item":[{"name":"Books","item":[{"name":"List books","id":"368de634-5ffb-40fc-aafc-ce8f3f6a75dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/books/books?properties={\n  books {\n    id,\n    name: activeRevision.name,\n    created,\n    modified,\n    owner {\n      id, name:person.fullName\n    }\n  }\n}","description":"<p>List the books available to the authenticated user.</p>\n<p>The request also demonstrates some of the capabilities of the GraphQL-like querying, supporting aliases for properties.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","books"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  books {\n    id,\n    name: activeRevision.name,\n    created,\n    modified,\n    owner {\n      id, name:person.fullName\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"3eaf0854-3fb6-4f6e-a85d-e077a4f69b82","name":"List books","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/books/books?properties={books {id, name: activeRevision.name, created, modified, owner {id, name:person.fullName}, units {id, name: activeRevision.name, created, modified, owner {id, name:person.fullName}, pages {id, name:activeRevision.name, created, modified, owner {id, name:person.fullName}}}}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","books","books"],"query":[{"key":"properties","value":"{books {id, name: activeRevision.name, created, modified, owner {id, name:person.fullName}, units {id, name: activeRevision.name, created, modified, owner {id, name:person.fullName}, pages {id, name:activeRevision.name, created, modified, owner {id, name:person.fullName}}}}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 14:55:38 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553612138.9011/191.1180"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"books\": [\n            {\n                \"id\": 1,\n                \"name\": \"Test Book\",\n                \"created\": \"2019-02-26T12:06:32+00:00\",\n                \"modified\": \"2019-02-26T13:33:31+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"units\": [\n                    {\n                        \"id\": 3,\n                        \"name\": \"Test Unit\",\n                        \"created\": \"2019-03-11T19:17:31+00:00\",\n                        \"modified\": \"2019-03-11T19:17:31+00:00\",\n                        \"owner\": {\n                            \"id\": 1,\n                            \"name\": \"Dennis Westphal\"\n                        },\n                        \"pages\": [\n                            {\n                                \"id\": 2,\n                                \"name\": \"Test Page\",\n                                \"created\": \"2019-02-26T13:36:51+00:00\",\n                                \"modified\": \"2019-03-01T13:40:22+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 32,\n                        \"name\": \"My custom unit 123\",\n                        \"created\": \"2019-03-20T02:10:21+00:00\",\n                        \"modified\": \"2019-03-20T02:10:21+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    }\n                ]\n            },\n            {\n                \"id\": 7,\n                \"name\": \"Test from API 177\",\n                \"created\": \"2019-03-14T12:04:21+00:00\",\n                \"modified\": \"2019-03-14T12:04:21+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"units\": [\n                    {\n                        \"id\": 18,\n                        \"name\": \"Second Unit from API 105\",\n                        \"created\": \"2019-03-18T16:21:11+00:00\",\n                        \"modified\": \"2019-03-18T16:21:11+00:00\",\n                        \"owner\": {\n                            \"id\": 1,\n                            \"name\": \"Dennis Westphal\"\n                        },\n                        \"pages\": [\n                            {\n                                \"id\": 19,\n                                \"name\": \"Another Test Page from API 729\",\n                                \"created\": \"2019-03-18T16:30:55+00:00\",\n                                \"modified\": \"2019-03-18T16:30:55+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 21,\n                        \"name\": \"asdasd\",\n                        \"created\": \"2019-03-20T01:17:28+00:00\",\n                        \"modified\": \"2019-03-20T01:17:28+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 22,\n                        \"name\": \"asdasd\",\n                        \"created\": \"2019-03-20T01:17:55+00:00\",\n                        \"modified\": \"2019-03-20T01:17:55+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 23,\n                        \"name\": \"asdasd\",\n                        \"created\": \"2019-03-20T01:18:11+00:00\",\n                        \"modified\": \"2019-03-20T01:18:11+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 24,\n                        \"name\": \"asdasd\",\n                        \"created\": \"2019-03-20T01:18:45+00:00\",\n                        \"modified\": \"2019-03-20T01:18:45+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 25,\n                        \"name\": \"Brand new unit\",\n                        \"created\": \"2019-03-20T01:22:03+00:00\",\n                        \"modified\": \"2019-03-20T01:22:03+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 26,\n                        \"name\": \"Hello world\",\n                        \"created\": \"2019-03-20T01:22:56+00:00\",\n                        \"modified\": \"2019-03-20T01:22:56+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 27,\n                        \"name\": \"hello2\",\n                        \"created\": \"2019-03-20T01:24:10+00:00\",\n                        \"modified\": \"2019-03-20T01:24:10+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 28,\n                        \"name\": \"asdsad\",\n                        \"created\": \"2019-03-20T01:24:48+00:00\",\n                        \"modified\": \"2019-03-20T01:24:48+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 9,\n                        \"name\": \"Test Unit from API 69\",\n                        \"created\": \"2019-03-14T15:46:27+00:00\",\n                        \"modified\": \"2019-03-20T23:51:33+00:00\",\n                        \"owner\": {\n                            \"id\": 1,\n                            \"name\": \"Dennis Westphal\"\n                        },\n                        \"pages\": [\n                            {\n                                \"id\": 10,\n                                \"name\": \"Test Page from API 839\",\n                                \"created\": \"2019-03-14T15:49:32+00:00\",\n                                \"modified\": \"2019-03-14T15:49:32+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            },\n                            {\n                                \"id\": 11,\n                                \"name\": \"Test Page from API 564\",\n                                \"created\": \"2019-03-15T12:23:18+00:00\",\n                                \"modified\": \"2019-03-15T12:23:18+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            },\n                            {\n                                \"id\": 12,\n                                \"name\": \"Test Page from API 973\",\n                                \"created\": \"2019-03-15T12:29:34+00:00\",\n                                \"modified\": \"2019-03-15T12:29:34+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            },\n                            {\n                                \"id\": 13,\n                                \"name\": \"Test Page from API 873\",\n                                \"created\": \"2019-03-15T12:29:51+00:00\",\n                                \"modified\": \"2019-03-15T12:29:51+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            },\n                            {\n                                \"id\": 14,\n                                \"name\": \"Test Page from API 429\",\n                                \"created\": \"2019-03-15T12:30:18+00:00\",\n                                \"modified\": \"2019-03-15T12:30:18+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            },\n                            {\n                                \"id\": 15,\n                                \"name\": \"Test Page from API 694\",\n                                \"created\": \"2019-03-15T12:31:13+00:00\",\n                                \"modified\": \"2019-03-15T12:31:13+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            },\n                            {\n                                \"id\": 16,\n                                \"name\": \"Test Page from API 135\",\n                                \"created\": \"2019-03-15T13:12:05+00:00\",\n                                \"modified\": \"2019-03-15T13:12:05+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            },\n                            {\n                                \"id\": 17,\n                                \"name\": \"Test Page from API 643\",\n                                \"created\": \"2019-03-15T14:57:41+00:00\",\n                                \"modified\": \"2019-03-15T14:57:41+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 29,\n                        \"name\": \"Zebra\",\n                        \"created\": \"2019-03-20T01:25:41+00:00\",\n                        \"modified\": \"2019-03-20T01:25:41+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 30,\n                        \"name\": \"hello88\",\n                        \"created\": \"2019-03-20T01:26:03+00:00\",\n                        \"modified\": \"2019-03-20T01:26:03+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 31,\n                        \"name\": \"Assesment Real\",\n                        \"created\": \"2019-03-20T01:26:19+00:00\",\n                        \"modified\": \"2019-03-20T01:26:19+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 56,\n                        \"name\": \"Changed unit title from API 377\",\n                        \"created\": \"2019-03-22T10:04:24+00:00\",\n                        \"modified\": \"2019-03-22T10:43:42+00:00\",\n                        \"owner\": {\n                            \"id\": 1,\n                            \"name\": \"Dennis Westphal\"\n                        },\n                        \"pages\": []\n                    }\n                ]\n            },\n            {\n                \"id\": 20,\n                \"name\": \"Think Up\",\n                \"created\": \"2019-03-19T21:18:21+00:00\",\n                \"modified\": \"2019-03-19T21:18:21+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": [\n                    {\n                        \"id\": 40,\n                        \"name\": \"Second unit 22\",\n                        \"created\": \"2019-03-20T02:35:15+00:00\",\n                        \"modified\": \"2019-03-21T04:28:35+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 34,\n                        \"name\": \"Second unit\",\n                        \"created\": \"2019-03-20T02:22:43+00:00\",\n                        \"modified\": \"2019-03-20T02:22:43+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 41,\n                        \"name\": \"What is this\",\n                        \"created\": \"2019-03-20T02:35:38+00:00\",\n                        \"modified\": \"2019-03-20T20:42:41+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 43,\n                        \"name\": \"What is this value\",\n                        \"created\": \"2019-03-20T03:24:10+00:00\",\n                        \"modified\": \"2019-03-20T03:24:10+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 33,\n                        \"name\": \"My first unit\",\n                        \"created\": \"2019-03-20T02:21:49+00:00\",\n                        \"modified\": \"2019-03-20T20:52:25+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 45,\n                        \"name\": \"Hello world88888\",\n                        \"created\": \"2019-03-20T20:14:42+00:00\",\n                        \"modified\": \"2019-03-20T20:14:42+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 35,\n                        \"name\": \"What is this\",\n                        \"created\": \"2019-03-20T02:26:08+00:00\",\n                        \"modified\": \"2019-03-20T20:53:30+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 36,\n                        \"name\": \"again 22\",\n                        \"created\": \"2019-03-20T02:26:26+00:00\",\n                        \"modified\": \"2019-03-20T02:26:26+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 37,\n                        \"name\": \"gggg\",\n                        \"created\": \"2019-03-20T02:31:28+00:00\",\n                        \"modified\": \"2019-03-20T02:31:28+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 38,\n                        \"name\": \"Again 33\",\n                        \"created\": \"2019-03-20T02:32:04+00:00\",\n                        \"modified\": \"2019-03-20T02:32:04+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 42,\n                        \"name\": \"Hello world\",\n                        \"created\": \"2019-03-20T02:49:29+00:00\",\n                        \"modified\": \"2019-03-20T02:49:29+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 39,\n                        \"name\": \"Again with number\",\n                        \"created\": \"2019-03-20T02:32:13+00:00\",\n                        \"modified\": \"2019-03-20T02:32:13+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    },\n                    {\n                        \"id\": 44,\n                        \"name\": \"hello87\",\n                        \"created\": \"2019-03-20T06:34:00+00:00\",\n                        \"modified\": \"2019-03-20T06:34:00+00:00\",\n                        \"owner\": {\n                            \"id\": 4,\n                            \"name\": \"Craig MacGregor\"\n                        },\n                        \"pages\": []\n                    }\n                ]\n            },\n            {\n                \"id\": 47,\n                \"name\": \"Test new book\",\n                \"created\": \"2019-03-21T11:46:48+00:00\",\n                \"modified\": \"2019-03-21T11:46:48+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"units\": [\n                    {\n                        \"id\": 48,\n                        \"name\": \"Test new unit\",\n                        \"created\": \"2019-03-21T12:48:35+00:00\",\n                        \"modified\": \"2019-03-24T01:47:46+00:00\",\n                        \"owner\": {\n                            \"id\": 1,\n                            \"name\": \"Dennis Westphal\"\n                        },\n                        \"pages\": [\n                            {\n                                \"id\": 49,\n                                \"name\": \"Test new print\",\n                                \"created\": \"2019-03-21T14:11:31+00:00\",\n                                \"modified\": \"2019-03-21T14:11:31+00:00\",\n                                \"owner\": {\n                                    \"id\": 1,\n                                    \"name\": \"Dennis Westphal\"\n                                }\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 57,\n                \"name\": \"New book 9999\",\n                \"created\": \"2019-03-22T21:53:34+00:00\",\n                \"modified\": \"2019-03-22T21:53:34+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": []\n            },\n            {\n                \"id\": 58,\n                \"name\": \"Another book 777\",\n                \"created\": \"2019-03-22T21:55:00+00:00\",\n                \"modified\": \"2019-03-22T21:55:00+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": []\n            },\n            {\n                \"id\": 59,\n                \"name\": \"dsadas\",\n                \"created\": \"2019-03-24T00:44:32+00:00\",\n                \"modified\": \"2019-03-24T00:44:32+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": []\n            },\n            {\n                \"id\": 60,\n                \"name\": \"dsadas\",\n                \"created\": \"2019-03-24T00:45:14+00:00\",\n                \"modified\": \"2019-03-24T00:45:14+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": []\n            },\n            {\n                \"id\": 61,\n                \"name\": \"dsadas\",\n                \"created\": \"2019-03-24T00:45:25+00:00\",\n                \"modified\": \"2019-03-24T00:45:25+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": []\n            },\n            {\n                \"id\": 62,\n                \"name\": \"dsadas\",\n                \"created\": \"2019-03-24T00:46:04+00:00\",\n                \"modified\": \"2019-03-24T00:46:04+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": []\n            },\n            {\n                \"id\": 63,\n                \"name\": \"dsadas\",\n                \"created\": \"2019-03-24T00:46:44+00:00\",\n                \"modified\": \"2019-03-24T00:46:44+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": []\n            },\n            {\n                \"id\": 64,\n                \"name\": \"ZAP\",\n                \"created\": \"2019-03-24T00:46:52+00:00\",\n                \"modified\": \"2019-03-24T00:46:52+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"units\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"368de634-5ffb-40fc-aafc-ce8f3f6a75dd"},{"name":"Show book","id":"15479eb5-add6-465c-b994-ca363bdfe599","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/books/book/1?properties={\n  book {\n    id,\n    name: activeRevision.name,\n    created,\n    modified,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    units {\n      id,\n      name: activeRevision.name,\n      created,\n      modified,\n      owner {\n        id,\n        name:person.fullName\n      },\n      pages {\n        id,\n        name:activeRevision.name,\n        created,\n        modified,\n        owner {\n          id,\n          name:person.fullName\n        }\n      }\n    }\n  }\n}","description":"<p>Retrieve details for a particular book.</p>\n<p>This request shows how requested parameters can also be specified in the request body.</p>\n<p>In this case, as X-Body-Has-Parameters: 1 header has to be added to the request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","book","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  book {\n    id,\n    name: activeRevision.name,\n    created,\n    modified,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    units {\n      id,\n      name: activeRevision.name,\n      created,\n      modified,\n      owner {\n        id,\n        name:person.fullName\n      },\n      pages {\n        id,\n        name:activeRevision.name,\n        created,\n        modified,\n        owner {\n          id,\n          name:person.fullName\n        }\n      }\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"b70bc58a-be02-4fdd-bd21-23cc6ac896a3","name":"Show book","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  book {\n    id,\n    name: activeRevision.name,\n    created,\n    modified,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    units {\n      id,\n      name: activeRevision.name,\n      created,\n      modified,\n      owner {\n        id,\n        name:person.fullName\n      },\n      pages {\n        id,\n        name:activeRevision.name,\n        created,\n        modified,\n        owner {\n          id,\n          name:person.fullName\n        }\n      }\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/book/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Apr 2019 14:47:27 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555598847.7459/146.9100"},{"key":"Content-Length","value":"1454"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"book\": {\n            \"id\": 1,\n            \"name\": \"Changed book title from API 312\",\n            \"created\": \"2019-02-26T12:06:32+00:00\",\n            \"modified\": \"2019-04-11T19:01:16+00:00\",\n            \"hateoasLinks\": [\n                {\n                    \"rel\": \"createChild\",\n                    \"href\": \"/cdna-api/books/unit\",\n                    \"verb\": \"POST\"\n                },\n                {\n                    \"rel\": \"show\",\n                    \"href\": \"/cdna-api/books/book/1\",\n                    \"verb\": \"GET\"\n                },\n                {\n                    \"rel\": \"edit\",\n                    \"href\": \"/cdna-api/books/book/1\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"delete\",\n                    \"href\": \"/cdna-api/books/book/1\",\n                    \"verb\": \"DELETE\"\n                }\n            ],\n            \"owner\": {\n                \"id\": 1,\n                \"name\": \"Dennis Westphal\"\n            },\n            \"units\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Changed unit title from API 603\",\n                    \"created\": \"2019-03-11T19:17:31+00:00\",\n                    \"modified\": \"2019-04-11T19:02:49+00:00\",\n                    \"owner\": {\n                        \"id\": 1,\n                        \"name\": \"Dennis Westphal\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2,\n                            \"name\": \"Test Page\",\n                            \"created\": \"2019-02-26T13:36:51+00:00\",\n                            \"modified\": \"2019-04-09T15:29:05+00:00\",\n                            \"owner\": {\n                                \"id\": 1,\n                                \"name\": \"Dennis Westphal\"\n                            }\n                        },\n                        {\n                            \"id\": 104,\n                            \"name\": \"Test Page Copy\",\n                            \"created\": \"2019-04-12T17:17:42+00:00\",\n                            \"modified\": \"2019-04-12T17:17:42+00:00\",\n                            \"owner\": {\n                                \"id\": 5,\n                                \"name\": \"Paul Savage\"\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"My custom unit 123\",\n                    \"created\": \"2019-03-20T02:10:21+00:00\",\n                    \"modified\": \"2019-03-20T02:10:21+00:00\",\n                    \"owner\": {\n                        \"id\": 4,\n                        \"name\": \"Craig MacGregor\"\n                    },\n                    \"pages\": []\n                },\n                {\n                    \"id\": 76,\n                    \"name\": \"Unit 1\",\n                    \"created\": \"2019-03-29T15:02:40+00:00\",\n                    \"modified\": \"2019-03-29T15:02:40+00:00\",\n                    \"owner\": {\n                        \"id\": 4,\n                        \"name\": \"Craig MacGregor\"\n                    },\n                    \"pages\": []\n                },\n                {\n                    \"id\": 77,\n                    \"name\": \"Unit 2\",\n                    \"created\": \"2019-03-29T15:02:49+00:00\",\n                    \"modified\": \"2019-03-29T15:02:49+00:00\",\n                    \"owner\": {\n                        \"id\": 4,\n                        \"name\": \"Craig MacGregor\"\n                    },\n                    \"pages\": []\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"15479eb5-add6-465c-b994-ca363bdfe599"},{"name":"Get book PDF state","id":"42437081-f33a-4a76-bd70-1c5fb0e1f4d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/books/book/24365?properties={  book {  id,  exportStatus,  exportPdfPath } }","description":"<p>This request shows how to retrieve the PDF export state for a book.</p>\n<p>The export state can also be requested with the regular \"show book\" requests by specifying the parameters for it accordingly</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","book","24365"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{  book {  id,  exportStatus,  exportPdfPath } }"}],"variable":[]}},"response":[{"id":"2b84548a-af6c-471e-bb29-ecfca611f91c","name":"Get book PDF state","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  book {\n    id,\n    exportStatus,\n    exportPdfPath\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/book/24365"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Jan 2020 12:19:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"140"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1579177167.4588/485.7960"},{"key":"Expires","value":"Sat, 18 Jan 2020 12:19:26 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"book\": {\n            \"id\": 24365,\n            \"exportStatus\": \"success\",\n            \"exportPdfPath\": \"/files/books/pdfs/24365-Test small book.pdf\"\n        }\n    }\n}"}],"_postman_id":"42437081-f33a-4a76-bd70-1c5fb0e1f4d9"},{"name":"Add book","id":"ec18a024-0121-4291-bfb0-104a4e1c0adb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test from API 710\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/book","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","book"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1a3813d2-8d2f-4711-b5c6-88d767a734e0","name":"Add book","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test from API 855\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/book"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:00:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009214.8088/529.7709"},{"key":"Content-Length","value":"547"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"book\": {\n            \"unitsCount\": 0,\n            \"pagesCount\": 0,\n            \"units\": [],\n            \"lastRevision\": 494,\n            \"name\": \"Test from API 342\",\n            \"fullSlug\": \"/test-from-api-342\",\n            \"fullPath\": \"/test-from-api-342\",\n            \"id\": 100,\n            \"slug\": \"test-from-api-342\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 18,\n            \"created\": \"2019-04-11T19:00:14+00:00\",\n            \"modified\": \"2019-04-11T19:00:14+00:00\",\n            \"published\": false,\n            \"activeRevision\": 494,\n            \"language\": 47,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"revisions\": [\n                494\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"owner\": 1\n        }\n    },\n    \"message\": \"The Book has been added successfully.\"\n}"}],"_postman_id":"ec18a024-0121-4291-bfb0-104a4e1c0adb"},{"name":"Edit a book","id":"2b2222d8-4aaa-46cf-824f-db4ff2d2f307","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed book title from API 313\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/book/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","book","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c006e8d2-7f57-4a10-ad45-fa089d0c803e","name":"Edit a book","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed book title from API 714\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/book/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:01:16 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009276.7513/517.2541"},{"key":"Content-Length","value":"588"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"book\": {\n            \"unitsCount\": 4,\n            \"pagesCount\": 1,\n            \"units\": [\n                3,\n                32,\n                76,\n                77\n            ],\n            \"lastRevision\": 496,\n            \"name\": \"Changed book title from API 312\",\n            \"fullSlug\": \"/test-book\",\n            \"fullPath\": \"/test-book\",\n            \"id\": 1,\n            \"slug\": \"test-book\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 1,\n            \"created\": \"2019-02-26T12:06:32+00:00\",\n            \"modified\": \"2019-04-11T19:01:16+00:00\",\n            \"published\": \"2019-02-26T12:06:36+00:00\",\n            \"activeRevision\": 496,\n            \"language\": 47,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"revisions\": [\n                1,\n                2,\n                14,\n                15,\n                27,\n                239,\n                495,\n                496\n            ],\n            \"tags\": [],\n            \"categories\": [\n                1\n            ],\n            \"owner\": 1\n        }\n    },\n    \"message\": \"The Book has been saved successfully.\"\n}"}],"_postman_id":"2b2222d8-4aaa-46cf-824f-db4ff2d2f307"},{"name":"Delete a book","id":"1e1dcc51-4859-474c-b0fa-6ac6a0ad02fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/books/book/53","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","book","53"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"36411b10-728c-4d1d-9e67-fec679f7693a","name":"Delete a book","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/books/book/53"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 Mar 2019 15:21:43 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553181704.2735/444.4790"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Book has successfully been deleted.\"\n}"}],"_postman_id":"1e1dcc51-4859-474c-b0fa-6ac6a0ad02fd"},{"name":"Duplicate book","id":"9c5c4acf-2146-4392-99e4-d832a40caf0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{ \nbook {\n  id,\n  units\n }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/duplicate-book/24365","description":"<p>Duplicate the book with the given ID.</p>\n<p>This is a synchronous request that returns the ID of the duplicated book once the duplication is complete.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","duplicate-book","24365"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"eb8c26f2-b94f-485b-97f5-d0d5c7515b38","name":"Duplicate book","originalRequest":{"method":"POST","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{ \nbook {\n  id,\n  units\n }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/duplicate-book/24365"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Jan 2020 12:05:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"120"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1579176317.6797/811.7330"},{"key":"Expires","value":"Sat, 18 Jan 2020 12:05:16 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"book\": {\n            \"id\": 24428,\n            \"units\": [\n                24429\n            ]\n        }\n    },\n    \"message\": \"The Book has successfully been duplicated.\"\n}"}],"_postman_id":"9c5c4acf-2146-4392-99e4-d832a40caf0a"},{"name":"Export book PDF","id":"8e81a877-5a70-4d29-baaa-96486266d0da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  book {\n    id,\n    exportStatus,\n    exportPdfPath\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/export-book-pdf/24365","description":"<p>Start the export of the PDF for the book.</p>\n<p>The export progress is visible through the book, which will also be returned, but can be queried independantly (see \"Show book\" query)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","export-book-pdf","24365"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8e01414b-14e2-42e6-b31c-058c5c4943d1","name":"Export book PDF","originalRequest":{"method":"POST","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  book {\n    id,\n    exportStatus,\n    exportPdfPath\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/export-book-pdf/24365"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Jan 2020 12:04:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"221"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1579176283.7772/1101.1569"},{"key":"Expires","value":"Sat, 18 Jan 2020 12:04:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"book\": {\n            \"id\": 24365,\n            \"exportStatus\": \"generate_pdfs\",\n            \"exportPdfPath\": null\n        }\n    },\n    \"message\": \"The export of the book PDF has been started. Once the export is completed, it will be attached to the book.\"\n}"}],"_postman_id":"8e81a877-5a70-4d29-baaa-96486266d0da"}],"id":"afd27648-e03a-410d-a6e2-6cec7ee32127","_postman_id":"afd27648-e03a-410d-a6e2-6cec7ee32127","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Units","item":[{"name":"List units","id":"e058abe8-0426-455f-8eeb-df6b6412b3f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/books/book/1/units?properties={\n  units {\n    id,\n    name: activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    pages {\n      id,\n      name:activeRevision.name,\n      created,\n      modified,\n      owner {\n        id, name:person.fullName\n      }\n    }\n  }\n}","description":"<p>List the units available for a specific book</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","book","1","units"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  units {\n    id,\n    name: activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    pages {\n      id,\n      name:activeRevision.name,\n      created,\n      modified,\n      owner {\n        id, name:person.fullName\n      }\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"1bff6317-d207-4f20-ab52-0ce3b150080a","name":"List units","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  units {\n    id,\n    name: activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    pages {\n      id,\n      name:activeRevision.name,\n      created,\n      modified,\n      owner {\n        id, name:person.fullName\n      }\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/book/1/units"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:21:56 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553617316.3717/140.6810"},{"key":"Content-Length","value":"511"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"units\": [\n            {\n                \"id\": 3,\n                \"name\": \"Test Unit\",\n                \"created\": \"2019-03-11T19:17:31+00:00\",\n                \"modified\": \"2019-03-11T19:17:31+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"pages\": [\n                    {\n                        \"id\": 2,\n                        \"name\": \"Test Page\",\n                        \"created\": \"2019-02-26T13:36:51+00:00\",\n                        \"modified\": \"2019-03-01T13:40:22+00:00\",\n                        \"owner\": {\n                            \"id\": 1,\n                            \"name\": \"Dennis Westphal\"\n                        }\n                    }\n                ]\n            },\n            {\n                \"id\": 32,\n                \"name\": \"My custom unit 123\",\n                \"created\": \"2019-03-20T02:10:21+00:00\",\n                \"modified\": \"2019-03-20T02:10:21+00:00\",\n                \"owner\": {\n                    \"id\": 4,\n                    \"name\": \"Craig MacGregor\"\n                },\n                \"pages\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"e058abe8-0426-455f-8eeb-df6b6412b3f7"},{"name":"Show unit","id":"1a288e9e-f4d0-49ac-9050-1cc3ae5232ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/books/unit/3?properties={\n  unit {\n    id,\n    name: activeRevision.name,\n    customFieldContent,\n    created,\n    modified,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    pages {\n      id,\n      name:activeRevision.name,\n      created,\n      modified,\n      owner {\n        id,\n        name:person.fullName\n      }\n    }\n  }\n}","description":"<p>Retrieve details for a specific unit</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","unit","3"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  unit {\n    id,\n    name: activeRevision.name,\n    customFieldContent,\n    created,\n    modified,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    pages {\n      id,\n      name:activeRevision.name,\n      created,\n      modified,\n      owner {\n        id,\n        name:person.fullName\n      }\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"a1e4a414-e48d-4a5f-870b-008b2a8659ce","name":"Show unit","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  unit {\n    id,\n    name: activeRevision.name,\n    customFieldContent,\n    created,\n    modified,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    pages {\n      id,\n      name:activeRevision.name,\n      created,\n      modified,\n      owner {\n        id,\n        name:person.fullName\n      }\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/unit/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 May 2019 15:30:35 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1557329435.9298/167.8178"},{"key":"Content-Length","value":"975"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"unit\": {\n            \"id\": 3,\n            \"name\": \"Changed unit title from API 603\",\n            \"customFieldContent\": {\n                \"ancillary\": {\n                    \"id\": 3864,\n                    \"type\": \"Switch\",\n                    \"category\": \"text\",\n                    \"editor\": \"switch\",\n                    \"active\": true\n                }\n            },\n            \"created\": \"2019-03-11T19:17:31+00:00\",\n            \"modified\": \"2019-05-07T17:51:04+00:00\",\n            \"hateoasLinks\": [\n                {\n                    \"rel\": \"createChild\",\n                    \"href\": \"/cdna-api/books/page\",\n                    \"verb\": \"POST\"\n                },\n                {\n                    \"rel\": \"show\",\n                    \"href\": \"/cdna-api/books/unit/3\",\n                    \"verb\": \"GET\"\n                },\n                {\n                    \"rel\": \"edit\",\n                    \"href\": \"/cdna-api/books/unit/3\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"delete\",\n                    \"href\": \"/cdna-api/books/unit/3\",\n                    \"verb\": \"DELETE\"\n                },\n                {\n                    \"rel\": \"publish\",\n                    \"href\": \"/cdna-api/books/unit/3\",\n                    \"verb\": \"PUT\"\n                }\n            ],\n            \"owner\": {\n                \"id\": 1,\n                \"name\": \"Dennis Westphal\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 2,\n                    \"name\": \"Test Page\",\n                    \"created\": \"2019-02-26T13:36:51+00:00\",\n                    \"modified\": \"2019-05-02T23:11:37+00:00\",\n                    \"owner\": {\n                        \"id\": 1,\n                        \"name\": \"Dennis Westphal\"\n                    }\n                },\n                {\n                    \"id\": 104,\n                    \"name\": \"Test Page Copy\",\n                    \"created\": \"2019-04-12T17:17:42+00:00\",\n                    \"modified\": \"2019-04-12T17:17:42+00:00\",\n                    \"owner\": {\n                        \"id\": 5,\n                        \"name\": \"Paul Savage\"\n                    }\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"1a288e9e-f4d0-49ac-9050-1cc3ae5232ca"},{"name":"Add unit","id":"ff29002d-0574-487d-8a12-8ae240ff9c7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"book\": 7,\n\t\"revisions\": {\n\t\t\"name\": \"Test Unit from API 736\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/unit","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","unit"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0fb48d3e-e87d-4e7e-a74b-0f8da85c4437","name":"Add unit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"book\": 7,\n\t\"revisions\": {\n\t\t\"name\": \"Test Unit from API 403\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/unit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:02:15 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009335.8302/329.1631"},{"key":"Content-Length","value":"595"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"unit\": {\n            \"pagesCount\": 0,\n            \"book\": 7,\n            \"pages\": [],\n            \"lastRevision\": 497,\n            \"name\": \"Test Unit from API 16\",\n            \"fullSlug\": \"/test-from-api-177/test-unit-from-api-16\",\n            \"fullPath\": \"/test-from-api-177/test-unit-from-api-16\",\n            \"id\": 101,\n            \"slug\": \"test-unit-from-api-16\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 15,\n            \"created\": \"2019-04-11T19:02:15+00:00\",\n            \"modified\": \"2019-04-11T19:02:15+00:00\",\n            \"published\": false,\n            \"activeRevision\": 497,\n            \"language\": 47,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"revisions\": [\n                497\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"owner\": 1\n        }\n    },\n    \"message\": \"The Unit has been added successfully.\"\n}"}],"_postman_id":"ff29002d-0574-487d-8a12-8ae240ff9c7a"},{"name":"Edit a unit","id":"b34301ac-11b6-444d-9bc6-538203b8c066","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"customFields\": {\n\t\t\"ancillary\": true\n\t},\n\t\"revisions\": {\n\t\t\"name\": \"Changed unit title from API 435\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/unit/3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","unit","3"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"917f0d06-74e2-4885-bf8e-bc1920e9a5fd","name":"Edit a unit","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed unit title from API 975\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/unit/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:02:47 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009369.791/2407.0230"},{"key":"Content-Length","value":"583"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"unit\": {\n            \"pagesCount\": 1,\n            \"book\": 1,\n            \"pages\": [\n                2\n            ],\n            \"lastRevision\": 498,\n            \"name\": \"Changed unit title from API 603\",\n            \"fullSlug\": \"/test-book/test-unit\",\n            \"fullPath\": \"/test-book/test-unit\",\n            \"id\": 3,\n            \"slug\": \"test-unit\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 1,\n            \"created\": \"2019-03-11T19:17:31+00:00\",\n            \"modified\": \"2019-04-11T19:02:49+00:00\",\n            \"published\": \"2019-03-29T15:03:16+00:00\",\n            \"activeRevision\": 498,\n            \"language\": 47,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"revisions\": [\n                6,\n                16,\n                240,\n                498\n            ],\n            \"tags\": [],\n            \"categories\": [\n                2\n            ],\n            \"owner\": 1\n        }\n    },\n    \"message\": \"The Unit has been saved successfully.\"\n}"}],"_postman_id":"b34301ac-11b6-444d-9bc6-538203b8c066"},{"name":"Delete a unit","id":"a47f8e08-3574-4882-b69f-2ec0e1778816","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/books/unit/50","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","unit","50"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6238c4f3-2e5d-44b1-9f65-3db062e047e1","name":"Delete a unit","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/books/unit/50"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 Mar 2019 15:22:37 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553181757.3992/195.2190"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Unit has successfully been deleted.\"\n}"}],"_postman_id":"a47f8e08-3574-4882-b69f-2ec0e1778816"}],"id":"95b1939a-f7f1-4379-ab5d-89b645f0ed12","_postman_id":"95b1939a-f7f1-4379-ab5d-89b645f0ed12","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Pages","item":[{"name":"List pages","id":"83a1696c-a369-418d-a255-17f94cce38f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/books/unit/3/pages?properties={pages {id, name:activeRevision.name, created, modified, owner {id, name:person.fullName}}}","description":"<p>List the pages available for a specific unit</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","unit","3","pages"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{pages {id, name:activeRevision.name, created, modified, owner {id, name:person.fullName}}}"}],"variable":[]}},"response":[{"id":"c61d510b-c53e-42cf-860b-1c0219379310","name":"List pages","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/books/unit/3/pages?properties={pages {id, name:activeRevision.name, created, modified, owner {id, name:person.fullName}}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","books","unit","3","pages"],"query":[{"key":"properties","value":"{pages {id, name:activeRevision.name, created, modified, owner {id, name:person.fullName}}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:23:38 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553617418.2692/137.2361"},{"key":"Content-Length","value":"186"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"pages\": [\n            {\n                \"id\": 2,\n                \"name\": \"Test Page\",\n                \"created\": \"2019-02-26T13:36:51+00:00\",\n                \"modified\": \"2019-03-01T13:40:22+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"83a1696c-a369-418d-a255-17f94cce38f8"},{"name":"List pages owned by a user","id":"89165ebb-e840-4d3a-8fd4-1c381b557821","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/books/pages?owner=1&properties={pages {id, name:activeRevision.name, created, modified, published, owner {id, name:person.fullName}, unit {id, name: activeRevision.name, book {id, name: activeRevision.name}}}}","description":"<p>List all pages owned by a specific user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","pages"],"host":["{{domain}}"],"query":[{"key":"owner","value":"1"},{"key":"properties","value":"{pages {id, name:activeRevision.name, created, modified, published, owner {id, name:person.fullName}, unit {id, name: activeRevision.name, book {id, name: activeRevision.name}}}}"}],"variable":[]}},"response":[{"id":"f967be06-3b51-4b71-a5aa-3beda8326f5c","name":"List pages owned by a user","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/books/pages?owner=1&properties={pages {id, name:activeRevision.name, created, modified, published, owner {id, name:person.fullName}, unit {id, name: activeRevision.name, book {id, name: activeRevision.name}}}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","books","pages"],"query":[{"key":"owner","value":"1"},{"key":"properties","value":"{pages {id, name:activeRevision.name, created, modified, published, owner {id, name:person.fullName}, unit {id, name: activeRevision.name, book {id, name: activeRevision.name}}}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Sep 2019 15:18:15 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1569251895.8539/159.8511"},{"key":"Content-Length","value":"4054"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"pages\": [\n            {\n                \"id\": 2,\n                \"name\": \"Test Page\",\n                \"created\": \"2019-02-26T13:36:51+00:00\",\n                \"modified\": \"2019-05-02T23:11:37+00:00\",\n                \"published\": \"2019-02-26T13:36:56+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 3,\n                    \"name\": \"Changed unit title from API 880\",\n                    \"book\": {\n                        \"id\": 1,\n                        \"name\": \"Changed book title from API 312\"\n                    }\n                }\n            },\n            {\n                \"id\": 10,\n                \"name\": \"Test Page from API 839\",\n                \"created\": \"2019-03-14T15:49:32+00:00\",\n                \"modified\": \"2019-03-29T15:30:54+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 9,\n                    \"name\": \"Test Unit from API\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 11,\n                \"name\": \"Test Page from API 564\",\n                \"created\": \"2019-03-15T12:23:18+00:00\",\n                \"modified\": \"2019-03-15T12:23:18+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 9,\n                    \"name\": \"Test Unit from API\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 12,\n                \"name\": \"Test Page from API 973\",\n                \"created\": \"2019-03-15T12:29:34+00:00\",\n                \"modified\": \"2019-03-15T12:29:34+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 9,\n                    \"name\": \"Test Unit from API\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 13,\n                \"name\": \"Test Page from API 873\",\n                \"created\": \"2019-03-15T12:29:51+00:00\",\n                \"modified\": \"2019-03-15T12:29:51+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 9,\n                    \"name\": \"Test Unit from API\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 14,\n                \"name\": \"Test Page from API 429\",\n                \"created\": \"2019-03-15T12:30:18+00:00\",\n                \"modified\": \"2019-03-15T12:30:18+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 9,\n                    \"name\": \"Test Unit from API\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 15,\n                \"name\": \"Test Page from API 694\",\n                \"created\": \"2019-03-15T12:31:13+00:00\",\n                \"modified\": \"2019-03-15T12:31:13+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 9,\n                    \"name\": \"Test Unit from API\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 16,\n                \"name\": \"Test Page from API 135\",\n                \"created\": \"2019-03-15T13:12:05+00:00\",\n                \"modified\": \"2019-03-15T13:12:05+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 9,\n                    \"name\": \"Test Unit from API\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 17,\n                \"name\": \"Test Page from API 643\",\n                \"created\": \"2019-03-15T14:57:41+00:00\",\n                \"modified\": \"2019-03-15T14:57:41+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 9,\n                    \"name\": \"Test Unit from API\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 19,\n                \"name\": \"Another Test Page from API 729\",\n                \"created\": \"2019-03-18T16:30:55+00:00\",\n                \"modified\": \"2019-06-03T13:03:08+00:00\",\n                \"published\": \"2019-06-03T13:03:08+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 18,\n                    \"name\": \"Second Unit from API 105\",\n                    \"book\": {\n                        \"id\": 7,\n                        \"name\": \"Test from API 177\"\n                    }\n                }\n            },\n            {\n                \"id\": 49,\n                \"name\": \"Test new print\",\n                \"created\": \"2019-03-21T14:11:31+00:00\",\n                \"modified\": \"2019-03-21T14:11:31+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 48,\n                    \"name\": \"Test new unit\",\n                    \"book\": {\n                        \"id\": 47,\n                        \"name\": \"Test new book\"\n                    }\n                }\n            },\n            {\n                \"id\": 208,\n                \"name\": \"Ancillary page 1\",\n                \"created\": \"2019-05-09T10:12:13+00:00\",\n                \"modified\": \"2019-05-09T10:16:14+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 207,\n                    \"name\": \"Ancillary unit\",\n                    \"book\": {\n                        \"id\": 1,\n                        \"name\": \"Changed book title from API 312\"\n                    }\n                }\n            },\n            {\n                \"id\": 209,\n                \"name\": \"Ancillary page 2\",\n                \"created\": \"2019-05-09T10:12:30+00:00\",\n                \"modified\": \"2019-05-09T10:16:29+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 207,\n                    \"name\": \"Ancillary unit\",\n                    \"book\": {\n                        \"id\": 1,\n                        \"name\": \"Changed book title from API 312\"\n                    }\n                }\n            },\n            {\n                \"id\": 210,\n                \"name\": \"Some page\",\n                \"created\": \"2019-05-09T10:15:37+00:00\",\n                \"modified\": \"2019-06-12T15:17:24+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 76,\n                    \"name\": \"Unit 1\",\n                    \"book\": {\n                        \"id\": 1,\n                        \"name\": \"Changed book title from API 312\"\n                    }\n                }\n            },\n            {\n                \"id\": 298,\n                \"name\": \"Test\",\n                \"created\": \"2019-06-20T09:22:38+00:00\",\n                \"modified\": \"2019-06-20T09:22:38+00:00\",\n                \"published\": null,\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                },\n                \"unit\": {\n                    \"id\": 48,\n                    \"name\": \"Test new unit\",\n                    \"book\": {\n                        \"id\": 47,\n                        \"name\": \"Test new book\"\n                    }\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"89165ebb-e840-4d3a-8fd4-1c381b557821"},{"name":"Show page","id":"9d6d52d5-f90c-4d87-8063-bbeac888462f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/books/page/17?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    positionInBook,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","description":"<p>Retrieve details (including area contents) for a page</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","page","17"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    positionInBook,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"ec64438b-f6fe-4383-b3b4-10dcffa32a37","name":"Show page","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/books/page/17?properties={page {id, layout: activeRevision.layout, name:activeRevision.name, created, modified, positionInBook, owner {id, name:person.fullName}, areas: activeRevision.areasContent, revisions {id, name, areasContent, active: activeRevision}}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","books","page","17"],"query":[{"key":"properties","value":"{page {id, layout: activeRevision.layout, name:activeRevision.name, created, modified, positionInBook, owner {id, name:person.fullName}, areas: activeRevision.areasContent, revisions {id, name, areasContent, active: activeRevision}}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Mar 2019 10:48:52 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553683732.7858/183.8269"},{"key":"Content-Length","value":"2144"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 17,\n            \"layout\": 1,\n            \"name\": \"Test Page from API 643\",\n            \"created\": \"2019-03-15T14:57:41+00:00\",\n            \"modified\": \"2019-03-15T14:57:41+00:00\",\n            \"positionInBook\": 9,\n            \"owner\": {\n                \"id\": 1,\n                \"name\": \"Dennis Westphal\"\n            },\n            \"areas\": {\n                \"headline\": {\n                    \"id\": 18,\n                    \"type\": \"Text\",\n                    \"category\": \"text\",\n                    \"text\": \"Headline\"\n                },\n                \"header text\": {\n                    \"id\": 19,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"text\": \"Header text\"\n                },\n                \"main headline\": {\n                    \"id\": 20,\n                    \"type\": \"Text\",\n                    \"category\": \"text\",\n                    \"text\": \"Main headline\"\n                },\n                \"main\": {\n                    \"id\": 21,\n                    \"type\": \"Collection\",\n                    \"category\": \"collection\",\n                    \"collection\": [\n                        {\n                            \"componentId\": 4,\n                            \"image\": {\n                                \"id\": 22,\n                                \"type\": \"Image\",\n                                \"category\": \"image\",\n                                \"imageId\": 1,\n                                \"imagePath\": \"/files/images/blogs/magnifying-glass.png\"\n                            },\n                            \"text\": {\n                                \"id\": 23,\n                                \"type\": \"Richtext\",\n                                \"category\": \"text\",\n                                \"text\": \"ABC\"\n                            }\n                        },\n                        {\n                            \"componentId\": 5,\n                            \"image\": {\n                                \"id\": 24,\n                                \"type\": \"Image\",\n                                \"category\": \"image\",\n                                \"imageId\": 2,\n                                \"imagePath\": \"/files/images/blogs/steps.png\"\n                            },\n                            \"text\": {\n                                \"id\": 25,\n                                \"type\": \"Richtext\",\n                                \"category\": \"text\",\n                                \"text\": \"DEF\"\n                            }\n                        },\n                        {\n                            \"componentId\": 6,\n                            \"image\": {\n                                \"id\": 26,\n                                \"type\": \"Image\",\n                                \"category\": \"image\",\n                                \"imageId\": 3,\n                                \"imagePath\": \"/files/images/blogs/bubbles.png\"\n                            },\n                            \"text\": {\n                                \"id\": 27,\n                                \"type\": \"Richtext\",\n                                \"category\": \"text\",\n                                \"text\": \"GHI\"\n                            }\n                        }\n                    ]\n                }\n            },\n            \"revisions\": [\n                {\n                    \"id\": 23,\n                    \"name\": \"Test Page from API 643\",\n                    \"areasContent\": {\n                        \"headline\": {\n                            \"id\": 18,\n                            \"type\": \"Text\",\n                            \"category\": \"text\",\n                            \"text\": \"Headline\"\n                        },\n                        \"header text\": {\n                            \"id\": 19,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"text\": \"Header text\"\n                        },\n                        \"main headline\": {\n                            \"id\": 20,\n                            \"type\": \"Text\",\n                            \"category\": \"text\",\n                            \"text\": \"Main headline\"\n                        },\n                        \"main\": {\n                            \"id\": 21,\n                            \"type\": \"Collection\",\n                            \"category\": \"collection\",\n                            \"collection\": [\n                                {\n                                    \"componentId\": 4,\n                                    \"image\": {\n                                        \"id\": 22,\n                                        \"type\": \"Image\",\n                                        \"category\": \"image\",\n                                        \"imageId\": 1,\n                                        \"imagePath\": \"/files/images/blogs/magnifying-glass.png\"\n                                    },\n                                    \"text\": {\n                                        \"id\": 23,\n                                        \"type\": \"Richtext\",\n                                        \"category\": \"text\",\n                                        \"text\": \"ABC\"\n                                    }\n                                },\n                                {\n                                    \"componentId\": 5,\n                                    \"image\": {\n                                        \"id\": 24,\n                                        \"type\": \"Image\",\n                                        \"category\": \"image\",\n                                        \"imageId\": 2,\n                                        \"imagePath\": \"/files/images/blogs/steps.png\"\n                                    },\n                                    \"text\": {\n                                        \"id\": 25,\n                                        \"type\": \"Richtext\",\n                                        \"category\": \"text\",\n                                        \"text\": \"DEF\"\n                                    }\n                                },\n                                {\n                                    \"componentId\": 6,\n                                    \"image\": {\n                                        \"id\": 26,\n                                        \"type\": \"Image\",\n                                        \"category\": \"image\",\n                                        \"imageId\": 3,\n                                        \"imagePath\": \"/files/images/blogs/bubbles.png\"\n                                    },\n                                    \"text\": {\n                                        \"id\": 27,\n                                        \"type\": \"Richtext\",\n                                        \"category\": \"text\",\n                                        \"text\": \"GHI\"\n                                    }\n                                }\n                            ]\n                        }\n                    },\n                    \"active\": true\n                }\n            ]\n        }\n    }\n}"},{"id":"54c1742e-b896-4810-866c-ae9a027945c5","name":"Show page with comments","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    positionInBook,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    },\n    adminComments {\n      id,\n      text,\n      name: createdBy.person.fullName,\n      created\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/24367"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Feb 2020 15:28:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2036"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1580916507.1718/512.7561"},{"key":"Expires","value":"Fri, 07 Feb 2020 15:28:26 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 24367,\n            \"layout\": 15,\n            \"name\": \"Test small page\",\n            \"created\": \"2020-01-14T15:58:46+00:00\",\n            \"modified\": \"2020-01-14T15:58:46+00:00\",\n            \"positionInBook\": 1,\n            \"hateoasLinks\": [\n                {\n                    \"rel\": \"show\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"GET\"\n                },\n                {\n                    \"rel\": \"edit\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"move\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"delete\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"DELETE\"\n                },\n                {\n                    \"rel\": \"publish\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                }\n            ],\n            \"owner\": {\n                \"id\": 1,\n                \"name\": \"Dennis Westphal\"\n            },\n            \"areas\": {\n                \"top image\": {\n                    \"id\": null,\n                    \"type\": \"Image\",\n                    \"category\": \"image\",\n                    \"content\": null\n                },\n                \"unitSubtext\": {\n                    \"id\": null,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"content\": null\n                },\n                \"subHeading\": {\n                    \"id\": null,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"content\": null\n                },\n                \"main\": {\n                    \"id\": 18092961,\n                    \"type\": \"Collection\",\n                    \"category\": \"collection\",\n                    \"collection\": [\n                        {\n                            \"componentId\": 647334,\n                            \"componentName\": null,\n                            \"componentLayout\": 13,\n                            \"componentCategories\": [],\n                            \"text\": {\n                                \"id\": 18092962,\n                                \"type\": \"Richtext\",\n                                \"category\": \"text\",\n                                \"editor\": \"richtext\",\n                                \"text\": \"<p>Content</p>\"\n                            },\n                            \"margin bottom\": {\n                                \"id\": 1668726,\n                                \"type\": \"Number\",\n                                \"category\": \"text\",\n                                \"editor\": \"number\",\n                                \"text\": \"3\"\n                            }\n                        }\n                    ]\n                }\n            },\n            \"revisions\": [\n                {\n                    \"id\": 65371,\n                    \"name\": \"Test small page\",\n                    \"areasContent\": {\n                        \"top image\": {\n                            \"id\": null,\n                            \"type\": \"Image\",\n                            \"category\": \"image\",\n                            \"content\": null\n                        },\n                        \"unitSubtext\": {\n                            \"id\": null,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"content\": null\n                        },\n                        \"subHeading\": {\n                            \"id\": null,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"content\": null\n                        },\n                        \"main\": {\n                            \"id\": 18092961,\n                            \"type\": \"Collection\",\n                            \"category\": \"collection\",\n                            \"collection\": [\n                                {\n                                    \"componentId\": 647334,\n                                    \"componentName\": null,\n                                    \"componentLayout\": 13,\n                                    \"componentCategories\": [],\n                                    \"text\": {\n                                        \"id\": 18092962,\n                                        \"type\": \"Richtext\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"richtext\",\n                                        \"text\": \"<p>Content</p>\"\n                                    },\n                                    \"margin bottom\": {\n                                        \"id\": 1668726,\n                                        \"type\": \"Number\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"number\",\n                                        \"text\": \"3\"\n                                    }\n                                }\n                            ]\n                        }\n                    },\n                    \"active\": true\n                }\n            ],\n            \"adminComments\": [\n                {\n                    \"id\": 5,\n                    \"text\": \"This is a test comment\",\n                    \"name\": \"Dennis Westphal\",\n                    \"created\": \"2020-02-05T15:27:04+00:00\"\n                }\n            ]\n        }\n    }\n}"},{"id":"8d03693f-b347-43f1-9151-ab6baee11642","name":"Show page with global components","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    positionInBook,\n    hateoasLinks,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions,\n    adminComments {\n      id,\n      text,\n      name: createdBy.person.fullName,\n      created\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/24367"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Feb 2020 15:38:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1895"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1581349129.9595/531.5051"},{"key":"Expires","value":"Wed, 12 Feb 2020 15:38:49 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 24367,\n            \"layout\": 15,\n            \"name\": \"Test changed page from API 82\",\n            \"created\": \"2020-01-14T15:58:46+00:00\",\n            \"modified\": \"2020-02-10T15:37:09+00:00\",\n            \"positionInBook\": 1,\n            \"hateoasLinks\": [\n                {\n                    \"rel\": \"show\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"GET\"\n                },\n                {\n                    \"rel\": \"edit\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"move\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"delete\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"DELETE\"\n                },\n                {\n                    \"rel\": \"publish\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                }\n            ],\n            \"owner\": {\n                \"id\": 1,\n                \"name\": \"Dennis Westphal\"\n            },\n            \"areas\": {\n                \"top image\": {\n                    \"id\": null,\n                    \"type\": \"Image\",\n                    \"category\": \"image\",\n                    \"content\": null\n                },\n                \"unitSubtext\": {\n                    \"id\": null,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"content\": null\n                },\n                \"subHeading\": {\n                    \"id\": null,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"content\": null\n                },\n                \"main\": {\n                    \"id\": 20065436,\n                    \"type\": \"Collection\",\n                    \"category\": \"collection\",\n                    \"collection\": [\n                        {\n                            \"componentId\": 673386,\n                            \"componentName\": null,\n                            \"componentLayout\": 13,\n                            \"componentGlobal\": false,\n                            \"componentCategories\": [],\n                            \"text\": {\n                                \"id\": 20065432,\n                                \"type\": \"Richtext\",\n                                \"category\": \"text\",\n                                \"editor\": \"richtext\",\n                                \"text\": \"<p>Content</p>\"\n                            },\n                            \"margin bottom\": {\n                                \"id\": 1668726,\n                                \"type\": \"Number\",\n                                \"category\": \"text\",\n                                \"editor\": \"number\",\n                                \"text\": \"3\"\n                            }\n                        },\n                        {\n                            \"componentId\": 2,\n                            \"componentName\": \"Test global component\",\n                            \"componentLayout\": 13,\n                            \"componentGlobal\": true,\n                            \"componentCategories\": [\n                                {\n                                    \"id\": 130,\n                                    \"name\": \"Texas Science\"\n                                }\n                            ],\n                            \"text\": {\n                                \"id\": 20065429,\n                                \"type\": \"Richtext\",\n                                \"category\": \"text\",\n                                \"editor\": \"richtext\",\n                                \"text\": \"<p>Test changed</p>\"\n                            },\n                            \"margin bottom\": {\n                                \"id\": 1668726,\n                                \"type\": \"Number\",\n                                \"category\": \"text\",\n                                \"editor\": \"number\",\n                                \"text\": \"3\"\n                            }\n                        }\n                    ]\n                },\n                \"component\": {\n                    \"id\": null,\n                    \"type\": \"Component\",\n                    \"category\": \"component\",\n                    \"content\": null\n                }\n            },\n            \"revisions\": [\n                65371,\n                91708,\n                91709,\n                91710,\n                91711,\n                91712,\n                91713\n            ],\n            \"adminComments\": [\n                {\n                    \"id\": 5,\n                    \"text\": \"This is a test comment\",\n                    \"name\": \"Dennis Westphal\",\n                    \"created\": \"2020-02-05T15:27:04+00:00\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"9d6d52d5-f90c-4d87-8063-bbeac888462f"},{"name":"Add page","id":"38a7b2cd-08dc-4951-a02d-b2a9558f672f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"unit\": 80194,\n    \"revisions\": {\n        \"name\": \"Extension pg 2\",\n        \"slug\": \"someslug1234567890\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/books/page","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","page"],"host":["{{domain}}"],"query":[{"disabled":true,"key":"properties","value":"{ page { id, title: lastRevision.name, createdAt: created, updatedAt: modified, publishedAt: published, owner: { id, name: person.fullName } , categories: { id, name } , permissions: hateoasLinks , position, layoutId: lastRevision.layout, unitId: unit , slug, fullPath, unit: { id, title: name, slug, book: { id, slug, title: name } }, lastRevision: { id, title: name, createdAt: created, updatedAt: modified, modifiedBy { id, name: person.fullName }, areas: areasContent, layout { id, title: name, controller, previewImage: image.path, areas { id, name, label, type { id, name } } } } , revisions } }"}],"variable":[]}},"response":[{"id":"f14a750e-3276-4701-b51e-10eedce32ae9","name":"Add Page with components and areas","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"unit\": 9,\n\t\"revisions\": {\n\t\t\"name\": \"Test Page from API 819\",\n\t\t\"layout\": 1,\n\t\t\"areas\": {\n\t\t\t\"headline\": \"Headline\",\n\t\t\t\"header text\": \"Header text\",\n\t\t\t\"main headline\": \"Main headline\",\n\t\t\t\"main\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"New component from API 467\",\n\t\t\t\t\t\"layout\": 2,\n\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\"image\": 1,\n\t\t\t\t\t\t\"text\": \"ABC\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"New component from API 507\",\n\t\t\t\t\t\"layout\": 2,\n\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\"image\": 2,\n\t\t\t\t\t\t\"text\": \"DEF\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"New component from API 860\",\n\t\t\t\t\t\"layout\": 2,\n\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\"image\": 3,\n\t\t\t\t\t\t\"text\": \"GHI\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/page"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Mar 2019 14:57:41 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1552661862.2785/952.4879"},{"key":"Content-Length","value":"379"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"unit\": 9,\n            \"id\": 17,\n            \"slug\": \"test-page-from-api-643\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 8,\n            \"created\": \"2019-03-15T14:57:41+00:00\",\n            \"modified\": \"2019-03-15T14:57:41+00:00\",\n            \"deleted\": false,\n            \"published\": false,\n            \"site\": 1,\n            \"activeRevision\": 23,\n            \"revisions\": [\n                23\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"owner\": 1\n        }\n    },\n    \"message\": \"The Page has been added successfully.\"\n}"}],"_postman_id":"38a7b2cd-08dc-4951-a02d-b2a9558f672f"},{"name":"Edit a page","id":"a70bec89-4fb3-4932-b925-a0790e4abc34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test changed page from API 890\",\n\t\t\"layout\": 15,\n\t\t\"areas\": {\n\t\t\t\"main\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": 673386\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": 2,\n\t\t\t\t\t\"global\": true\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/24367","description":"<p>Edit a page with components, creating a new page revision.</p>\n<p>The example shows the different ways components in the collection contained in the \"main\" layout area can be changed:</p>\n<ol>\n<li>The component with id 4 is not changed; this is why just the ID is provided =&gt; the old content is used</li>\n<li>The component with id 5 is changed =&gt; Content in ALL revisions and locations where the component is used is changed</li>\n<li>The id is omitted for the last component =&gt; A new component is created</li>\n</ol>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","page","24367"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"df5e6954-a0fa-42a4-9a37-d1c30221a612","name":"Edit a page","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test changed page from API 785\",\n\t\t\"layout\": 1,\n\t\t\"areas\": {\n\t\t\t\"headline\": \"Headline\",\n\t\t\t\"header text\": \"Header text\",\n\t\t\t\"main headline\": \"Main headline\",\n\t\t\t\"main\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": 4\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": 5,\n\t\t\t\t\t\"name\": \"Changed component from API 774\",\n\t\t\t\t\t\"layout\": 2,\n\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\"image\": 2,\n\t\t\t\t\t\t\"text\": \"DEF CHANGED\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"New (changed) component from API 24\",\n\t\t\t\t\t\"layout\": 2,\n\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\"image\": 2,\n\t\t\t\t\t\t\"text\": \"GHI NEW\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}"},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/books/page/17?properties={page {id, newRevision: lastRevision.id}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","books","page","17"],"query":[{"key":"properties","value":"{page {id, newRevision: lastRevision.id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Apr 2019 10:50:41 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1554893442.0838/475.8220"},{"key":"Content-Length","value":"114"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 17,\n            \"newRevision\": 432\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"},{"id":"b3da4e30-4b64-4344-beb5-32697baab399","name":"Use a global component in a collection","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test changed page from API 674\",\n\t\t\"layout\": 15,\n\t\t\"areas\": {\n\t\t\t\"main\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": 673386\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": 2,\n\t\t\t\t\t\"global\": true\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/24367"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Feb 2020 15:37:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1428"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1581349029.995/703.0261"},{"key":"Expires","value":"Wed, 12 Feb 2020 15:37:09 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"parent\": 24366,\n            \"positionInBook\": 1,\n            \"fullPath\": \"/authoring-books/test-small-book/test-small-unit/test-small-page\",\n            \"unit\": 24366,\n            \"customFieldValues\": [],\n            \"customFields\": [],\n            \"lastRevision\": 91713,\n            \"name\": \"Test changed page from API 82\",\n            \"fullSlug\": \"test-small-book/test-small-unit/test-small-page\",\n            \"originalPath\": \"/test-small-book/test-small-unit/test-small-page\",\n            \"imageTargetFolderPath\": \"images/books/page/24367\",\n            \"imageSelectorStartPath\": \"images/books/page/24367\",\n            \"id\": 24367,\n            \"slug\": \"test-small-page\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 1,\n            \"created\": \"2020-01-14T15:58:46+00:00\",\n            \"modified\": \"2020-02-10T15:37:09+00:00\",\n            \"published\": false,\n            \"activeRevision\": 91713,\n            \"language\": 47,\n            \"revisions\": [\n                65371,\n                91708,\n                91709,\n                91710,\n                91711,\n                91712,\n                91713\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"adminComments\": [\n                5\n            ],\n            \"owner\": 1,\n            \"hateoasLinks\": [\n                {\n                    \"rel\": \"show\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"GET\"\n                },\n                {\n                    \"rel\": \"edit\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"move\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"delete\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"DELETE\"\n                },\n                {\n                    \"rel\": \"publish\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                }\n            ],\n            \"editUrl\": \"/cdna-api/books/page/24367\",\n            \"moveUrl\": \"/cdna-api/books/page/24367\",\n            \"deleteUrl\": \"/cdna-api/books/page/24367\",\n            \"publishUrl\": \"/cdna-api/books/page/24367\"\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"},{"id":"06979a46-c18b-4c79-bb55-075c82c144b1","name":"Component within component content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test changed page from API 282\",\n\t\t\"layout\": 15,\n\t\t\"areas\": {\n\t\t\t\"main\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": 673386\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": 2,\n\t\t\t\t\t\"global\": true,\n\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\"text\": \"updated from api\",\n\t\t\t\t\t\t\"margin bottom\": 4\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"layout\": 14,\n\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\"headline\": \"Added from API\",\n\t\t\t\t\t\t\"component\": {\n\t\t\t\t\t\t\t\"layout\": 13,\n\t\t\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\t\t\"text\": \"Component in component text\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/24367"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Mar 2020 12:27:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1543"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1583152027.555/840.9910"},{"key":"Expires","value":"Wed, 04 Mar 2020 12:27:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"parent\": 24366,\n            \"positionInBook\": 1,\n            \"fullPath\": \"/authoring-books/test-small-book/test-small-unit/test-small-page\",\n            \"unit\": 24366,\n            \"customFieldValues\": [],\n            \"customFields\": [],\n            \"lastRevision\": 91745,\n            \"name\": \"Test changed page from API 539\",\n            \"fullSlug\": \"test-small-book/test-small-unit/test-small-page\",\n            \"originalPath\": \"/test-small-book/test-small-unit/test-small-page\",\n            \"imageTargetFolderPath\": \"images/books/page/24367\",\n            \"imageSelectorStartPath\": \"images/books/page/24367\",\n            \"id\": 24367,\n            \"slug\": \"test-small-page\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 1,\n            \"created\": \"2020-01-14T15:58:46+00:00\",\n            \"modified\": \"2020-03-02T12:27:07+00:00\",\n            \"published\": false,\n            \"activeRevision\": 91745,\n            \"language\": 47,\n            \"revisions\": [\n                65371,\n                91708,\n                91709,\n                91710,\n                91711,\n                91712,\n                91713,\n                91721,\n                91722,\n                91723,\n                91724,\n                91725,\n                91726,\n                91727,\n                91728,\n                91729,\n                91730,\n                91731,\n                91732,\n                91733,\n                91734,\n                91735,\n                91736,\n                91737,\n                91738,\n                91745\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"adminComments\": [\n                5\n            ],\n            \"owner\": 1,\n            \"hateoasLinks\": [\n                {\n                    \"rel\": \"show\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"GET\"\n                },\n                {\n                    \"rel\": \"edit\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"move\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"delete\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"DELETE\"\n                },\n                {\n                    \"rel\": \"publish\",\n                    \"href\": \"/cdna-api/books/page/24367\",\n                    \"verb\": \"PUT\"\n                }\n            ],\n            \"editUrl\": \"/cdna-api/books/page/24367\",\n            \"moveUrl\": \"/cdna-api/books/page/24367\",\n            \"deleteUrl\": \"/cdna-api/books/page/24367\",\n            \"publishUrl\": \"/cdna-api/books/page/24367\"\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"},{"id":"6e290bd6-bee8-4a14-8c06-3d638d84a5c9","name":"Component + Collection in Component","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test changed page from API 511\",\n\t\t\"layout\": 15,\n\t\t\"areas\": {\n\t\t\t\"main\": [\n\t\t\t\t{\n\t\t\t\t\t\"layout\": 13,\n\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\"text\": \"Test text\",\n\t\t\t\t\t\t\"margin bottom\": 2,\n\t\t\t\t\t\t\"component in component\": {\n\t\t\t\t\t\t\t\"layout\": 14,\n\t\t\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\t\t\"question\": \"Component in component question\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"collection in component\": [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"layout\": 14,\n\t\t\t\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\t\t\t\"question\": \"Component 1 in collection in component question\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\"layout\": 14,\n\t\t\t\t\t\t\t\t\"areas\": {\n\t\t\t\t\t\t\t\t\t\"question\": \"Component 2 in collection in component question\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/1216"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 23 Mar 2020 10:38:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1385"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.2.18"},{"key":"X-Powered-By","value":"PHP/7.2.18"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1584959896.0407/796.6611"},{"key":"Expires","value":"Wed, 25 Mar 2020 10:38:15 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"parent\": 40,\n            \"positionInBook\": 2,\n            \"fullPath\": \"/authoring-books/test-book/test-unit/test-by-dennis\",\n            \"unit\": 40,\n            \"customFieldValues\": [],\n            \"customFields\": [],\n            \"lastRevision\": 152620,\n            \"name\": \"Test changed page from API 839\",\n            \"fullSlug\": \"test-book/test-unit/test-by-dennis\",\n            \"originalPath\": \"/test-book/test-unit/test-by-dennis\",\n            \"imageTargetFolderPath\": \"images/books/page/1216\",\n            \"imageSelectorStartPath\": \"images/books/page/1216\",\n            \"id\": 1216,\n            \"slug\": \"test-by-dennis\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 2,\n            \"created\": \"2019-07-24T10:10:06+00:00\",\n            \"modified\": \"2020-03-23T10:38:15+00:00\",\n            \"published\": false,\n            \"activeRevision\": 152620,\n            \"language\": 47,\n            \"revisions\": [\n                3459,\n                3460,\n                42086,\n                47150,\n                51365,\n                51384,\n                105109,\n                145471,\n                152620\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"adminComments\": [],\n            \"owner\": 1,\n            \"hateoasLinks\": [\n                {\n                    \"rel\": \"show\",\n                    \"href\": \"/cdna-api/books/page/1216\",\n                    \"verb\": \"GET\"\n                },\n                {\n                    \"rel\": \"edit\",\n                    \"href\": \"/cdna-api/books/page/1216\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"move\",\n                    \"href\": \"/cdna-api/books/page/1216\",\n                    \"verb\": \"PUT\"\n                },\n                {\n                    \"rel\": \"delete\",\n                    \"href\": \"/cdna-api/books/page/1216\",\n                    \"verb\": \"DELETE\"\n                },\n                {\n                    \"rel\": \"publish\",\n                    \"href\": \"/cdna-api/books/page/1216\",\n                    \"verb\": \"PUT\"\n                }\n            ],\n            \"editUrl\": \"/cdna-api/books/page/1216\",\n            \"moveUrl\": \"/cdna-api/books/page/1216\",\n            \"deleteUrl\": \"/cdna-api/books/page/1216\",\n            \"publishUrl\": \"/cdna-api/books/page/1216\"\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"a70bec89-4fb3-4932-b925-a0790e4abc34"},{"name":"Reorder page components","id":"701649af-7ae3-4f41-972b-6f8c1be8659c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test reorder page components\",\n\t\t\"layout\": 1,\n\t\t\"areas\": {\n\t\t\t\"headline\": \"Headline\",\n\t\t\t\"header text\": \"Header text\",\n\t\t\t\"main headline\": \"Main headline\",\n\t\t\t\"main\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": 6\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": 4\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": 5\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/17","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","page","17"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"04615936-abea-4f35-ae0e-7a793fe00ff9","name":"Reorder page components","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test reorder page components\",\n\t\t\"layout\": 1,\n\t\t\"areas\": {\n\t\t\t\"headline\": \"Headline\",\n\t\t\t\"header text\": \"Header text\",\n\t\t\t\"main headline\": \"Main headline\",\n\t\t\t\"main\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": 6\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": 4\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": 5\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/17"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Mar 2019 11:01:12 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553684475.1433/2181.3030"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"701649af-7ae3-4f41-972b-6f8c1be8659c"},{"name":"Change page active revision Copy","id":"6e3254a2-66cc-4f9c-996e-21c6cb134e98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"activeRevision\": 15\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","page","8"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9643c7cc-6079-4584-8306-2d1c91f9843f","name":"Edit a page","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed page title from API 770\"\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:47:59 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553536079.5929/416.8839"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"6e3254a2-66cc-4f9c-996e-21c6cb134e98"},{"name":"Delete a page","id":"fa0b664e-ad7c-47e4-ab2a-ec7281368045","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/51","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","books","page","51"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c8b4feb8-3398-46cb-b9ab-8e46b1aa5975","name":"Delete a page","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/books/page/51"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 Mar 2019 15:24:11 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1553181852.0441/248.0509"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Page has successfully been deleted.\"\n}"}],"_postman_id":"fa0b664e-ad7c-47e4-ab2a-ec7281368045"}],"id":"bb8ed8b9-c4ca-499f-96cd-a0b610487014","_postman_id":"bb8ed8b9-c4ca-499f-96cd-a0b610487014","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"a14b5dea-ba13-4901-bf56-c98a77352cb3","event":[{"listen":"prerequest","script":{"id":"8fee9b38-0631-4955-8037-bbbeae77d313","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9d88ad9a-d2bf-4db6-96bb-7cda1e9934a5","type":"text/javascript","exec":[""]}}],"_postman_id":"a14b5dea-ba13-4901-bf56-c98a77352cb3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Faq","item":[{"name":"Pages","item":[{"name":"List pages","id":"7a951e74-c42b-4afa-bc5b-a257f44c645a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/pages?properties={\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","description":"<p>List of FAQ pages</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","pages"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"a4895c1c-c8e9-4b9c-a0d4-027f4184e5e4","name":"List pages","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/pages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:24:49 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617489.7795/137.5041"},{"key":"Content-Length","value":"1068"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"result\": \"success\",\r\n    \"data\": {\r\n        \"pages\": [\r\n            {\r\n                \"id\": 1,\r\n                \"name\": \"Administrating\",\r\n                \"created\": \"2020-11-17T14:08:35+02:00\",\r\n                \"modified\": \"2020-11-17T14:08:35+02:00\",\r\n                \"owner\": {\r\n                    \"id\": 34,\r\n                    \"name\": \"Misha Hadalin\"\r\n                }\r\n            },\r\n            {\r\n                \"id\": 2,\r\n                \"name\": \"New entity creation\",\r\n                \"created\": \"2020-11-17T14:09:57+02:00\",\r\n                \"modified\": \"2020-11-17T14:10:24+02:00\",\r\n                \"owner\": {\r\n                    \"id\": 34,\r\n                    \"name\": \"Misha Hadalin\"\r\n                }\r\n            },\r\n            {\r\n                \"id\": 3,\r\n                \"name\": \"Authorization\",\r\n                \"created\": \"2020-11-17T14:31:16+02:00\",\r\n                \"modified\": \"2020-11-17T14:31:16+02:00\",\r\n                \"owner\": {\r\n                    \"id\": 34,\r\n                    \"name\": \"Misha Hadalin\"\r\n                }\r\n            }\r\n        ]\r\n    }\r\n}"}],"_postman_id":"7a951e74-c42b-4afa-bc5b-a257f44c645a"},{"name":"List root pages","id":"3cd0676f-b0a2-4db1-a072-92bab43b8324","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/pages?parent=NULL&properties={\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","pages"],"host":["{{domain}}"],"query":[{"key":"parent","value":"NULL"},{"key":"properties","value":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"d7e324f2-326e-4f4d-9c28-a9d7b4f1924b","name":"List root pages","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/pages/pages?parent=NULL","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","pages","pages"],"query":[{"key":"parent","value":"NULL"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:25:52 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617552.7214/140.4369"},{"key":"Content-Length","value":"190"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"pages\": [\n            {\n                \"id\": 1,\n                \"name\": \"Administrating\",\n                \"created\": \"2020-11-17T14:08:35+02:00\",\n                \"modified\": \"2020-11-17T14:08:35+02:00\",\n                \"owner\": {\n                    \"id\": 34,\n                    \"name\": \"Misha Hadalin\"\n                }\n            },\n            {\n                \"id\": 3,\n                \"name\": \"Authorization\",\n                \"created\": \"2020-11-17T14:31:16+02:00\",\n                \"modified\": \"2020-11-17T14:31:16+02:00\",\n                \"owner\": {\n                    \"id\": 34,\n                    \"name\": \"Misha Hadalin\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"3cd0676f-b0a2-4db1-a072-92bab43b8324"},{"name":"List children pages","id":"4093ef63-8c60-4233-bfec-ea169d5295d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/faq/pages?parent=1&properties={\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","pages"],"host":["{{domain}}"],"query":[{"key":"parent","value":"1"},{"key":"properties","value":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"44cd5157-485b-470c-b148-03f14a91cb75","name":"List children pages","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/pages/pages?parent=1","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","pages","pages"],"query":[{"key":"parent","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:26:05 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617565.6006/135.6010"},{"key":"Content-Length","value":"785"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"pages\": [\n            {\n                \"id\": 2,\n                \"name\": \"New entity creation\",\n                \"created\": \"2020-11-17T14:09:57+02:00\",\n                \"modified\": \"2020-11-17T14:10:24+02:00\",\n                \"owner\": {\n                    \"id\": 34,\n                    \"name\": \"Misha Hadalin\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"4093ef63-8c60-4233-bfec-ea169d5295d9"},{"name":"Show page","id":"c82d362f-8945-499b-9303-d304d69ed406","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/page/1?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","description":"<p>Retrieve details for a page</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","page","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"e8be5523-30c0-4787-bf20-56fe35f4fc80","name":"Show page","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:25:02 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617503.1096/208.5829"},{"key":"Content-Length","value":"2761"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 1,\n            \"layout\": 20,\n            \"name\": \"Administrating\",\n            \"created\": \"2020-11-17T14:08:35+02:00\",\n            \"modified\": \"2020-11-17T14:08:35+02:00\",\n            \"owner\": {\n                \"id\": 34,\n                \"name\": \"Misha Hadalin\"\n            },\n            \"areas\": {\n                \"content\": {\n                    \"id\": 13945,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"editor\": \"richtext\",\n                    \"text\": \"<p><strong>All</strong> <em>administrating </em>questions <u>you</u>&nbsp;<s>want</s> <span style=\\\"color: rgb(184, 49, 47);\\\">need</span> to <span style=\\\"font-size: 36px;\\\">know</span>.&nbsp;</p>\"\n                }\n            },\n            \"revisions\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Administrating\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13945,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p><strong>All</strong> <em>administrating </em>questions <u>you</u>&nbsp;<s>want</s> <span style=\\\"color: rgb(184, 49, 47);\\\">need</span> to <span style=\\\"font-size: 36px;\\\">know</span>.&nbsp;</p>\"\n                        }\n                    },\n                    \"active\": true\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"c82d362f-8945-499b-9303-d304d69ed406"},{"name":"Show page by url","id":"267502bb-4638-4099-84c4-8c2fe5fe7d1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/page/authorization?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","description":"<p>Retrieve details for a page</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","page","authorization"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"9087c45e-6187-477a-b612-349a56f777f3","name":"Show page by ulr (parent page, slug)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/pages/page/inspiration?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","pages","page","inspiration"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:15:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"7059"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589213734.6641/499.0921"},{"key":"Expires","value":"Wed, 13 May 2020 16:15:34 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 3,\n            \"layout\": 20,\n            \"name\": \"Authorization\",\n            \"created\": \"2020-11-17T14:31:16+02:00\",\n            \"modified\": \"2020-11-17T14:31:16+02:00\",\n            \"owner\": {\n                \"id\": 34,\n                \"name\": \"Misha Hadalin\"\n            },\n            \"areas\": {\n                \"content\": {\n                    \"id\": 13954,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"editor\": \"richtext\",\n                    \"text\": \"<p>Whole information about how to log in, sing up, logout and other related topics</p>\"\n                }\n            },\n            \"revisions\": [\n                {\n                    \"id\": 10,\n                    \"name\": \"Authorization\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13954,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Whole information about how to log in, sing up, logout and other related topics</p>\"\n                        }\n                    },\n                    \"active\": true\n                }\n            ]\n        }\n    }\n}"},{"id":"35afbf4e-d6b8-43fe-90e0-245e4ae52714","name":"Show page by url (child page, full slug)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/faq/page/administrating/new-entity-creation?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","faq","page","administrating","new-entity-creation"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Nov 2020 12:42:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"678"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1605616927.401/453.964"},{"key":"Expires","value":"Thu, 19 Nov 2020 12:42:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 2,\n            \"layout\": 20,\n            \"name\": \"New entity creation\",\n            \"created\": \"2020-11-17T14:09:57+02:00\",\n            \"modified\": \"2020-11-17T14:10:24+02:00\",\n            \"owner\": {\n                \"id\": 34,\n                \"name\": \"Misha Hadalin\"\n            },\n            \"areas\": {\n                \"content\": {\n                    \"id\": 13946,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"editor\": \"richtext\",\n                    \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                }\n            },\n            \"revisions\": [\n                {\n                    \"id\": 2,\n                    \"name\": \"New entity creation\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13946,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                        }\n                    },\n                    \"active\": true\n                },\n                {\n                    \"id\": 3,\n                    \"name\": \"New entity creation\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13947,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"New entity creation\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13948,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"New entity creation\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13949,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"New entity creation\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13950,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"New entity creation\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13951,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"New entity creation\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13952,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"New entity creation\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13953,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p>Here you can learn how to create different entities in our system.</p>\"\n                        }\n                    },\n                    \"active\": false\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"267502bb-4638-4099-84c4-8c2fe5fe7d1d"},{"name":"Add page","id":"c443827f-3649-42bf-92d5-e4edbcd9ee78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"language\": 47,\n\t\"revisions\": {\n\t\t\"name\": \"Test Page from API 262\",\n\t\t\"layout\": 20,\n\t\t\"areas\": {\n\t\t\t\"content\": \"Main page text 487\"\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/faq/page","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","page"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ed100591-681f-43a6-997d-402e8ee83b3d","name":"Add page","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"parent\": 1,\n\t\"revisions\": {\n\t\t\"name\": \"Test Page from API 783\",\n\t\t\"layout\": 2,\n\t\t\"areas\": {\n\t\t\t\"main text\": \"Main text\",\n\t\t\t\"side image\": 1\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:46:13 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553535974.0132/480.1619"},{"key":"Content-Length","value":"542"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"name\": \"Test Page from API 655\",\n            \"originalPath\": \"/faq/page/test-page-from-api-655\",\n            \"fullSlug\": \"test-page-from-api-655\",\n            \"fullPath\": \"/faq/page/test-page-from-api-655\",\n            \"id\": 6,\n            \"slug\": \"test-page-from-api-655\",\n            \"created\": \"2020-11-17T14:49:04+02:00\",\n            \"modified\": \"2020-11-17T14:49:04+02:00\",\n            \"published\": false,\n            \"customUrl\": null,\n            \"activeRevision\": 15,\n            \"lastRevision\": 15,\n            \"parent\": null,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"language\": 47,\n            \"seoSettings\": null,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                15\n            ],\n            \"children\": []\n        }\n    },\n    \"message\": \"The Page has been added successfully.\"\n}"}],"_postman_id":"c443827f-3649-42bf-92d5-e4edbcd9ee78"},{"name":"Edit a page","id":"388eadb5-2b3c-4aa2-8455-a7c355359207","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed test Page from API 949\",\n\t\t\"layout\": 20,\n\t\t\"areas\": {\n\t\t\t\"content\": \"Changed main page text 307\"\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/page/6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","page","6"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3dd6ac0a-dba0-442e-9cd0-92a52f4b22a8","name":"Edit a page","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed page title from API 878\",\n\t\t\"layout\": 2,\n\t\t\"areas\": {\n\t\t\t\"main text\": \"Main text\",\n\t\t\t\"side image\": 2\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 11:42:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553600538.2729/283.9229"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"name\": \"Test Page from API 655\",\n            \"originalPath\": \"/faq/page/test-page-from-api-655\",\n            \"fullSlug\": \"test-page-from-api-655\",\n            \"fullPath\": \"/faq/page/test-page-from-api-655\",\n            \"id\": 6,\n            \"slug\": \"test-page-from-api-655\",\n            \"created\": \"2020-11-17T14:49:04+02:00\",\n            \"modified\": \"2020-11-17T14:49:04+02:00\",\n            \"published\": false,\n            \"customUrl\": null,\n            \"activeRevision\": 15,\n            \"lastRevision\": 17,\n            \"parent\": null,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"language\": 47,\n            \"seoSettings\": null,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                15,\n                16,\n                17\n            ],\n            \"children\": []\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"388eadb5-2b3c-4aa2-8455-a7c355359207"},{"name":"Change page active revision","id":"e03ac7bb-36fd-459f-ac4e-4465afc2ffeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"activeRevision\": 16\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/page/6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","page","6"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"ece35414-d91a-4d16-8b19-8b7b7b83eecc","name":"Change page active revision (edit a page)","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"activeRevision\": 16\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/page/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Nov 2020 12:52:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"634"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1605617567.315/517.997"},{"key":"Expires","value":"Thu, 19 Nov 2020 12:52:46 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"name\": \"Changed test Page from API 944\",\n            \"originalPath\": \"/faq/page/test-page-from-api-655\",\n            \"fullSlug\": \"test-page-from-api-655\",\n            \"fullPath\": \"/faq/page/test-page-from-api-655\",\n            \"id\": 6,\n            \"slug\": \"test-page-from-api-655\",\n            \"created\": \"2020-11-17T14:49:04+02:00\",\n            \"modified\": \"2020-11-17T14:52:47+02:00\",\n            \"published\": false,\n            \"customUrl\": null,\n            \"activeRevision\": 16,\n            \"lastRevision\": 17,\n            \"parent\": null,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"language\": 47,\n            \"seoSettings\": null,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                15,\n                16,\n                17\n            ],\n            \"children\": []\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"e03ac7bb-36fd-459f-ac4e-4465afc2ffeb"},{"name":"Delete a page","id":"98fdab60-bfcb-494b-819a-d385a99cd5d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/faq/page/7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","page","7"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"63715e44-a81b-43b3-bc13-d8a7de2dea5f","name":"Delete a page","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:48:44 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553536125.0593/355.3410"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"name\": \"Test Page from API 182\",\n            \"originalPath\": \"/faq/page/test-page-from-api-182\",\n            \"fullSlug\": \"test-page-from-api-182\",\n            \"fullPath\": \"/faq/page/test-page-from-api-182\",\n            \"id\": 7,\n            \"slug\": \"test-page-from-api-182\",\n            \"created\": \"2020-11-17T14:53:25+02:00\",\n            \"modified\": \"2020-11-17T14:53:25+02:00\",\n            \"published\": false,\n            \"customUrl\": null,\n            \"activeRevision\": 18,\n            \"lastRevision\": 18,\n            \"parent\": null,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"language\": 47,\n            \"seoSettings\": null,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                18\n            ],\n            \"children\": []\n        }\n    },\n    \"message\": \"The Page has been successfully deleted.\"\n}"}],"_postman_id":"98fdab60-bfcb-494b-819a-d385a99cd5d9"},{"name":"Duplicate page","id":"896725cd-703c-4287-baa7-419defc18a38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/duplicate-page/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","duplicate-page","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"5ea20317-66ba-4ce6-8161-61e6a6431ea2","name":"Page is not found","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/duplicate-page/1"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"No data was returned by the Faq\\\\Controllers\\\\Api\\\\Pages\\\\Duplicate controller for the url \\\"/cdna-api/faq/duplicate-page/51\\\" via POST\"\n}"},{"id":"bf0a95fc-56b3-4a06-88b9-e8bde2f85f8c","name":"Success","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/duplicate-page/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"name\": \"Copy of Page\",\n            \"originalPath\": \"/faq/page/page-copy-1\",\n            \"fullSlug\": \"page-copy-1\",\n            \"fullPath\": \"/faq/page/page-copy-1\",\n            \"id\": 20,\n            \"slug\": \"page-copy-1\",\n            \"created\": \"2021-06-10T11:30:20+00:00\",\n            \"modified\": \"2021-07-07T07:41:53+00:00\",\n            \"published\": false,\n            \"customUrl\": null,\n            \"activeRevision\": 113,\n            \"revisions\": [\n                113,\n                114\n            ],\n            \"lastRevision\": 114,\n            \"parent\": null,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"language\": 47,\n            \"seoSettings\": 2051,\n            \"createdBy\": 96,\n            \"modifiedBy\": 96,\n            \"deletedBy\": null,\n            \"owner\": 96,\n            \"children\": []\n        }\n    },\n    \"message\": \"The Page has been successfully duplicated.\"\n}"}],"_postman_id":"896725cd-703c-4287-baa7-419defc18a38"}],"id":"b420b550-a9d6-4327-9b5f-e8402f08fad8","_postman_id":"b420b550-a9d6-4327-9b5f-e8402f08fad8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Questions","item":[{"name":"List questions","id":"d6998983-02bd-4f20-b709-7ca33392e985","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/questions?properties={\n  questions {\n    id,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","description":"<p>List FAQ module questions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","questions"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  questions {\n    id,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"7e47390e-389a-43bf-b7ee-bf24c7dba328","name":"List questions","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/pages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:24:49 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617489.7795/137.5041"},{"key":"Content-Length","value":"1068"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"questions\": [\n            {\n                \"id\": 1,\n                \"question\": \"How to log in?\",\n                \"created\": \"2020-11-17T13:35:49+02:00\",\n                \"modified\": \"2020-11-17T13:49:08+02:00\",\n                \"owner\": {\n                    \"id\": 34,\n                    \"name\": \"Misha Hadalin\"\n                }\n            },\n            {\n                \"id\": 2,\n                \"question\": \"Как войти в систему?\",\n                \"created\": \"2020-11-17T13:51:10+02:00\",\n                \"modified\": \"2020-11-17T13:53:29+02:00\",\n                \"owner\": {\n                    \"id\": 34,\n                    \"name\": \"Misha Hadalin\"\n                }\n            },\n            {\n                \"id\": 3,\n                \"question\": \"Як увійти до системи?\",\n                \"created\": \"2020-11-17T13:58:26+02:00\",\n                \"modified\": \"2020-11-17T13:58:26+02:00\",\n                \"owner\": {\n                    \"id\": 34,\n                    \"name\": \"Misha Hadalin\"\n                }\n            },\n            {\n                \"id\": 4,\n                \"question\": \"Can I log in on Frontend?\",\n                \"created\": \"2020-11-17T14:00:12+02:00\",\n                \"modified\": \"2020-11-17T14:00:40+02:00\",\n                \"owner\": {\n                    \"id\": 34,\n                    \"name\": \"Misha Hadalin\"\n                }\n            },\n            {\n                \"id\": 5,\n                \"question\": \"How to create new layout?\",\n                \"created\": \"2020-11-17T14:02:53+02:00\",\n                \"modified\": \"2020-11-17T14:02:53+02:00\",\n                \"owner\": {\n                    \"id\": 34,\n                    \"name\": \"Misha Hadalin\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"d6998983-02bd-4f20-b709-7ca33392e985"},{"name":"Show question","id":"2745d121-ccb6-4cf4-9da7-7b63b7714806","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/question/1?properties={\n  question {\n    id,\n    layout: activeRevision.layout,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    revisions {\n      id\n    }\n  }\n}","description":"<p>Retrieve details for a question</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  question {\n    id,\n    layout: activeRevision.layout,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    revisions {\n      id\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"32167f8b-b80b-4a7f-9f85-596821dc7e99","name":"Show question","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:25:02 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617503.1096/208.5829"},{"key":"Content-Length","value":"2761"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"question\": {\n            \"id\": 1,\n            \"layout\": 21,\n            \"question\": \"How to log in?\",\n            \"created\": \"2020-11-17T13:35:49+02:00\",\n            \"modified\": \"2020-11-17T13:49:08+02:00\",\n            \"owner\": {\n                \"id\": 34,\n                \"name\": \"Misha Hadalin\"\n            },\n            \"revisions\": [\n                {\n                    \"id\": 1\n                },\n                {\n                    \"id\": 2\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"2745d121-ccb6-4cf4-9da7-7b63b7714806"},{"name":"Show question by url","id":"3089a0e1-64cc-4417-bdfa-6dd696ac5ef8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/question/how-to-log-in?properties={\n  question {\n    id,\n    layout: activeRevision.layout,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    revisions {\n      id\n    }\n  }\n}","description":"<p>Retrieve details for a question</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question","how-to-log-in"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  question {\n    id,\n    layout: activeRevision.layout,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    revisions {\n      id\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"58517784-ee09-4d06-94dc-c563e8bb3f9d","name":"Show question by url","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/pages/page/inspiration?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","pages","page","inspiration"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:15:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"7059"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589213734.6641/499.0921"},{"key":"Expires","value":"Wed, 13 May 2020 16:15:34 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"question\": {\n            \"id\": 1,\n            \"layout\": 21,\n            \"question\": \"How to log in?\",\n            \"created\": \"2020-11-17T13:35:49+02:00\",\n            \"modified\": \"2020-11-17T13:49:08+02:00\",\n            \"owner\": {\n                \"id\": 34,\n                \"name\": \"Misha Hadalin\"\n            },\n            \"revisions\": [\n                {\n                    \"id\": 1\n                },\n                {\n                    \"id\": 2\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"3089a0e1-64cc-4417-bdfa-6dd696ac5ef8"},{"name":"Add question","id":"025827c5-29ec-4a8e-8f90-e39128e0e175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"language\": 47,\n    \"question\": \"Test question from API 877\",\n\t\"revisions\": {\n\t\t\"layout\": 21,\n\t\t\"areas\": {\n\t\t\t\"answer\": \"Main text 960\"\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"75faebdc-85e9-433e-8a31-2419e057b4e4","name":"Add question","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"parent\": 1,\n\t\"revisions\": {\n\t\t\"name\": \"Test Page from API 427\",\n\t\t\"layout\": 2,\n\t\t\"areas\": {\n\t\t\t\"main text\": \"Main text\",\n\t\t\t\"side image\": 1\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:46:13 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553535974.0132/480.1619"},{"key":"Content-Length","value":"542"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"question\": {\n            \"originalPath\": \"/faq/question/test-question-from-api-577\",\n            \"fullSlug\": \"test-question-from-api-577\",\n            \"fullPath\": \"/faq/question/test-question-from-api-577\",\n            \"id\": 6,\n            \"slug\": \"test-question-from-api-577\",\n            \"name\": \"Test question from API 577\",\n            \"question\": \"Test question from API 577\",\n            \"state\": \"new\",\n            \"created\": \"2020-11-17T14:56:43+02:00\",\n            \"modified\": \"2020-11-17T14:56:43+02:00\",\n            \"published\": false,\n            \"activeRevision\": 9,\n            \"lastRevision\": 9,\n            \"sourceQuestion\": null,\n            \"relatedQuestions\": [],\n            \"language\": 47,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                9\n            ],\n            \"comments\": [],\n            \"pageRevisionQuestions\": [],\n            \"tags\": [],\n            \"categories\": []\n        }\n    },\n    \"message\": \"The Question has been added successfully.\"\n}"}],"_postman_id":"025827c5-29ec-4a8e-8f90-e39128e0e175"},{"name":"Edit a question","id":"38415c3d-c383-497f-b575-780860b44bdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"question\": \"Changed question from API 629\",\n    \"revisions\": {\n        \"layout\": 21,\n\t\t\"areas\": {\n\t\t\t\"answer\": \"Changed main text 228\"\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question/6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question","6"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d8dd8f83-9074-45d3-a053-56ddb12bf21e","name":"Edit a question","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed page title from API 348\",\n\t\t\"layout\": 2,\n\t\t\"areas\": {\n\t\t\t\"main text\": \"Main text\",\n\t\t\t\"side image\": 2\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 11:42:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553600538.2729/283.9229"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"question\": {\n            \"originalPath\": \"/faq/question/test-question-from-api-577\",\n            \"fullSlug\": \"test-question-from-api-577\",\n            \"fullPath\": \"/faq/question/test-question-from-api-577\",\n            \"id\": 6,\n            \"slug\": \"test-question-from-api-577\",\n            \"name\": \"Changed question from API 140\",\n            \"question\": \"Changed question from API 140\",\n            \"state\": \"new\",\n            \"created\": \"2020-11-17T14:56:43+02:00\",\n            \"modified\": \"2020-11-17T14:57:31+02:00\",\n            \"published\": false,\n            \"activeRevision\": 9,\n            \"lastRevision\": 10,\n            \"sourceQuestion\": null,\n            \"relatedQuestions\": [],\n            \"language\": 47,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                9,\n                10\n            ],\n            \"comments\": [],\n            \"pageRevisionQuestions\": [],\n            \"tags\": [],\n            \"categories\": []\n        }\n    },\n    \"message\": \"The Question has been saved successfully.\"\n}"}],"_postman_id":"38415c3d-c383-497f-b575-780860b44bdf"},{"name":"Change question active revision","id":"81d9254d-80ad-4cde-8f6e-bb390eb95a93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"activeRevision\": 9\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question/6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question","6"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"96ad7577-0638-4407-8220-f972e42f2928","name":"Change question active revision (edit question)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed page title from API 667\"\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:47:59 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553536079.5929/416.8839"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"question\": {\n            \"originalPath\": \"/faq/question/test-question-from-api-577\",\n            \"fullSlug\": \"test-question-from-api-577\",\n            \"fullPath\": \"/faq/question/test-question-from-api-577\",\n            \"id\": 6,\n            \"slug\": \"test-question-from-api-577\",\n            \"name\": \"Changed question from API 140\",\n            \"question\": \"Changed question from API 140\",\n            \"state\": \"new\",\n            \"created\": \"2020-11-17T14:56:43+02:00\",\n            \"modified\": \"2020-11-17T15:01:58+02:00\",\n            \"published\": false,\n            \"activeRevision\": 9,\n            \"lastRevision\": 10,\n            \"sourceQuestion\": null,\n            \"relatedQuestions\": [],\n            \"language\": 47,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                9,\n                10\n            ],\n            \"comments\": [],\n            \"pageRevisionQuestions\": [],\n            \"tags\": [],\n            \"categories\": []\n        }\n    },\n    \"message\": \"The Question has been saved successfully.\"\n}"}],"_postman_id":"81d9254d-80ad-4cde-8f6e-bb390eb95a93"},{"name":"Delete a question","id":"e44aab18-a3fa-4a0f-a5c4-b2351b3dee30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question/7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question","7"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b519528c-3201-4b99-b488-bd4791991df0","name":"Delete a question","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:48:44 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553536125.0593/355.3410"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"question\": {\n            \"originalPath\": \"/faq/question/test-question-from-api-354\",\n            \"fullSlug\": \"test-question-from-api-354\",\n            \"fullPath\": \"/faq/question/test-question-from-api-354\",\n            \"id\": 7,\n            \"slug\": \"test-question-from-api-354\",\n            \"name\": \"Test question from API 354\",\n            \"question\": \"Test question from API 354\",\n            \"state\": \"new\",\n            \"created\": \"2020-11-17T15:03:01+02:00\",\n            \"modified\": \"2020-11-17T15:03:01+02:00\",\n            \"published\": false,\n            \"activeRevision\": 11,\n            \"lastRevision\": 11,\n            \"sourceQuestion\": null,\n            \"relatedQuestions\": [],\n            \"language\": 47,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                11\n            ],\n            \"comments\": [],\n            \"pageRevisionQuestions\": [],\n            \"tags\": [],\n            \"categories\": []\n        }\n    },\n    \"message\": \"The Question has been successfully deleted.\"\n}"}],"_postman_id":"e44aab18-a3fa-4a0f-a5c4-b2351b3dee30"},{"name":"Duplicate question","id":"bd091d3a-d45b-4239-bbc1-ec4648ff17ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/duplicate-question/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","duplicate-question","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b4d406b5-6688-4274-9585-e3faa7aa7e7a","name":"Question is not found","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/duplicate-question/1"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"No data was returned by the Faq\\\\Controllers\\\\Api\\\\Questions\\\\Duplicate controller for the url \\\"/cdna-api/faq/duplicate-question/51\\\" via POST\"\n}"},{"id":"d949ff30-de3d-4f94-94d4-d590a91e9423","name":"Success","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/duplicate-question/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"question\": {\n            \"originalPath\": \"/faq/question/how-can-i-do-this-copy-1\",\n            \"fullSlug\": \"how-can-i-do-this-copy-1\",\n            \"fullPath\": \"/faq/question/how-can-i-do-this-copy-1\",\n            \"id\": 13,\n            \"slug\": \"how-can-i-do-this-copy-1\",\n            \"name\": \"Copy of How can I do this?\",\n            \"question\": \"Copy of How can I do this?\",\n            \"state\": \"answered\",\n            \"created\": \"2021-06-22T20:55:59+00:00\",\n            \"modified\": \"2021-07-07T07:43:17+00:00\",\n            \"published\": false,\n            \"activeRevision\": 41,\n            \"revisions\": [\n                41,\n                42\n            ],\n            \"lastRevision\": 42,\n            \"sourceQuestion\": null,\n            \"relatedQuestions\": [],\n            \"language\": 47,\n            \"createdBy\": 96,\n            \"modifiedBy\": 96,\n            \"deletedBy\": null,\n            \"owner\": 96,\n            \"comments\": [],\n            \"pageRevisionQuestions\": [],\n            \"tags\": [\n                148,\n                310\n            ],\n            \"categories\": [\n                17,\n                20,\n                23\n            ]\n        }\n    },\n    \"message\": \"The Question has been successfully duplicated.\"\n}"}],"_postman_id":"bd091d3a-d45b-4239-bbc1-ec4648ff17ab"}],"id":"59648001-b2de-45e3-a6e9-6ef87f638be0","_postman_id":"59648001-b2de-45e3-a6e9-6ef87f638be0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Question Comments","item":[{"name":"List question comments","id":"f1b48be0-d812-4f84-86da-dd9d9565b372","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/question-comments/2?properties={\n  question {\n    id,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  },\n  questionComments {\n    id,\n    text,\n    created,\n    modified\n  }\n}","description":"<p>List of question comments at FAQ module.\nList all comments for a specific question (via question ID).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question-comments","2"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  question {\n    id,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  },\n  questionComments {\n    id,\n    text,\n    created,\n    modified\n  }\n}"}],"variable":[]}},"response":[{"id":"8b2acaf9-b19a-4342-811b-1637e45ba430","name":"List of comments for a specific question","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"text/plain","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","options":{"raw":{"language":"text"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/faq/question-comments/2?properties={\n  question {\n    id,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  },\n  questionComments {\n    id,\n    text,\n    created,\n    modified\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","faq","question-comments","2"],"query":[{"key":"properties","value":"{\n  question {\n    id,\n    question,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  },\n  questionComments {\n    id,\n    text,\n    created,\n    modified\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:24:49 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617489.7795/137.5041"},{"key":"Content-Length","value":"1068"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"question\": {\n            \"id\": 2,\n            \"question\": \"Where is an Item entity?\",\n            \"created\": \"2020-11-11T12:16:02+01:00\",\n            \"modified\": \"2020-11-25T17:48:52+01:00\",\n            \"owner\": {\n                \"id\": 96,\n                \"name\": \"Mykhailo Gadalin\"\n            }\n        },\n        \"questionComments\": [\n            {\n                \"id\": 2,\n                \"text\": \"<p>first comment updated</p>\",\n                \"created\": \"2021-01-08T10:19:12+01:00\",\n                \"modified\": \"2021-01-08T16:41:11+01:00\"\n            },\n            {\n                \"id\": 5,\n                \"text\": \"<p>asd</p>\",\n                \"created\": \"2021-01-08T15:05:53+01:00\",\n                \"modified\": \"2021-01-08T16:41:11+01:00\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f1b48be0-d812-4f84-86da-dd9d9565b372"},{"name":"Add question comment","id":"7b5177dc-7131-451b-99cd-f0a962198a93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"text\": \"Added test comment from API 440\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question-comment/4","description":"<p>Add comment for a specific question by passed question ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question-comment","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9d152484-7372-43a8-ae8e-e8270095463e","name":"Add question comment by question ID","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"text\": \"Added test comment from API 655\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question-comment/4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:59:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"815"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589216347.9331/461.0782"},{"key":"Expires","value":"Wed, 13 May 2020 16:59:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"questionComment\": {\n            \"id\": 10,\n            \"text\": \"Added test comment from API 287\",\n            \"created\": \"2021-01-11T12:52:56+01:00\",\n            \"modified\": \"2021-01-11T12:52:56+01:00\",\n            \"published\": \"2021-01-11T12:52:56+01:00\",\n            \"question\": 4,\n            \"person\": null\n        }\n    },\n    \"message\": \"The entities.faq.question_comment has been added successfully.\"\n}"}],"_postman_id":"7b5177dc-7131-451b-99cd-f0a962198a93"},{"name":"Show question comment","id":"a3e26455-d385-4f1c-ba10-65f7bede9ae7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/faq/question-comment/2?properties={\n  questionComment {\n    id,\n    text,\n    created,\n    modified,\n    person,\n    question {\n      name\n    }\n  }\n}","description":"<p>Show details for a specific question comment by ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question-comment","2"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  questionComment {\n    id,\n    text,\n    created,\n    modified,\n    person,\n    question {\n      name\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"67520617-612a-43e8-a626-ee7d4de6f088","name":"Show question comment by ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/faq/question-comment/2?properties={\n  questionComment {\n    id,\n    text,\n    created,\n    modified,\n    person,\n    question {\n      name\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","faq","question-comment","2"],"query":[{"key":"properties","value":"{\n  questionComment {\n    id,\n    text,\n    created,\n    modified,\n    person,\n    question {\n      name\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:31:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"466"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589214678.4355/453.5258"},{"key":"Expires","value":"Wed, 13 May 2020 16:31:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"questionComment\": {\n            \"id\": 2,\n            \"text\": \"<p>first comment updated</p>\",\n            \"created\": \"2021-01-08T10:19:12+01:00\",\n            \"modified\": \"2021-01-08T16:41:11+01:00\",\n            \"person\": null,\n            \"question\": {\n                \"name\": \"Where is an Item entity?\"\n            }\n        }\n    }\n}"}],"_postman_id":"a3e26455-d385-4f1c-ba10-65f7bede9ae7"},{"name":"Edit question comment","id":"664d038d-87a8-4338-9cf6-77e4c9606235","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"text\": \"Changed comment from API 364\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question-comment/2","description":"<p>Edit a question comment by ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question-comment","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8e6ae892-453a-49df-b6c1-5e1f725f2fa7","name":"Edit a question comment by passed ID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"text\": \"Changed comment from API 606\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question-comment/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 11:42:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553600538.2729/283.9229"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"questionComment\": {\n            \"id\": 2,\n            \"text\": \"Changed comment from API 333\",\n            \"created\": \"2021-01-08T10:19:12+01:00\",\n            \"modified\": \"2021-01-11T12:23:01+01:00\",\n            \"published\": false,\n            \"question\": 2,\n            \"person\": null\n        }\n    },\n    \"message\": \"The entities.faq.question_comment has been saved successfully.\"\n}"}],"_postman_id":"664d038d-87a8-4338-9cf6-77e4c9606235"},{"name":"Delete question comment","id":"20ed0855-0a65-4545-8a98-1e7217d9b443","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question-comment/7","description":"<p>Delete a question comment by passed ID</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","faq","question-comment","7"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"36912ba7-fb77-4105-883d-9143c78dbc52","name":"Delete a question comment by ID","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/faq/question-comment/7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:48:44 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553536125.0593/355.3410"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"questionComment\": {\n            \"id\": 7,\n            \"text\": \"<p>22</p><p>22</p><p>2</p><p>22</p>\",\n            \"created\": \"2021-01-08T16:43:41+01:00\",\n            \"modified\": \"2021-01-08T16:43:41+01:00\",\n            \"published\": \"2021-01-08T16:43:35+01:00\",\n            \"question\": 4,\n            \"person\": null\n        }\n    },\n    \"message\": \"The entities.faq.question_comment has been successfully deleted.\"\n}"}],"_postman_id":"20ed0855-0a65-4545-8a98-1e7217d9b443"}],"id":"ee6cdcaf-c456-427f-b457-7af95b522b97","_postman_id":"ee6cdcaf-c456-427f-b457-7af95b522b97","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"149ca219-b461-4cb8-8f2d-d2f940bd63de","_postman_id":"149ca219-b461-4cb8-8f2d-d2f940bd63de","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Files","item":[{"name":"Images","item":[{"name":"List images","id":"76c214a9-04a4-47ea-9063-b813937cb228","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/files/images?properties={\n  images {\n    id,\n    path,\n    width: activeRevision.width,\n    height: activeRevision.height,\n    created,\n    modified: activeRevision.created\n  }\n}","description":"<p>List all images available</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","files","images"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  images {\n    id,\n    path,\n    width: activeRevision.width,\n    height: activeRevision.height,\n    created,\n    modified: activeRevision.created\n  }\n}"}],"variable":[]}},"response":[],"_postman_id":"76c214a9-04a4-47ea-9063-b813937cb228"},{"name":"Get image details","id":"37702afd-7d7f-4ad4-a6b8-03230c483f4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/files/image/1?properties={\n  image {\n    id,\n    path,\n    width: activeRevision.width,\n    height: activeRevision.height,\n    created,\n    modified: activeRevision.created\n  }\n}","description":"<p>Retrieve details for a specific image</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","files","image","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  image {\n    id,\n    path,\n    width: activeRevision.width,\n    height: activeRevision.height,\n    created,\n    modified: activeRevision.created\n  }\n}"}],"variable":[]}},"response":[{"id":"d20e6ceb-c85c-4c06-b5a1-33307a461f88","name":"Show image","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","type":"text","value":"1"}],"body":{"mode":"raw","raw":"{\n  image {\n    id,\n    path,\n    width: activeRevision.width,\n    height: activeRevision.height,\n    created,\n    modified: activeRevision.created\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/files/image/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:33:54 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553535234.6452/128.1741"},{"key":"Content-Length","value":"196"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"image\": {\n            \"id\": 1,\n            \"path\": \"/files/images/blogs/6/CW-blog.jpg\",\n            \"width\": 115,\n            \"height\": 115,\n            \"created\": \"2019-02-08T20:41:39+00:00\",\n            \"modified\": \"2019-02-08T20:41:39+00:00\"\n        }\n    }\n}"}],"_postman_id":"37702afd-7d7f-4ad4-a6b8-03230c483f4d"},{"name":"Retrieve image","id":"801ed524-1070-4521-baea-6f91f2342181","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/<image-path>","description":"<p>Retrieve an image on the website using the path of the image.</p>\n<p>While this looks like a URL pointing towards a static image, it does support operations on the image that are applied on the fly, yet cached by our system.</p>\n<p>The following parameters can be specified when retrieving an image:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>w</td>\n<td>width</td>\n<td>Desired target width for the image in pixels. For auto (default) resize strategy, only one dimension needs to be specified.</td>\n</tr>\n<tr>\n<td>h</td>\n<td>height</td>\n<td>Desired target height of the image in pixels</td>\n</tr>\n<tr>\n<td>q</td>\n<td>quality</td>\n<td>Desired quality of the image as percentage; supply a number between 1 and 100.</td>\n</tr>\n<tr>\n<td>l</td>\n<td>lossy</td>\n<td>Determines whether a lossy strategy should be applied when resizing the image</td>\n</tr>\n<tr>\n<td>f</td>\n<td>format</td>\n<td>Original format of the image</td>\n</tr>\n<tr>\n<td>s</td>\n<td>strategy</td>\n<td>Resize strategy. Can be any of the following:  <br /><strong>auto:</strong> (default) Resize based on the provided dimensions. Maintain aspect ratio if only one dimension is provided.  <br /><strong>exact:</strong> Resize by exact width and height  <br /><strong>crop:</strong> Crop the image to the specified size. Additionally uses x and y to determine origin of crop, if not 0:0  <br /><strong>fit:</strong> Crop and resize the image to fit the desired width and height  <br /><strong>portrait:</strong> Resize based on the provided height; determine width automatically  <br /><strong>landscape:</strong> Resize based on the provided width; determine height automatically</td>\n</tr>\n<tr>\n<td>x</td>\n<td>x position</td>\n<td>Used as x coordinate part for the origin in resize operations involving crop</td>\n</tr>\n<tr>\n<td>y</td>\n<td>y position</td>\n<td>Used as y coordinate part for the origin in resize operations involving crop</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["<image-path>"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b77fc52b-e09a-470f-9b2c-64f3519d5df9","name":"Retrieve image","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/files/images/components/imageleft.jpg"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"062e800f-5d8c-4726-84d3-4789ab4da8b7","name":"Format conversion","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/files/images/components/imageleft.webp?f=jpg","protocol":"{{protocol}}","host":["{{domain}}"],"path":["files","images","components","imageleft.webp"],"query":[{"key":"f","value":"jpg"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d3613218-be77-443b-81e1-712849761b8e","name":"Resize image: One dimension","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/files/images/components/imageleft.jpg?w=200","protocol":"{{protocol}}","host":["{{domain}}"],"path":["files","images","components","imageleft.jpg"],"query":[{"key":"w","value":"200"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6da0a305-e292-4b6d-8559-b39038b432ec","name":"Crop image","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/files/images/components/imageleft.jpg?w=200&h=300&s=crop&x=100&y=100","protocol":"{{protocol}}","host":["{{domain}}"],"path":["files","images","components","imageleft.jpg"],"query":[{"key":"w","value":"200"},{"key":"h","value":"300"},{"key":"s","value":"crop"},{"key":"x","value":"100"},{"key":"y","value":"100"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"801ed524-1070-4521-baea-6f91f2342181"},{"name":"Upload image","id":"7ce7d6b9-3b52-4afa-9038-1a92138b4c67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"type","value":"image","type":"text"},{"key":"folder","value":"test-from-api","type":"text"},{"key":"filename","value":"file-to-upload.png","type":"text"},{"key":"fileToUpload","type":"file","value":null}]},"url":"{{protocol}}://{{domain}}/cdna-api/files/upload-file","description":"<p>Upload an image</p>\n<p>folder and filename are optional parameters.</p>\n<p>fileToUpload should contain the uploaded file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","files","upload-file"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"fc623388-9fe4-4d3e-b8e7-1c3dca0b3d43","name":"Upload image","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"type","value":"image","type":"text"},{"key":"folder","value":"test-from-api","type":"text"},{"key":"filename","value":"file-to-upload.png","type":"text"},{"key":"fileToUpload","type":"file"}]},"url":"{{protocol}}://{{domain}}/cdna-api/files/upload-file"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Apr 2019 14:25:22 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1554301523.2289/809.8781"},{"key":"Content-Length","value":"139"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"\",\n    \"type\": \"image\",\n    \"file\": \"/files/test-from-api/file-to-upload.png\",\n    \"link\": \"/files/test-from-api/file-to-upload.png\",\n    \"id\": 23\n}"}],"_postman_id":"7ce7d6b9-3b52-4afa-9038-1a92138b4c67"}],"id":"29e536ed-5891-4ef1-bdb0-952766bf215f","_postman_id":"29e536ed-5891-4ef1-bdb0-952766bf215f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"File manager","item":[{"name":"Get folders and root files","id":"1e4a0b5b-143c-4f80-81b5-aeba6a673415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/files/webix","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","files","webix"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e4a0b5b-143c-4f80-81b5-aeba6a673415"},{"name":"Get folders and files (with active folder)","id":"10c3269b-7a31-4e51-ad78-4844fd6caead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{protocol}}://{{domain}}/cdna-api/files/webix?activeFolder=images/blogs/56","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","files","webix"],"host":["{{domain}}"],"query":[{"key":"activeFolder","value":"images/blogs/56"}],"variable":[]}},"response":[],"_postman_id":"10c3269b-7a31-4e51-ad78-4844fd6caead"}],"id":"689c01a3-ab03-44b4-bad4-a1d68e16be12","description":"<p>APIs specifically created for the file manager</p>\n","event":[{"listen":"prerequest","script":{"id":"d1cd8b6a-784e-4491-becc-0896fd24d81c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"73abbd04-07c4-4624-81da-c062db133489","type":"text/javascript","exec":[""]}}],"_postman_id":"689c01a3-ab03-44b4-bad4-a1d68e16be12","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"aec1bf78-8bcc-42fc-b9df-55767891ba5a","_postman_id":"aec1bf78-8bcc-42fc-b9df-55767891ba5a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Forms","item":[{"name":"Forms","item":[{"name":"List forms","id":"a01e0f22-81ae-4831-b0bc-28e6df3eea0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/forms/forms?properties={\n  forms {\n    id,\n    name:activeRevision.name,\n    created,\n    modified\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","forms"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  forms {\n    id,\n    name:activeRevision.name,\n    created,\n    modified\n  }\n}"}],"variable":[]}},"response":[],"_postman_id":"a01e0f22-81ae-4831-b0bc-28e6df3eea0f"},{"name":"Add form","id":"5ba5efed-28e8-4936-9700-d80d92b50344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test from API 423\"\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/forms/form","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","form"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3c860476-3edd-4a47-a597-a4042ea247ce","name":"Add form","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Test from API 658\"\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/forms/form"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:00:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009214.8088/529.7709"},{"key":"Content-Length","value":"547"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"book\": {\n            \"unitsCount\": 0,\n            \"pagesCount\": 0,\n            \"units\": [],\n            \"lastRevision\": 494,\n            \"name\": \"Test from API 342\",\n            \"fullSlug\": \"/test-from-api-342\",\n            \"fullPath\": \"/test-from-api-342\",\n            \"id\": 100,\n            \"slug\": \"test-from-api-342\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 18,\n            \"created\": \"2019-04-11T19:00:14+00:00\",\n            \"modified\": \"2019-04-11T19:00:14+00:00\",\n            \"published\": false,\n            \"activeRevision\": 494,\n            \"language\": 47,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"revisions\": [\n                494\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"owner\": 1\n        }\n    },\n    \"message\": \"The Book has been added successfully.\"\n}"}],"_postman_id":"5ba5efed-28e8-4936-9700-d80d92b50344"},{"name":"Show form","id":"af63e350-a334-4dea-940c-d27e5dce2f1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/forms/form/31?properties={\n  form {\n    id,\n    created,\n    modified\n  }\n}","description":"<p>Retrieve details for a page</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","form","31"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  form {\n    id,\n    created,\n    modified\n  }\n}"}],"variable":[]}},"response":[{"id":"99c207f6-6968-4787-bdf4-060a2159481f","name":"Show form","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/forms/form/1?properties={\n  form {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","forms","form","1"],"query":[{"key":"properties","value":"{\n  form {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:25:02 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617503.1096/208.5829"},{"key":"Content-Length","value":"2761"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 1,\n            \"layout\": 20,\n            \"name\": \"Administrating\",\n            \"created\": \"2020-11-17T14:08:35+02:00\",\n            \"modified\": \"2020-11-17T14:08:35+02:00\",\n            \"owner\": {\n                \"id\": 34,\n                \"name\": \"Misha Hadalin\"\n            },\n            \"areas\": {\n                \"content\": {\n                    \"id\": 13945,\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"editor\": \"richtext\",\n                    \"text\": \"<p><strong>All</strong> <em>administrating </em>questions <u>you</u>&nbsp;<s>want</s> <span style=\\\"color: rgb(184, 49, 47);\\\">need</span> to <span style=\\\"font-size: 36px;\\\">know</span>.&nbsp;</p>\"\n                }\n            },\n            \"revisions\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Administrating\",\n                    \"areasContent\": {\n                        \"content\": {\n                            \"id\": 13945,\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"editor\": \"richtext\",\n                            \"text\": \"<p><strong>All</strong> <em>administrating </em>questions <u>you</u>&nbsp;<s>want</s> <span style=\\\"color: rgb(184, 49, 47);\\\">need</span> to <span style=\\\"font-size: 36px;\\\">know</span>.&nbsp;</p>\"\n                        }\n                    },\n                    \"active\": true\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"af63e350-a334-4dea-940c-d27e5dce2f1d"},{"name":"Edit form","id":"3124b141-c3d7-4e5e-91f6-b8f5cf9878c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Test from API 985 (edited)\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/forms/form/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","form","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"20b8226a-7a97-4186-be34-b5076a4ae028","name":"Edit a form","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed page title from API 367\",\n\t\t\"layout\": 2,\n\t\t\"areas\": {\n\t\t\t\"main text\": \"Main text\",\n\t\t\t\"side image\": 2\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/forms/form/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 11:42:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553600538.2729/283.9229"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"name\": \"Test Page from API 655\",\n            \"originalPath\": \"/faq/page/test-page-from-api-655\",\n            \"fullSlug\": \"test-page-from-api-655\",\n            \"fullPath\": \"/faq/page/test-page-from-api-655\",\n            \"id\": 6,\n            \"slug\": \"test-page-from-api-655\",\n            \"created\": \"2020-11-17T14:49:04+02:00\",\n            \"modified\": \"2020-11-17T14:49:04+02:00\",\n            \"published\": false,\n            \"customUrl\": null,\n            \"activeRevision\": 15,\n            \"lastRevision\": 17,\n            \"parent\": null,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"language\": 47,\n            \"seoSettings\": null,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                15,\n                16,\n                17\n            ],\n            \"children\": []\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"3124b141-c3d7-4e5e-91f6-b8f5cf9878c1"},{"name":"Delete form","id":"db01c99a-a617-4d1a-96dc-cf29a9f8aa77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/forms/form/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","form","1"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"fc22111c-8c55-45a2-a267-e67b1cf4724c","name":"Delete a form","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/forms/form/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:48:44 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553536125.0593/355.3410"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"name\": \"Test Page from API 182\",\n            \"originalPath\": \"/faq/page/test-page-from-api-182\",\n            \"fullSlug\": \"test-page-from-api-182\",\n            \"fullPath\": \"/faq/page/test-page-from-api-182\",\n            \"id\": 7,\n            \"slug\": \"test-page-from-api-182\",\n            \"created\": \"2020-11-17T14:53:25+02:00\",\n            \"modified\": \"2020-11-17T14:53:25+02:00\",\n            \"published\": false,\n            \"customUrl\": null,\n            \"activeRevision\": 18,\n            \"lastRevision\": 18,\n            \"parent\": null,\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"language\": 47,\n            \"seoSettings\": null,\n            \"createdBy\": 34,\n            \"modifiedBy\": 34,\n            \"deletedBy\": null,\n            \"owner\": 34,\n            \"revisions\": [\n                18\n            ],\n            \"children\": []\n        }\n    },\n    \"message\": \"The Page has been successfully deleted.\"\n}"}],"_postman_id":"db01c99a-a617-4d1a-96dc-cf29a9f8aa77"}],"id":"e8691531-5fda-43c5-804e-d8dca1e80e38","_postman_id":"e8691531-5fda-43c5-804e-d8dca1e80e38","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"FormSubmissions","item":[{"name":"Add form submission","id":"820bbb55-816c-47ed-a710-88421810d6e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"text","value":"Text from API 661","type":"text","disabled":true},{"key":"image[]","type":"file","src":"/C:/Users/mikle/Desktop/photo-ideas-7.jpg","disabled":true},{"key":"image[]","type":"file","src":"/C:/Users/mikle/Desktop/photo-ideas-8.jpg","disabled":true},{"key":"color[]","value":"white","type":"text","disabled":true},{"key":"color[]","value":"red","type":"text","disabled":true},{"key":"name","value":"Andrew","description":"<p>Input field</p>\n","type":"text"},{"key":"bio","value":"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\n\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\n\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\n\nFeel free to send me a message through LinkedIn or via email at","description":"<p>Textarea</p>\n","type":"text"},{"key":"age","value":"102","description":"<p>Numeric</p>\n","type":"text"},{"key":"email","value":"andrew.savetchuk@coredna.com","description":"<p>Email</p>\n","type":"text"},{"key":"phone","value":"911","description":"<p>Phone</p>\n","type":"text","disabled":true},{"key":"favorite_food","value":"pasta","description":"<p>Select</p>\n","type":"text"},{"key":"favorite_food_multiselect[]","value":"doner","description":"<p>Select (multiselect)</p>\n","type":"text"},{"key":"favorite_food_multiselect[]","value":"pasta","description":"<p>Select (multiselect)</p>\n","type":"text"},{"key":"favorite_drinks[]","value":"lemonade","description":"<p>Checkbox</p>\n","type":"text"},{"key":"gender","value":"male","description":"<p>Radio</p>\n","type":"text"},{"key":"favorite_date","value":"2021-05-14T14:51:33+00:00","description":"<p>DateTime</p>\n","type":"text"},{"key":"slider","value":"51","description":"<p>Slider</p>\n","type":"text","disabled":true},{"key":"range[]","value":"3","description":"<p>Range</p>\n","type":"text"},{"key":"range[]","value":"5","description":"<p>Range</p>\n","type":"text"}]},"url":"{{protocol}}://{{domain}}/cdna-api/forms/submission/2?properties={\n  id,\n  token,\n  stepSubmissions\n  {\n    elementSubmissions\n    {\n      name: element.name,\n      value\n    }\n  }\n}","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","submission","2"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id,\n  token,\n  stepSubmissions\n  {\n    elementSubmissions\n    {\n      name: element.name,\n      value\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"5319af94-76fd-4bd2-a640-ddac2ad08fe5","name":"Add form submission (form is not found)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Andrew","description":"Input field","type":"text"},{"key":"bio","value":"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\n\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\n\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\n\nFeel free to send me a message through LinkedIn or via email at","description":"Textarea","type":"text"},{"key":"age","value":"102","description":"Numeric","type":"text"},{"key":"email","value":"andrew.savetchuk@coredna.com","description":"Email","type":"text"}]},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/forms/submission/1?properties={\n  id,\n  token,\n  stepSubmissions\n  {\n    elementSubmissions\n    {\n      name: element.name,\n      value\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","forms","submission","1"],"query":[{"key":"properties","value":"{\n  id,\n  token,\n  stepSubmissions\n  {\n    elementSubmissions\n    {\n      name: element.name,\n      value\n    }\n  }\n}"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:00:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009214.8088/529.7709"},{"key":"Content-Length","value":"547"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"The form with given ID is not found\"\n}"},{"id":"8b671733-fc54-43f9-b405-6a3ceaeb3990","name":"Add form submission (validation error)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Andrew","description":"Input field","type":"text"},{"key":"bio","value":"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\n\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\n\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\n\nFeel free to send me a message through LinkedIn or via email at","description":"Textarea","type":"text"},{"key":"email","value":"andrew.savetchuk@coredna.com","description":"Email","type":"text"}]},"url":"{{protocol}}://{{domain}}/cdna-api/forms/submission/1"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:00:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009214.8088/529.7709"},{"key":"Content-Length","value":"547"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"validationErrors\": {\n        \"age\": [\n            {\n                \"message\": \"Cannot be empty\",\n                \"code\": \"bb203946-d5ab-84b9-2afc-41eff2dfe753\",\n                \"propertyPath\": \"age\"\n            }\n        ],\n        \"favorite_date\": [\n            {\n                \"message\": \"Cannot be empty\",\n                \"code\": \"bb203946-d5ab-84b9-2afc-41eff2dfe753\",\n                \"propertyPath\": \"favorite_date\"\n            }\n        ],\n        \"favorite_drinks\": [\n            {\n                \"message\": \"Cannot be empty\",\n                \"code\": \"bb203946-d5ab-84b9-2afc-41eff2dfe753\",\n                \"propertyPath\": \"favorite_drinks\"\n            }\n        ],\n        \"favorite_food\": [\n            {\n                \"message\": \"Cannot be empty\",\n                \"code\": \"bb203946-d5ab-84b9-2afc-41eff2dfe753\",\n                \"propertyPath\": \"favorite_food\"\n            }\n        ],\n        \"gender\": [\n            {\n                \"message\": \"Cannot be empty\",\n                \"code\": \"bb203946-d5ab-84b9-2afc-41eff2dfe753\",\n                \"propertyPath\": \"gender\"\n            }\n        ]\n    },\n    \"message\": \"Forms\\\\Models\\\\Api\\\\InputNumber.age: Cannot be empty Forms\\\\Models\\\\Api\\\\InputDatetime.favorite_date: Cannot be empty Forms\\\\Models\\\\Api\\\\InputCheckbox.favorite_drinks: Cannot be empty Forms\\\\Models\\\\Api\\\\InputSelect.favorite_food: Cannot be empty Forms\\\\Models\\\\Api\\\\InputRadio.gender: Cannot be empty\"\n}"},{"id":"9414710b-9476-4791-aa8a-9d8d3d29b42f","name":"Add form submission (success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Andrew","description":"Input field","type":"text"},{"key":"bio","value":"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\n\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\n\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\n\nFeel free to send me a message through LinkedIn or via email at","description":"Textarea","type":"text"},{"key":"age","value":"102","description":"Numeric","type":"text"},{"key":"email","value":"andrew.savetchuk@coredna.com","description":"Email","type":"text"},{"key":"favorite_food","value":"pasta","description":"Select","type":"text"},{"key":"favorite_food_multiselect[]","value":"doner","description":"Select (multiselect)","type":"text"},{"key":"favorite_food_multiselect[]","value":"pasta","description":"Select (multiselect)","type":"text"},{"key":"favorite_drinks[]","value":"lemonade","description":"Checkbox","type":"text"},{"key":"gender","value":"male","description":"Radio","type":"text"},{"key":"range[]","value":"3","description":"Range","type":"text"},{"key":"range[]","value":"5","description":"Range","type":"text"},{"key":"favorite_date","value":"2021-05-14T14:51:33+00:00","description":"DateTime","type":"text"}]},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/forms/submission/1?properties={\n  id,\n  token,\n  stepSubmissions\n  {\n    elementSubmissions\n    {\n      name: element.name,\n      value\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","forms","submission","1"],"query":[{"key":"properties","value":"{\n  id,\n  token,\n  stepSubmissions\n  {\n    elementSubmissions\n    {\n      name: element.name,\n      value\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:00:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009214.8088/529.7709"},{"key":"Content-Length","value":"547"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"id\": 66,\n        \"token\": \"1b1579b94eb5c67f853e0afce4741fca3e21cb728f7446032db34f479670\",\n        \"stepSubmissions\": [\n            {\n                \"elementSubmissions\": [\n                    {\n                        \"name\": \"name\",\n                        \"value\": [\n                            \"Andrew\"\n                        ]\n                    },\n                    {\n                        \"name\": \"bio\",\n                        \"value\": [\n                            \"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\\n\\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\\n\\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\\n\\nFeel free to send me a message through LinkedIn or via email at\"\n                        ]\n                    },\n                    {\n                        \"name\": \"age\",\n                        \"value\": [\n                            102\n                        ]\n                    },\n                    {\n                        \"name\": \"email\",\n                        \"value\": [\n                            \"andrew.savetchuk@coredna.com\"\n                        ]\n                    },\n                    {\n                        \"name\": \"phone\",\n                        \"value\": []\n                    },\n                    {\n                        \"name\": \"favorite_food\",\n                        \"value\": [\n                            \"pasta\"\n                        ]\n                    },\n                    {\n                        \"name\": \"favorite_food_multiselect\",\n                        \"value\": [\n                            \"doner\",\n                            \"pasta\"\n                        ]\n                    },\n                    {\n                        \"name\": \"favorite_drinks\",\n                        \"value\": [\n                            \"lemonade\"\n                        ]\n                    },\n                    {\n                        \"name\": \"gender\",\n                        \"value\": [\n                            \"male\"\n                        ]\n                    },\n                    {\n                        \"name\": \"favorite_date\",\n                        \"value\": [\n                            \"2021-05-14T14:51:33+00:00\"\n                        ]\n                    },\n                    {\n                        \"name\": \"image\",\n                        \"value\": []\n                    },\n                    {\n                        \"name\": \"slider\",\n                        \"value\": []\n                    },\n                    {\n                        \"name\": \"range\",\n                        \"value\": [\n                            3,\n                            5\n                        ]\n                    }\n                ]\n            }\n        ]\n    },\n    \"message\": \"The Form Submission has been added successfully.\"\n}"}],"_postman_id":"820bbb55-816c-47ed-a710-88421810d6e4"},{"name":"Edit form submission","id":"ae295abc-a004-4f13-8b91-7fac3329a486","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Name from API 333 (edited)\",\n    \"phone\": \"+1 (23) 456 78 90\",\n    \"color\": [\"red\", \"black\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/forms/submission/fe412f221fad5c6b13bb467680d181c4628520128c0d7d3763a8c6f620cb","urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","submission","fe412f221fad5c6b13bb467680d181c4628520128c0d7d3763a8c6f620cb"],"host":["{{domain}}"],"query":[{"disabled":true,"description":{"content":"<p>Input field</p>\n","type":"text/plain"},"key":"name","value":"Andrew (edited)"},{"disabled":true,"description":{"content":"<p>Select (multiselect)</p>\n","type":"text/plain"},"key":"favorite_food_multiselect[]","value":"doner"},{"disabled":true,"description":{"content":"<p>Radio</p>\n","type":"text/plain"},"key":"gender","value":"male"}],"variable":[]}},"response":[{"id":"2554d99b-51d0-49ce-afa3-ad739290cbf6","name":"Edit form submission (submission is not found)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Andrew","description":"Input field","type":"text"},{"key":"bio","value":"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\n\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\n\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\n\nFeel free to send me a message through LinkedIn or via email at","description":"Textarea","type":"text"},{"key":"age","value":"102","description":"Numeric","type":"text"},{"key":"email","value":"andrew.savetchuk@coredna.com","description":"Email","type":"text"}]},"url":"{{protocol}}://{{domain}}/cdna-api/forms/submission/fe412f221fad5c6b13bb467680d181c4628520128c0d7d3763a8c6f620cb"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:00:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009214.8088/529.7709"},{"key":"Content-Length","value":"547"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"Submission is not found\"\n}"},{"id":"7b950bad-0e07-43b8-b381-2fcdea923ad8","name":"Edit form submission (submission is already completted)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Andrew","description":"Input field","type":"text"},{"key":"bio","value":"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\n\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\n\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\n\nFeel free to send me a message through LinkedIn or via email at","description":"Textarea","type":"text"},{"key":"age","value":"102","description":"Numeric","type":"text"},{"key":"email","value":"andrew.savetchuk@coredna.com","description":"Email","type":"text"}]},"url":"{{protocol}}://{{domain}}/cdna-api/forms/submission/fe412f221fad5c6b13bb467680d181c4628520128c0d7d3763a8c6f620cb"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:00:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009214.8088/529.7709"},{"key":"Content-Length","value":"547"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"The form has been changed and submission cannot be filled anymore\"\n}"},{"id":"3815f733-904a-4047-b991-2695513aab2f","name":"Edit form submission (success)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Andrew","description":"Input field","type":"text"},{"key":"bio","value":"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\n\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\n\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\n\nFeel free to send me a message through LinkedIn or via email at","description":"Textarea","type":"text"},{"key":"age","value":"102","description":"Numeric","type":"text"},{"key":"email","value":"andrew.savetchuk@coredna.com","description":"Email","type":"text"},{"key":"favorite_food","value":"pasta","description":"Select","type":"text"},{"key":"favorite_food_multiselect[]","value":"doner","description":"Select (multiselect)","type":"text"},{"key":"favorite_food_multiselect[]","value":"pasta","description":"Select (multiselect)","type":"text"},{"key":"favorite_drinks[]","value":"lemonade","description":"Checkbox","type":"text"},{"key":"gender","value":"male","description":"Radio","type":"text"},{"key":"range[]","value":"3","description":"Range","type":"text"},{"key":"range[]","value":"5","description":"Range","type":"text"},{"key":"favorite_date","value":"2021-05-14T14:51:33+00:00","description":"DateTime","type":"text"}]},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/forms/submission/fe412f221fad5c6b13bb467680d181c4628520128c0d7d3763a8c6f620cb?properties={\n  id,\n  token,\n  stepSubmissions\n  {\n    elementSubmissions\n    {\n      name: element.name,\n      value\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","forms","submission","fe412f221fad5c6b13bb467680d181c4628520128c0d7d3763a8c6f620cb"],"query":[{"key":"properties","value":"{\n  id,\n  token,\n  stepSubmissions\n  {\n    elementSubmissions\n    {\n      name: element.name,\n      value\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2019 19:00:14 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1555009214.8088/529.7709"},{"key":"Content-Length","value":"547"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"id\": 66,\n        \"token\": \"1b1579b94eb5c67f853e0afce4741fca3e21cb728f7446032db34f479670\",\n        \"stepSubmissions\": [\n            {\n                \"elementSubmissions\": [\n                    {\n                        \"name\": \"name\",\n                        \"value\": [\n                            \"Andrew\"\n                        ]\n                    },\n                    {\n                        \"name\": \"bio\",\n                        \"value\": [\n                            \"Full Stack Web Developer with a background in developing responsive web applications and services for global customers, across the Consumer Services, Medical, and Fashion industries.\\n\\nSkilled in delivering modern and maintainable code (JavaScript, PHP), developing REST APIs, testing and debugging, binding front-end and backend services together, and deploying them to production.\\n\\nAble to manage multiple tasks and apply a solution-oriented, systematic approach to tackle complex issues. Flexible and a quick learner, practiced in using my own initiative, as well as working collaboratively with other teams.\\n\\nFeel free to send me a message through LinkedIn or via email at\"\n                        ]\n                    },\n                    {\n                        \"name\": \"age\",\n                        \"value\": [\n                            102\n                        ]\n                    },\n                    {\n                        \"name\": \"email\",\n                        \"value\": [\n                            \"andrew.savetchuk@coredna.com\"\n                        ]\n                    },\n                    {\n                        \"name\": \"phone\",\n                        \"value\": []\n                    },\n                    {\n                        \"name\": \"favorite_food\",\n                        \"value\": [\n                            \"pasta\"\n                        ]\n                    },\n                    {\n                        \"name\": \"favorite_food_multiselect\",\n                        \"value\": [\n                            \"doner\",\n                            \"pasta\"\n                        ]\n                    },\n                    {\n                        \"name\": \"favorite_drinks\",\n                        \"value\": [\n                            \"lemonade\"\n                        ]\n                    },\n                    {\n                        \"name\": \"gender\",\n                        \"value\": [\n                            \"male\"\n                        ]\n                    },\n                    {\n                        \"name\": \"favorite_date\",\n                        \"value\": [\n                            \"2021-05-14T14:51:33+00:00\"\n                        ]\n                    },\n                    {\n                        \"name\": \"image\",\n                        \"value\": []\n                    },\n                    {\n                        \"name\": \"slider\",\n                        \"value\": []\n                    },\n                    {\n                        \"name\": \"range\",\n                        \"value\": [\n                            3,\n                            5\n                        ]\n                    }\n                ]\n            }\n        ]\n    },\n    \"message\": \"The Form Submission has been added successfully.\"\n}"}],"_postman_id":"ae295abc-a004-4f13-8b91-7fac3329a486"},{"name":"Edit form submission (with changing file)","id":"6561d5f3-ad29-45ae-8da9-d7bd6411a812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"text","value":"Text from API 109 (edited with changing file)","type":"text"},{"key":"image[]","type":"file","src":"/C:/Users/mikle/Desktop/photo-ideas-1.jpg"},{"key":"_method","value":"PUT","type":"text"}]},"url":"{{protocol}}://{{domain}}/cdna-api/forms/submission/314023e3a50d6ca9a447e3551327c2366dd6dd53e7c3b3e21682c27ef439","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","submission","314023e3a50d6ca9a447e3551327c2366dd6dd53e7c3b3e21682c27ef439"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6561d5f3-ad29-45ae-8da9-d7bd6411a812"},{"name":"List form submissions","id":"072f12e4-9290-42e2-9d6c-d018cfbbb27d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/forms/submissions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forms","submissions"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8866adc0-ba7a-4a79-a639-edcea2160123","name":"List all forms submissions","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/forms/submissions"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"totalCount\": 31,\n    \"data\": {\n        \"formSubmissions\": [\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 1,\n                \"token\": \"6338016965382519d48f8823ecaa2dea93b1c8f51a1125d4084a8f4bd1e8\",\n                \"completed\": \"2022-04-04T01:26:28+00:00\",\n                \"created\": \"2022-04-04T01:26:28+00:00\",\n                \"modified\": \"2022-04-04T01:26:28+00:00\",\n                \"revision\": 19,\n                \"form\": 2,\n                \"createdBy\": 36,\n                \"modifiedBy\": 36,\n                \"stepSubmissions\": [\n                    1\n                ],\n                \"elementSubmissions\": [\n                    1,\n                    2,\n                    3,\n                    4,\n                    5\n                ],\n                \"data\": {\n                    \"name\": \"Dom Suto\",\n                    \"phone\": \"123456789\",\n                    \"email\": \"dom.suto@coredna.com\",\n                    \"details\": \"sdfsdfds\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 2,\n                \"token\": \"8a2867210b7f58151fcd50630bf811192cca9e44a136151354e7d014caa9\",\n                \"completed\": \"2022-04-11T11:26:11+00:00\",\n                \"created\": \"2022-04-11T11:26:11+00:00\",\n                \"modified\": \"2022-04-11T11:26:11+00:00\",\n                \"revision\": 24,\n                \"form\": 1,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    2\n                ],\n                \"elementSubmissions\": [\n                    6,\n                    7\n                ],\n                \"data\": {\n                    \"email\": \"dom.suto@coredna.com\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 3,\n                \"token\": \"bd2cbcac336e37fc8093c5c8e115309b86e744bcbe689516905465ec4809\",\n                \"completed\": \"2022-06-07T01:49:47+00:00\",\n                \"created\": \"2022-06-07T01:49:47+00:00\",\n                \"modified\": \"2022-06-07T01:49:47+00:00\",\n                \"revision\": 24,\n                \"form\": 1,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    3\n                ],\n                \"elementSubmissions\": [\n                    8,\n                    9\n                ],\n                \"data\": {\n                    \"email\": \"dom.suto@coredna.com\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 4,\n                \"token\": \"9b974a988d37141f754994c9d8ce72eecb821516496137c3fee14821dade\",\n                \"completed\": \"2022-07-22T09:31:11+00:00\",\n                \"created\": \"2022-07-22T09:30:38+00:00\",\n                \"modified\": \"2022-07-22T09:31:11+00:00\",\n                \"revision\": 84,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    4,\n                    5,\n                    6\n                ],\n                \"elementSubmissions\": [\n                    10,\n                    11,\n                    12,\n                    13,\n                    14,\n                    15\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\",\n                    \"Email\": \"ajit@gmail\",\n                    \"Phone\": \"7777777777\",\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 5,\n                \"token\": \"691df0fa0a950ae08a8dd2687dab37de3c33ed6180672a5022345b1f1c12\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T09:54:44+00:00\",\n                \"modified\": \"2022-07-22T09:54:44+00:00\",\n                \"revision\": 84,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    7\n                ],\n                \"elementSubmissions\": [\n                    16,\n                    17\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 6,\n                \"token\": \"75a96867acacfc8262516760d913bdf857625375bae6d57075c2b685e109\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T09:55:24+00:00\",\n                \"modified\": \"2022-07-22T09:55:24+00:00\",\n                \"revision\": 84,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    8\n                ],\n                \"elementSubmissions\": [\n                    18,\n                    19\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 7,\n                \"token\": \"833663463874cfeb4e6aedb8e50aecb90b45f0f946fc3de65d9f733827e0\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T09:57:29+00:00\",\n                \"modified\": \"2022-07-22T09:57:29+00:00\",\n                \"revision\": 84,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    9\n                ],\n                \"elementSubmissions\": [\n                    20,\n                    21\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 8,\n                \"token\": \"b4c6537ad21ad34ef2db3cc6e1e2bc07349508ba0357cdec58bacba593e3\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T09:58:00+00:00\",\n                \"modified\": \"2022-07-22T09:58:00+00:00\",\n                \"revision\": 84,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    10\n                ],\n                \"elementSubmissions\": [\n                    22,\n                    23\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 9,\n                \"token\": \"9cd5076da2e8b8c190bbb62231951d61ee9167ee38b0f867f6c414198f33\",\n                \"completed\": \"2022-07-22T10:11:55+00:00\",\n                \"created\": \"2022-07-22T10:09:50+00:00\",\n                \"modified\": \"2022-07-22T10:11:55+00:00\",\n                \"revision\": 84,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    11,\n                    12,\n                    13\n                ],\n                \"elementSubmissions\": [\n                    24,\n                    25,\n                    26,\n                    27,\n                    28,\n                    29\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\",\n                    \"Email\": \"ajit.singh@coredna.com\",\n                    \"Phone\": \"9999999999\",\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 10,\n                \"token\": \"49870d6ae0d009c3c3cdeb3730f98d63dcfaf793111f74206d73d77d179b\",\n                \"completed\": \"2022-07-22T10:20:38+00:00\",\n                \"created\": \"2022-07-22T10:20:16+00:00\",\n                \"modified\": \"2022-07-22T10:20:38+00:00\",\n                \"revision\": 93,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    14,\n                    15,\n                    16\n                ],\n                \"elementSubmissions\": [\n                    30,\n                    31,\n                    32,\n                    33,\n                    34,\n                    35\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\",\n                    \"Email\": \"ajit.singh@coredna.com\",\n                    \"Phone\": \"20202020202\",\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 11,\n                \"token\": \"171e76e5711ca9f2ab2983d527177aa8e23626d9d82f5b415e397aa32cb7\",\n                \"completed\": \"2022-07-22T10:24:45+00:00\",\n                \"created\": \"2022-07-22T10:24:21+00:00\",\n                \"modified\": \"2022-07-22T10:24:45+00:00\",\n                \"revision\": 94,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    17,\n                    18,\n                    19\n                ],\n                \"elementSubmissions\": [\n                    36,\n                    37,\n                    38,\n                    39,\n                    40,\n                    41\n                ],\n                \"data\": {\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\",\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\",\n                    \"Email\": \"ajit.singh@coredna.com\",\n                    \"Phone\": \"9999999999\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 12,\n                \"token\": \"514a4deb2a6cfb5d09d91ccc18e7774bc8c0f9de570f1a24e5f88d5cd1fc\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T10:32:00+00:00\",\n                \"modified\": \"2022-07-22T10:32:00+00:00\",\n                \"revision\": 95,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    20\n                ],\n                \"elementSubmissions\": [\n                    42,\n                    43\n                ],\n                \"data\": {\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 13,\n                \"token\": \"39840afc5f3d9c1427938736359f409db03c39cff95f79d4e596846e514e\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T10:32:10+00:00\",\n                \"modified\": \"2022-07-22T10:32:10+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    21\n                ],\n                \"elementSubmissions\": [\n                    44,\n                    45\n                ],\n                \"data\": {\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 14,\n                \"token\": \"2ada98faa773af1e4992dd7aa6fe2b36212058f6a754f27a3fbba280a2d2\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T10:32:24+00:00\",\n                \"modified\": \"2022-07-22T10:32:24+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    22\n                ],\n                \"elementSubmissions\": [\n                    46,\n                    47\n                ],\n                \"data\": {\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 15,\n                \"token\": \"b5b3447d2d4ec1eb2437cca9491d9b9f1ce2e5adada9316f7576512bf526\",\n                \"completed\": \"2022-07-22T11:06:22+00:00\",\n                \"created\": \"2022-07-22T10:37:35+00:00\",\n                \"modified\": \"2022-07-22T11:06:22+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    23,\n                    24,\n                    25\n                ],\n                \"elementSubmissions\": [\n                    48,\n                    49,\n                    50,\n                    51,\n                    52,\n                    53\n                ],\n                \"data\": {\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\",\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\",\n                    \"Email\": \"ajit.singh@coredna.com\",\n                    \"Phone\": \"9999999999\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 16,\n                \"token\": \"effc75fdcccdda8a21c08ab99b3be934899e2cff15e7d09cda365a11e622\",\n                \"completed\": \"2022-07-22T11:20:51+00:00\",\n                \"created\": \"2022-07-22T11:19:13+00:00\",\n                \"modified\": \"2022-07-22T11:20:51+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    26,\n                    27,\n                    28\n                ],\n                \"elementSubmissions\": [\n                    54,\n                    55,\n                    56,\n                    57,\n                    58,\n                    59\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\",\n                    \"Email\": \"ajit.singh@coredna.com\",\n                    \"Phone\": \"9999999999\",\n                    \"Password\": \"123456\",\n                    \"ConfirmPassword\": \"123456\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 17,\n                \"token\": \"ae1d4164edaf205e58d25b724e87b93102f15695f9e13fd0aaa4df497754\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T11:30:51+00:00\",\n                \"modified\": \"2022-07-22T11:30:51+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    29\n                ],\n                \"elementSubmissions\": [\n                    60,\n                    61\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 18,\n                \"token\": \"c0fa1897d393ee4fd537bf82e710ce00039d65cd501577c2feca27b983f3\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T11:32:41+00:00\",\n                \"modified\": \"2022-07-22T11:32:41+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    30\n                ],\n                \"elementSubmissions\": [\n                    62,\n                    63\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 19,\n                \"token\": \"efcb0c5df770442e9cf877f204b40dc089464befee01ce45e18068df650c\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T11:34:34+00:00\",\n                \"modified\": \"2022-07-22T11:34:34+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    31\n                ],\n                \"elementSubmissions\": [\n                    64,\n                    65\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 20,\n                \"token\": \"4d29ab9ff346fc9fd5a47b65a76ebeb4c4258c07916a64e5015927bf83f6\",\n                \"completed\": null,\n                \"created\": \"2022-07-22T13:02:21+00:00\",\n                \"modified\": \"2022-07-22T13:02:21+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    32\n                ],\n                \"elementSubmissions\": [\n                    66,\n                    67\n                ],\n                \"data\": {\n                    \"FirstName\": \"Ajit\",\n                    \"LastName\": \"Singh\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 21,\n                \"token\": \"991d16cc40b71fe451270828652b25778fbcdb1bd2c7497c9607aef25bbf\",\n                \"completed\": \"2022-08-10T07:33:01+00:00\",\n                \"created\": \"2022-08-10T07:33:01+00:00\",\n                \"modified\": \"2022-08-10T07:33:01+00:00\",\n                \"revision\": 83,\n                \"form\": 2,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    33\n                ],\n                \"elementSubmissions\": [\n                    68,\n                    69,\n                    70,\n                    71,\n                    72\n                ],\n                \"data\": {\n                    \"name\": \"Sam Saltis\",\n                    \"phone\": \"+61411265071\",\n                    \"email\": \"sam@coredna.com\",\n                    \"details\": \"ewfwefwe\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 22,\n                \"token\": \"f795910cb6ce0c837e0d0fcc9c05e80883b0182ed704a2a7b44d579f3629\",\n                \"completed\": null,\n                \"created\": \"2022-08-17T01:46:09+00:00\",\n                \"modified\": \"2022-08-17T01:46:09+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": 34,\n                \"modifiedBy\": 34,\n                \"stepSubmissions\": [\n                    34\n                ],\n                \"elementSubmissions\": [\n                    73,\n                    74\n                ],\n                \"data\": {\n                    \"FirstName\": \"fgsdgsd\",\n                    \"LastName\": \"dfgsfgsdfg\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 23,\n                \"token\": \"151f2665e2ca2867fae0d3fed3f7974a39f8ca7969477b7362964ac6dc80\",\n                \"completed\": null,\n                \"created\": \"2022-08-29T05:55:37+00:00\",\n                \"modified\": \"2022-08-29T05:55:37+00:00\",\n                \"revision\": 83,\n                \"form\": 2,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    35\n                ],\n                \"elementSubmissions\": [\n                    75,\n                    76,\n                    77,\n                    78,\n                    79\n                ],\n                \"data\": {\n                    \"name\": \"hgjhgj\",\n                    \"phone\": \"\",\n                    \"email\": \"t@t.com\",\n                    \"details\": \"123\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 24,\n                \"token\": \"59ed6c96457ad5a9b7cdaa42bf978af0faff04e9f891aac2cfa615aaaf6d\",\n                \"completed\": \"2022-10-07T09:24:49+00:00\",\n                \"created\": \"2022-10-07T09:24:48+00:00\",\n                \"modified\": \"2022-10-07T09:24:49+00:00\",\n                \"revision\": 24,\n                \"form\": 1,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    36\n                ],\n                \"elementSubmissions\": [\n                    80,\n                    81\n                ],\n                \"data\": {\n                    \"email\": \"tejas.prajapati@coredna.com\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 25,\n                \"token\": \"f5f55454edb11c5d137ce7b370b14a42d39d842da638152b2f287d1647bb\",\n                \"completed\": \"2022-10-19T11:59:07+00:00\",\n                \"created\": \"2022-10-19T11:59:07+00:00\",\n                \"modified\": \"2022-10-19T11:59:07+00:00\",\n                \"revision\": 24,\n                \"form\": 1,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    37\n                ],\n                \"elementSubmissions\": [\n                    82,\n                    83\n                ],\n                \"data\": {\n                    \"email\": \"tejas.prajapati@coredna.com\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 26,\n                \"token\": \"7bbfc97006387137b14fe35642b02ec700748a61bcf816c85cfabd789def\",\n                \"completed\": \"2022-10-19T12:19:56+00:00\",\n                \"created\": \"2022-10-19T12:19:56+00:00\",\n                \"modified\": \"2022-10-19T12:19:56+00:00\",\n                \"revision\": 24,\n                \"form\": 1,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    38\n                ],\n                \"elementSubmissions\": [\n                    84,\n                    85\n                ],\n                \"data\": {\n                    \"email\": \"tejas.prajapati@coredna.com\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 27,\n                \"token\": \"11dd6f006799e6b184acbc2d553990f5daef45c5c007aee3aec04f2fcda3\",\n                \"completed\": \"2022-11-29T04:47:30+00:00\",\n                \"created\": \"2022-11-29T04:47:30+00:00\",\n                \"modified\": \"2022-11-29T04:47:30+00:00\",\n                \"revision\": 99,\n                \"form\": 2,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    39\n                ],\n                \"elementSubmissions\": [\n                    86,\n                    87,\n                    88,\n                    89,\n                    90\n                ],\n                \"data\": {\n                    \"name\": \"Sam Saltis\",\n                    \"phone\": \"+61411265071\",\n                    \"email\": \"sam@coredna.com\",\n                    \"details\": \"test\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 28,\n                \"token\": \"580707efd1cb631459b04b597c5820419fe9205e18469b74020b19d4d6bc\",\n                \"completed\": \"2022-11-29T04:47:46+00:00\",\n                \"created\": \"2022-11-29T04:47:46+00:00\",\n                \"modified\": \"2022-11-29T04:47:46+00:00\",\n                \"revision\": 24,\n                \"form\": 1,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    40\n                ],\n                \"elementSubmissions\": [\n                    91,\n                    92\n                ],\n                \"data\": {\n                    \"email\": \"editor@coredna.com\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 29,\n                \"token\": \"b33e0c7491cb1f3b3fadc22a68e5f08bab27e043ad182153aa8d7eda64f2\",\n                \"completed\": \"2022-11-29T04:48:24+00:00\",\n                \"created\": \"2022-11-29T04:48:24+00:00\",\n                \"modified\": \"2022-11-29T04:48:24+00:00\",\n                \"revision\": 24,\n                \"form\": 1,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    41\n                ],\n                \"elementSubmissions\": [\n                    93,\n                    94\n                ],\n                \"data\": {\n                    \"email\": \"sam.saltis@coredna.com\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 30,\n                \"token\": \"9716a1b36faa872c21bb300af3eb7ffba871d69c4e31a2bcf80775bc15f3\",\n                \"completed\": null,\n                \"created\": \"2022-12-05T06:50:52+00:00\",\n                \"modified\": \"2022-12-05T06:50:52+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": 53,\n                \"modifiedBy\": 53,\n                \"stepSubmissions\": [\n                    42\n                ],\n                \"elementSubmissions\": [\n                    95,\n                    96\n                ],\n                \"data\": {\n                    \"FirstName\": \"test\",\n                    \"LastName\": \"test last\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 31,\n                \"token\": \"e07ecf7f1279eef2e64d273154a4996b3dd4361bc1292a3bb51b8c098173\",\n                \"completed\": \"2022-12-05T09:08:39+00:00\",\n                \"created\": \"2022-12-05T09:07:52+00:00\",\n                \"modified\": \"2022-12-05T09:08:39+00:00\",\n                \"revision\": 96,\n                \"form\": 7,\n                \"createdBy\": 53,\n                \"modifiedBy\": 53,\n                \"stepSubmissions\": [\n                    43,\n                    44,\n                    45\n                ],\n                \"elementSubmissions\": [\n                    97,\n                    98,\n                    99,\n                    100,\n                    101,\n                    102\n                ],\n                \"data\": {\n                    \"FirstName\": \"test\",\n                    \"LastName\": \"test last\",\n                    \"Email\": \"test@gmail.com\",\n                    \"Phone\": \"6355473893\",\n                    \"Password\": \"test@123\",\n                    \"ConfirmPassword\": \"test@123\"\n                }\n            }\n        ]\n    }\n}"},{"id":"29bfd64c-4287-475c-baa3-5ff8881f19ad","name":"List specific form submissions","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/forms/submissions/2"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"totalCount\": 4,\n    \"data\": {\n        \"form\": {\n            \"currentSubmission\": null,\n            \"fileInput\": false,\n            \"steps\": [\n                224,\n                225\n            ],\n            \"elements\": [\n                750,\n                751,\n                756,\n                755,\n                754,\n                752,\n                753\n            ],\n            \"id\": 2,\n            \"name\": \"Contact Us\",\n            \"identifier\": null,\n            \"created\": \"2021-03-09T03:46:36+00:00\",\n            \"modified\": \"2022-11-18T05:09:29+00:00\",\n            \"published\": \"2021-03-09T23:01:15+00:00\",\n            \"activeRevision\": 99,\n            \"revisions\": [\n                2,\n                3,\n                4,\n                5,\n                6,\n                7,\n                8,\n                9,\n                10,\n                12,\n                13,\n                17,\n                18,\n                19,\n                25,\n                26,\n                27,\n                28,\n                29,\n                30,\n                31,\n                32,\n                33,\n                34,\n                35,\n                36,\n                37,\n                38,\n                39,\n                40,\n                41,\n                42,\n                43,\n                44,\n                45,\n                46,\n                47,\n                48,\n                49,\n                50,\n                51,\n                52,\n                53,\n                54,\n                55,\n                56,\n                57,\n                58,\n                59,\n                60,\n                61,\n                62,\n                63,\n                64,\n                65,\n                66,\n                67,\n                68,\n                69,\n                70,\n                71,\n                72,\n                73,\n                74,\n                75,\n                76,\n                77,\n                78,\n                79,\n                80,\n                81,\n                82,\n                83,\n                97,\n                98,\n                99\n            ],\n            \"submissions\": [\n                1,\n                21,\n                23,\n                27\n            ],\n            \"lastRevision\": 99,\n            \"customFieldValues\": [],\n            \"customFields\": []\n        },\n        \"formSubmissions\": [\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 1,\n                \"token\": \"6338016965382519d48f8823ecaa2dea93b1c8f51a1125d4084a8f4bd1e8\",\n                \"completed\": \"2022-04-04T01:26:28+00:00\",\n                \"created\": \"2022-04-04T01:26:28+00:00\",\n                \"modified\": \"2022-04-04T01:26:28+00:00\",\n                \"revision\": 19,\n                \"form\": 2,\n                \"createdBy\": 36,\n                \"modifiedBy\": 36,\n                \"stepSubmissions\": [\n                    1\n                ],\n                \"elementSubmissions\": [\n                    1,\n                    2,\n                    3,\n                    4,\n                    5\n                ],\n                \"data\": {\n                    \"name\": \"Dom Suto\",\n                    \"phone\": \"123456789\",\n                    \"email\": \"dom.suto@coredna.com\",\n                    \"details\": \"sdfsdfds\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 21,\n                \"token\": \"991d16cc40b71fe451270828652b25778fbcdb1bd2c7497c9607aef25bbf\",\n                \"completed\": \"2022-08-10T07:33:01+00:00\",\n                \"created\": \"2022-08-10T07:33:01+00:00\",\n                \"modified\": \"2022-08-10T07:33:01+00:00\",\n                \"revision\": 83,\n                \"form\": 2,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    33\n                ],\n                \"elementSubmissions\": [\n                    68,\n                    69,\n                    70,\n                    71,\n                    72\n                ],\n                \"data\": {\n                    \"name\": \"Sam Saltis\",\n                    \"phone\": \"+61411265071\",\n                    \"email\": \"sam@coredna.com\",\n                    \"details\": \"ewfwefwe\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 23,\n                \"token\": \"151f2665e2ca2867fae0d3fed3f7974a39f8ca7969477b7362964ac6dc80\",\n                \"completed\": null,\n                \"created\": \"2022-08-29T05:55:37+00:00\",\n                \"modified\": \"2022-08-29T05:55:37+00:00\",\n                \"revision\": 83,\n                \"form\": 2,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    35\n                ],\n                \"elementSubmissions\": [\n                    75,\n                    76,\n                    77,\n                    78,\n                    79\n                ],\n                \"data\": {\n                    \"name\": \"hgjhgj\",\n                    \"phone\": \"\",\n                    \"email\": \"t@t.com\",\n                    \"details\": \"123\",\n                    \"captcha\": \"\"\n                }\n            },\n            {\n                \"hateoasLinks\": [],\n                \"showUrl\": null,\n                \"deleteUrl\": null,\n                \"id\": 27,\n                \"token\": \"11dd6f006799e6b184acbc2d553990f5daef45c5c007aee3aec04f2fcda3\",\n                \"completed\": \"2022-11-29T04:47:30+00:00\",\n                \"created\": \"2022-11-29T04:47:30+00:00\",\n                \"modified\": \"2022-11-29T04:47:30+00:00\",\n                \"revision\": 99,\n                \"form\": 2,\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"stepSubmissions\": [\n                    39\n                ],\n                \"elementSubmissions\": [\n                    86,\n                    87,\n                    88,\n                    89,\n                    90\n                ],\n                \"data\": {\n                    \"name\": \"Sam Saltis\",\n                    \"phone\": \"+61411265071\",\n                    \"email\": \"sam@coredna.com\",\n                    \"details\": \"test\",\n                    \"captcha\": \"\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"072f12e4-9290-42e2-9d6c-d018cfbbb27d"}],"id":"ec2b6605-a229-4990-b1ce-987886b762f4","_postman_id":"ec2b6605-a229-4990-b1ce-987886b762f4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"b0995b94-4da9-422b-b66b-94739bf9a810","description":"<p>Forms module</p>\n","_postman_id":"b0995b94-4da9-422b-b66b-94739bf9a810","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Hooks","item":[{"name":"Trigger webhook","id":"124f1763-8f40-4a35-95a4-5a3ed559d8b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Custom-Header","value":"Header value","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"test key\": \"test value\",\r\n    \"triggered from\": \"webhook\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/webhook/fRlsT-ZSPK2-iRbG6-FdJNi-7CndP-0YBMU/first/second/third?qp1=value 1&qp2=value 2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","webhook","fRlsT-ZSPK2-iRbG6-FdJNi-7CndP-0YBMU","first","second","third"],"host":["{{domain}}"],"query":[{"key":"qp1","value":"value 1"},{"key":"qp2","value":"value 2"}],"variable":[]}},"response":[],"_postman_id":"124f1763-8f40-4a35-95a4-5a3ed559d8b2"}],"id":"00483212-2ce2-4661-9a75-a7721717dca7","_postman_id":"00483212-2ce2-4661-9a75-a7721717dca7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Invoices","item":[{"name":"Payment Methods","item":[{"name":"Show payment methods","id":"2c164611-3a34-40e8-ab3b-e3a20056e19e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/invoices/payment-methods","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","invoices","payment-methods"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b3b721ce-4f5d-4f52-b3cf-171d54bccc6b","name":"Show all payment methods","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/invoices/payment-methods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"totalCount\": 2,\n    \"data\": {\n        \"paymentMethods\": [\n            {\n                \"publishableKey\": \"pk_test_abcd\",\n                \"accountId\": \"acct_HHYE337J2\",\n                \"paymentServiceProviderName\": \"Stripe\",\n                \"paymentServiceProviderType\": \"stripe\",\n                \"paymentService\": {},\n                \"id\": 1,\n                \"name\": \"Stripe\",\n                \"position\": 1,\n                \"testMode\": true,\n                \"created\": \"2025-07-24T06:46:34+00:00\",\n                \"modified\": \"2025-08-18T01:32:36+00:00\",\n                \"active\": true,\n                \"site\": 1\n            },\n            {\n                \"failureRate\": \"never\",\n                \"authorizationSupported\": false,\n                \"partialCaptureSupported\": false,\n                \"paymentServiceProviderName\": \"Mock Pay\",\n                \"paymentServiceProviderType\": \"mock-pay\",\n                \"paymentService\": {},\n                \"id\": 2,\n                \"name\": \"Mock Pay\",\n                \"position\": 2,\n                \"testMode\": false,\n                \"created\": \"2025-08-04T05:33:09+00:00\",\n                \"modified\": \"2025-08-18T01:32:25+00:00\",\n                \"active\": true,\n                \"site\": 1\n            }\n        ]\n    }\n}"},{"id":"020b38cf-8bbd-4296-9b06-c9880d548929","name":"Show active payment methods","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/invoices/payment-methods?active=1","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","invoices","payment-methods"],"query":[{"key":"active","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"totalCount\": 2,\n    \"data\": {\n        \"paymentMethods\": [\n            {\n                \"publishableKey\": \"pk_test_ABCD\",\n                \"accountId\": \"acct_H3GN35\",\n                \"paymentServiceProviderName\": \"Stripe\",\n                \"paymentServiceProviderType\": \"stripe\",\n                \"paymentService\": {},\n                \"id\": 1,\n                \"name\": \"Stripe\",\n                \"position\": 1,\n                \"testMode\": true,\n                \"created\": \"2025-07-24T06:46:34+00:00\",\n                \"modified\": \"2025-08-18T01:32:36+00:00\",\n                \"active\": true,\n                \"site\": 1\n            },\n            {\n                \"failureRate\": \"never\",\n                \"authorizationSupported\": false,\n                \"partialCaptureSupported\": false,\n                \"paymentServiceProviderName\": \"Mock Pay\",\n                \"paymentServiceProviderType\": \"mock-pay\",\n                \"paymentService\": {},\n                \"id\": 2,\n                \"name\": \"Mock Pay\",\n                \"position\": 2,\n                \"testMode\": false,\n                \"created\": \"2025-08-04T05:33:09+00:00\",\n                \"modified\": \"2025-08-18T01:32:25+00:00\",\n                \"active\": true,\n                \"site\": 1\n            }\n        ]\n    }\n}"}],"_postman_id":"2c164611-3a34-40e8-ab3b-e3a20056e19e"}],"id":"d77eb5c3-57e1-49f8-9df5-f4861f153617","_postman_id":"d77eb5c3-57e1-49f8-9df5-f4861f153617","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"4dde1f92-5fc2-4047-9e9d-6cb8581b186a","_postman_id":"4dde1f92-5fc2-4047-9e9d-6cb8581b186a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Menus","item":[{"name":"Menus","item":[{"name":"List menus","id":"0c1d4abc-4af7-4a30-a794-c22005bda49c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/menus/menus?properties={\n  menus {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url,\n      children {\n        id,\n        name,\n        type,\n        url\n      }\n    }\n  }\n}","description":"<p>List the menus available.</p>\n<p>If you only want to retrieve modules with a specific name, this can be specified through a query parameter (see examples).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","menus"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  menus {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url,\n      children {\n        id,\n        name,\n        type,\n        url\n      }\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"6de10835-cd57-4911-9919-5bbbe0003c93","name":"List Menus with root elements and children","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/menus/menus?properties={\n  menus {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url,\n      children {\n        id,\n        name,\n        type,\n        url\n      }\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","menus","menus"],"query":[{"key":"properties","value":"{\n  menus {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url,\n      children {\n        id,\n        name,\n        type,\n        url\n      }\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 15:00:10 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588258810.4227/383.6551"},{"key":"Expires","value":"Sat, 02 May 2020 15:00:10 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588258809.cds081.fr8.hc,1588258809.cds065.fr8.sc,1588258810.cdn2-wafbe02-fra1.stackpath.systems.-.wx,1588258810.cds065.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"5341"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"menus\": [\n            {\n                \"id\": 1,\n                \"name\": \"header menu\",\n                \"rootElements\": [\n                    {\n                        \"id\": 3,\n                        \"name\": \"Core Coffee (Home)\",\n                        \"type\": \"entity\",\n                        \"url\": \"/\",\n                        \"children\": []\n                    },\n                    {\n                        \"id\": 27,\n                        \"name\": \"Blog\",\n                        \"type\": \"url\",\n                        \"url\": \"blogs/main-blog\",\n                        \"children\": []\n                    },\n                    {\n                        \"id\": 25,\n                        \"name\": \"Core dna\",\n                        \"type\": \"url\",\n                        \"url\": \"https://www.coredna.com/?ref=demo\",\n                        \"children\": []\n                    },\n                    {\n                        \"id\": 33,\n                        \"name\": \"Events\",\n                        \"type\": \"url\",\n                        \"url\": \"blogs/events-listing\",\n                        \"children\": []\n                    },\n                    {\n                        \"id\": 15,\n                        \"name\": \"More Pages\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 16,\n                                \"name\": \"About Us\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 18,\n                                \"name\": \"Inspiration\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 29,\n                                \"name\": \"Work With Us\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 30,\n                                \"name\": \"Coffee Tips\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 2,\n                \"name\": \"Footer Menu\",\n                \"rootElements\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Coffee Sellers\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 5,\n                                \"name\": \"Starbucks.com\",\n                                \"type\": \"url\",\n                                \"url\": \"https://www.starbucks.com/\"\n                            },\n                            {\n                                \"id\": 6,\n                                \"name\": \"Dunkin' Donuts\",\n                                \"type\": \"url\",\n                                \"url\": \"https://www.dunkindonuts.com/en\"\n                            },\n                            {\n                                \"id\": 7,\n                                \"name\": \"Blue Bottle Coffee\",\n                                \"type\": \"url\",\n                                \"url\": \"https://bluebottlecoffee.com/\"\n                            },\n                            {\n                                \"id\": 8,\n                                \"name\": \"La Colombe Coffee\",\n                                \"type\": \"url\",\n                                \"url\": \"https://www.lacolombe.com/\"\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 9,\n                        \"name\": \"Coffee Types\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 10,\n                                \"name\": \"Cappuccino\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 11,\n                                \"name\": \"Espresso\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 12,\n                                \"name\": \"Americano\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 13,\n                                \"name\": \"Mocha\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 20,\n                        \"name\": \"Wikipedia Coffee Pages\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 21,\n                                \"name\": \"Coffee Bean\",\n                                \"type\": \"url\",\n                                \"url\": \"https://en.wikipedia.org/wiki/Coffee_bean\"\n                            },\n                            {\n                                \"id\": 22,\n                                \"name\": \"Coffea Plant\",\n                                \"type\": \"url\",\n                                \"url\": \"https://en.wikipedia.org/wiki/Coffea\"\n                            },\n                            {\n                                \"id\": 23,\n                                \"name\": \"Coffee Production\",\n                                \"type\": \"url\",\n                                \"url\": \"https://en.wikipedia.org/wiki/Coffee_production\"\n                            },\n                            {\n                                \"id\": 24,\n                                \"name\": \"Flat White Coffee\",\n                                \"type\": \"url\",\n                                \"url\": \"https://en.wikipedia.org/wiki/Flat_white\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 3,\n                \"name\": \"terms conditions\",\n                \"rootElements\": [\n                    {\n                        \"id\": 2,\n                        \"name\": \"Terms & conditions\",\n                        \"type\": \"entity\",\n                        \"url\": \"/terms-conditions\",\n                        \"children\": []\n                    },\n                    {\n                        \"id\": 32,\n                        \"name\": \"Admin Login\",\n                        \"type\": \"url\",\n                        \"url\": \"./cdna-admin/\",\n                        \"children\": []\n                    }\n                ]\n            },\n            {\n                \"id\": 4,\n                \"name\": \"top buttons\",\n                \"rootElements\": [\n                    {\n                        \"id\": 4,\n                        \"name\": \"Like Coffee\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": []\n                    },\n                    {\n                        \"id\": 14,\n                        \"name\": \"Love Coffee\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": []\n                    }\n                ]\n            },\n            {\n                \"id\": 5,\n                \"name\": \"footer-0\",\n                \"rootElements\": [\n                    {\n                        \"id\": 34,\n                        \"name\": \"Boston locations\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 35,\n                                \"name\": \"South Boston\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 36,\n                                \"name\": \"North End\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 37,\n                                \"name\": \"Seaport\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 48,\n                                \"name\": \"Back Bay\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 79,\n                                \"name\": \"Quincy\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 61,\n                        \"name\": \"Phone\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 62,\n                                \"name\": \"781-555-1234\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 63,\n                                \"name\": \"617-555-1245\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 6,\n                \"name\": \"footer-1\",\n                \"rootElements\": [\n                    {\n                        \"id\": 38,\n                        \"name\": \"Atlanta Locations\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 39,\n                                \"name\": \"Midtown\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 40,\n                                \"name\": \"Kirkwood\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 41,\n                                \"name\": \"Old fourth ward\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 47,\n                                \"name\": \"Inman Park\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 64,\n                        \"name\": \"Phone\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 65,\n                                \"name\": \"212-555-9876\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 66,\n                                \"name\": \"917-555-5656\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 7,\n                \"name\": \"footer-2\",\n                \"rootElements\": [\n                    {\n                        \"id\": 42,\n                        \"name\": \"Dallas locations\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 43,\n                                \"name\": \"Old East Dallas\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 44,\n                                \"name\": \"Downtown Dallas\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 45,\n                                \"name\": \"Deep Ellum\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 46,\n                                \"name\": \"Design District\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 67,\n                        \"name\": \"Phone\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 68,\n                                \"name\": \"469-555-4565\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 69,\n                                \"name\": \"214-555-8855\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 8,\n                \"name\": \"footer-3\",\n                \"rootElements\": [\n                    {\n                        \"id\": 49,\n                        \"name\": \"NYC locations\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 50,\n                                \"name\": \"Midtown\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 51,\n                                \"name\": \"Times Square\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 52,\n                                \"name\": \"Tenderloin\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 53,\n                                \"name\": \"NoMad\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 54,\n                                \"name\": \"East Village\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 55,\n                                \"name\": \"Hell's Kitchen\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 9,\n                \"name\": \"footer-4\",\n                \"rootElements\": [\n                    {\n                        \"id\": 56,\n                        \"name\": \"Paris locations\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 58,\n                                \"name\": \"Marais\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 57,\n                                \"name\": \"Louvre\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 59,\n                                \"name\": \"Latin Quarter\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 60,\n                                \"name\": \"Champs-Élysées\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    }\n                ]\n            },\n            {\n                \"id\": 10,\n                \"name\": \"footer-default\",\n                \"rootElements\": [\n                    {\n                        \"id\": 70,\n                        \"name\": \"Locations\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 71,\n                                \"name\": \"Boston\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 72,\n                                \"name\": \"Atlanta\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 76,\n                                \"name\": \"Paris (coming Q2 2020)\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 77,\n                                \"name\": \"NYC\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 78,\n                                \"name\": \"Dallas\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 73,\n                        \"name\": \"Phone\",\n                        \"type\": \"text\",\n                        \"url\": null,\n                        \"children\": [\n                            {\n                                \"id\": 74,\n                                \"name\": \"1-800-COFFEE\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            },\n                            {\n                                \"id\": 75,\n                                \"name\": \"1-800-266-9999\",\n                                \"type\": \"text\",\n                                \"url\": null\n                            }\n                        ]\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"408c4338-42d9-409d-82ff-62b318d3d2e6","name":"List Menus with matching name","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/menus/menus?name=header menu&properties={\n  menus {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","menus","menus"],"query":[{"key":"name","value":"header menu"},{"key":"properties","value":"{\n  menus {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 15:12:59 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588259579.7875/486.4538"},{"key":"Expires","value":"Sat, 02 May 2020 15:12:59 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588259578.cds160.fr8.hc,1588259578.cds152.fr8.sc,1588259579.cdn2-wafbe02-fra1.stackpath.systems.-.wx,1588259579.cds152.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"422"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"menus\": [\n            {\n                \"id\": 1,\n                \"name\": \"header menu\",\n                \"rootElements\": [\n                    {\n                        \"id\": 3,\n                        \"name\": \"Core Coffee (Home)\",\n                        \"type\": \"entity\",\n                        \"url\": \"/\"\n                    },\n                    {\n                        \"id\": 27,\n                        \"name\": \"Blog\",\n                        \"type\": \"url\",\n                        \"url\": \"blogs/main-blog\"\n                    },\n                    {\n                        \"id\": 25,\n                        \"name\": \"Core dna\",\n                        \"type\": \"url\",\n                        \"url\": \"https://www.coredna.com/?ref=demo\"\n                    },\n                    {\n                        \"id\": 33,\n                        \"name\": \"Events\",\n                        \"type\": \"url\",\n                        \"url\": \"blogs/events-listing\"\n                    },\n                    {\n                        \"id\": 15,\n                        \"name\": \"More Pages\",\n                        \"type\": \"text\",\n                        \"url\": null\n                    }\n                ]\n            }\n        ]\n    }\n}"},{"id":"d3af86d2-1094-4512-b4bf-654a3ce7937c","name":"List Multiple menus with matching names","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/menus/menus?|name=header menu,footer menu&properties={\n  menus {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","menus","menus"],"query":[{"key":"|name","value":"header menu,footer menu"},{"key":"properties","value":"{\n  menus {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 15:13:55 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588259635.2987/501.6761"},{"key":"Expires","value":"Sat, 02 May 2020 15:13:54 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588259634.cds160.fr8.hc,1588259634.cds122.fr8.sc,1588259635.cdn2-redis02-fra1.stackpath.systems.-.wx,1588259635.cds122.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"650"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"menus\": [\n            {\n                \"id\": 1,\n                \"name\": \"header menu\",\n                \"rootElements\": [\n                    {\n                        \"id\": 3,\n                        \"name\": \"Core Coffee (Home)\",\n                        \"type\": \"entity\",\n                        \"url\": \"/\"\n                    },\n                    {\n                        \"id\": 27,\n                        \"name\": \"Blog\",\n                        \"type\": \"url\",\n                        \"url\": \"blogs/main-blog\"\n                    },\n                    {\n                        \"id\": 25,\n                        \"name\": \"Core dna\",\n                        \"type\": \"url\",\n                        \"url\": \"https://www.coredna.com/?ref=demo\"\n                    },\n                    {\n                        \"id\": 33,\n                        \"name\": \"Events\",\n                        \"type\": \"url\",\n                        \"url\": \"blogs/events-listing\"\n                    },\n                    {\n                        \"id\": 15,\n                        \"name\": \"More Pages\",\n                        \"type\": \"text\",\n                        \"url\": null\n                    }\n                ]\n            },\n            {\n                \"id\": 2,\n                \"name\": \"Footer Menu\",\n                \"rootElements\": [\n                    {\n                        \"id\": 1,\n                        \"name\": \"Coffee Sellers\",\n                        \"type\": \"text\",\n                        \"url\": null\n                    },\n                    {\n                        \"id\": 9,\n                        \"name\": \"Coffee Types\",\n                        \"type\": \"text\",\n                        \"url\": null\n                    },\n                    {\n                        \"id\": 20,\n                        \"name\": \"Wikipedia Coffee Pages\",\n                        \"type\": \"text\",\n                        \"url\": null\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"0c1d4abc-4af7-4a30-a794-c22005bda49c"},{"name":"Show menu","id":"3a59c199-93e1-45a1-92c2-70e82808ab57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/menus/menu/1?properties={\n  menu {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url,\n      children {\n        id,\n        name,\n        type,\n        url\n      }\n    }\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","menu","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  menu {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url,\n      children {\n        id,\n        name,\n        type,\n        url\n      }\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"cc3ea9eb-8326-4c18-9333-4cf0c8af2f13","name":"Show menu","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/menus/menu/1?properties={\n  menu {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url,\n      children {\n        id,\n        name,\n        type,\n        url\n      }\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","menus","menu","1"],"query":[{"key":"properties","value":"{\n  menu {\n    id,\n    name,\n    rootElements {\n      id,\n      name,\n      type,\n      url,\n      children {\n        id,\n        name,\n        type,\n        url\n      }\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:31:19 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267879.0642/476.2290"},{"key":"Expires","value":"Sat, 02 May 2020 17:31:18 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267878.cds054.fr8.hn,1588267878.cds153.fr8.sc,1588267879.cdn2-redis01-fra1.stackpath.systems.-.wx,1588267879.cds153.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"710"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"menu\": {\n            \"id\": 1,\n            \"name\": \"header menu\",\n            \"rootElements\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Core Coffee (Home)\",\n                    \"type\": \"entity\",\n                    \"url\": \"/\",\n                    \"children\": []\n                },\n                {\n                    \"id\": 27,\n                    \"name\": \"Blog\",\n                    \"type\": \"url\",\n                    \"url\": \"blogs/main-blog\",\n                    \"children\": []\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Core dna\",\n                    \"type\": \"url\",\n                    \"url\": \"https://www.coredna.com/?ref=demo\",\n                    \"children\": []\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Events\",\n                    \"type\": \"url\",\n                    \"url\": \"blogs/events-listing\",\n                    \"children\": []\n                },\n                {\n                    \"id\": 15,\n                    \"name\": \"More Pages\",\n                    \"type\": \"text\",\n                    \"url\": null,\n                    \"children\": [\n                        {\n                            \"id\": 16,\n                            \"name\": \"About Us\",\n                            \"type\": \"text\",\n                            \"url\": null\n                        },\n                        {\n                            \"id\": 18,\n                            \"name\": \"Inspiration\",\n                            \"type\": \"text\",\n                            \"url\": null\n                        },\n                        {\n                            \"id\": 29,\n                            \"name\": \"Work With Us\",\n                            \"type\": \"text\",\n                            \"url\": null\n                        },\n                        {\n                            \"id\": 30,\n                            \"name\": \"Coffee Tips\",\n                            \"type\": \"text\",\n                            \"url\": null\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"3a59c199-93e1-45a1-92c2-70e82808ab57"},{"name":"Add menu","id":"7f432767-a048-4539-bcf9-d132ae6cede8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New menu from API\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/menu","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","menu"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"785cf913-31ec-4865-a37b-ba30f216f94f","name":"Add Menu","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New menu from API\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/menu"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:03:35 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"SPSI=caff4647527d0bbecda3a4445b22babc; path=/;"},{"key":"x-coredna-heartbeat","value":"1588266215.5586/866.6110"},{"key":"Expires","value":"Sat, 02 May 2020 17:03:34 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588266214.cds081.fr8.hc,1588266214.cds156.fr8.sc,1588266215.cdn2-redis01-fra1.stackpath.systems.-.wx,1588266215.cds156.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"273"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"menu\": {\n            \"rootElements\": [],\n            \"id\": 11,\n            \"name\": \"New menu from API\",\n            \"created\": \"2020-04-30T17:03:35+00:00\",\n            \"modified\": \"2020-04-30T17:03:35+00:00\",\n            \"elements\": [],\n            \"customFieldValues\": [],\n            \"customFields\": []\n        }\n    },\n    \"message\": \"The Menu has been added successfully.\"\n}"}],"_postman_id":"7f432767-a048-4539-bcf9-d132ae6cede8"},{"name":"Change menu name","id":"2a640848-c8b2-4b6c-a914-79efc0b36ad8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed menu title from API\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/menu/11","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","menu","11"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9b73620e-2485-47d0-96cf-4e513e50576b","name":"Change menu name","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed menu title from API\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/menu/11"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:05:23 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"SPSI=cc81a4135eb84e32d596e23e030a4100; path=/;"},{"key":"x-coredna-heartbeat","value":"1588266323.7803/591.3062"},{"key":"Expires","value":"Sat, 02 May 2020 17:05:23 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588266322.cds104.fr8.hc,1588266322.cds130.fr8.sc,1588266323.cdn2-wafbe04-fra1.stackpath.systems.-.wx,1588266323.cds130.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"283"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"menu\": {\n            \"rootElements\": [],\n            \"id\": 11,\n            \"name\": \"Changed menu title from API\",\n            \"created\": \"2020-04-30T17:03:35+00:00\",\n            \"modified\": \"2020-04-30T17:05:23+00:00\",\n            \"elements\": [],\n            \"customFieldValues\": [],\n            \"customFields\": []\n        }\n    },\n    \"message\": \"The Menu has been saved successfully.\"\n}"}],"_postman_id":"2a640848-c8b2-4b6c-a914-79efc0b36ad8"},{"name":"Delete menu","id":"7640817c-e1a0-49d3-9db5-803d2b1406b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/menus/menu/11","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","menu","11"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"2da5d40f-e1ef-4486-8da2-846840fb1393","name":"Delete menu","originalRequest":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/menus/menu/11"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:06:13 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588266373.3424/552.3751"},{"key":"Expires","value":"Sat, 02 May 2020 17:06:12 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588266372.cds104.fr8.hc,1588266372.cds144.fr8.sc,1588266373.cdn2-wafbe03-fra1.stackpath.systems.-.wx,1588266373.cds144.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"82"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Menu has successfully been deleted.\"\n}"}],"_postman_id":"7640817c-e1a0-49d3-9db5-803d2b1406b8"}],"id":"0996443e-d282-459d-b422-8f6ac02d9537","_postman_id":"0996443e-d282-459d-b422-8f6ac02d9537","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Elements","item":[{"name":"List elements","id":"a0b079c5-3982-4343-bb38-124bf4f933fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/menus/elements/3?properties={\n  elements {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}","description":"<p>List menu elements for the menu ID specified in the URL.</p>\n<p>If you only want to retrieve root elements, you can specify parent=NULL (also see the corresponding example).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","elements","3"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  elements {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}"}],"variable":[]}},"response":[{"id":"a0682c4a-3d3d-4ab0-88bb-0132be8335fb","name":"List Elements","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/menus/elements/3?properties={\n  elements {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","menus","elements","3"],"query":[{"key":"properties","value":"{\n  elements {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 14:55:13 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588258513.6541/334.0781"},{"key":"Expires","value":"Sat, 02 May 2020 14:55:13 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588258512.cds152.fr8.hc,1588258512.cds041.fr8.sc,1588258513.cdn2-wafbe01-fra1.stackpath.systems.-.wx,1588258513.cds041.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"405"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"elements\": [\n            {\n                \"id\": 2,\n                \"parent\": null,\n                \"name\": \"Terms & conditions\",\n                \"type\": \"entity\",\n                \"url\": \"/terms-conditions\",\n                \"position\": 1,\n                \"controllerName\": null,\n                \"controller\": null,\n                \"entity\": \"Pages\\\\Entities\\\\Page\",\n                \"recordId\": 2\n            },\n            {\n                \"id\": 32,\n                \"parent\": null,\n                \"name\": \"Admin Login\",\n                \"type\": \"url\",\n                \"url\": \"./cdna-admin/\",\n                \"position\": 2,\n                \"controllerName\": null,\n                \"controller\": null,\n                \"entity\": null,\n                \"recordId\": null\n            }\n        ]\n    }\n}"},{"id":"e4211a35-2842-47e2-8397-fc8344c80485","name":"List Root Elements","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/menus/elements/1?properties={\n  elements {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}&parent=NULL","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","menus","elements","1"],"query":[{"key":"properties","value":"{\n  elements {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}"},{"key":"parent","value":"NULL"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 15:07:02 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588259222.7748/338.8088"},{"key":"Expires","value":"Sat, 02 May 2020 15:07:02 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588259221.cds017.fr8.hc,1588259222.cds064.fr8.sc,1588259222.cdn2-wafbe01-fra1.stackpath.systems.-.wx,1588259222.cds064.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"879"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"elements\": [\n            {\n                \"id\": 3,\n                \"parent\": null,\n                \"name\": \"Core Coffee (Home)\",\n                \"type\": \"entity\",\n                \"url\": \"/\",\n                \"position\": 1,\n                \"controllerName\": null,\n                \"controller\": null,\n                \"entity\": \"Pages\\\\Entities\\\\Page\",\n                \"recordId\": 1\n            },\n            {\n                \"id\": 15,\n                \"parent\": null,\n                \"name\": \"More Pages\",\n                \"type\": \"text\",\n                \"url\": null,\n                \"position\": 6,\n                \"controllerName\": null,\n                \"controller\": null,\n                \"entity\": null,\n                \"recordId\": null\n            },\n            {\n                \"id\": 25,\n                \"parent\": null,\n                \"name\": \"Core dna\",\n                \"type\": \"url\",\n                \"url\": \"https://www.coredna.com/?ref=demo\",\n                \"position\": 4,\n                \"controllerName\": null,\n                \"controller\": null,\n                \"entity\": null,\n                \"recordId\": null\n            },\n            {\n                \"id\": 27,\n                \"parent\": null,\n                \"name\": \"Blog\",\n                \"type\": \"url\",\n                \"url\": \"blogs/main-blog\",\n                \"position\": 3,\n                \"controllerName\": null,\n                \"controller\": null,\n                \"entity\": null,\n                \"recordId\": null\n            },\n            {\n                \"id\": 33,\n                \"parent\": null,\n                \"name\": \"Events\",\n                \"type\": \"url\",\n                \"url\": \"blogs/events-listing\",\n                \"position\": 5,\n                \"controllerName\": null,\n                \"controller\": null,\n                \"entity\": null,\n                \"recordId\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"a0b079c5-3982-4343-bb38-124bf4f933fc"},{"name":"Show element","id":"cd9f6ceb-d274-4bf2-9541-d52f39608235","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/menus/element/2?properties={\n  element {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","element","2"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  element {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}"}],"variable":[]}},"response":[{"id":"bcd3eb14-6c8e-4be8-b631-c04108e828c5","name":"Show element","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/menus/element/2?properties={\n  element {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","menus","element","2"],"query":[{"key":"properties","value":"{\n  element {\n    id,\n\tparent:parent.id,\n    name,\n    type,\n    url,\n    position,\n    controllerName,\n    controller,\n    entity,\n    recordId\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:26:48 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267608.8079/589.8890"},{"key":"Expires","value":"Sat, 02 May 2020 17:26:48 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267607.cds151.fr8.hn,1588267607.cds106.fr8.sc,1588267608.cdn2-wafbe04-fra1.stackpath.systems.-.wx,1588267608.cds106.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"237"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"element\": {\n            \"id\": 2,\n            \"parent\": null,\n            \"name\": \"Terms & conditions\",\n            \"type\": \"entity\",\n            \"url\": \"/terms-conditions\",\n            \"position\": 1,\n            \"controllerName\": null,\n            \"controller\": null,\n            \"entity\": \"Pages\\\\Entities\\\\Page\",\n            \"recordId\": 2\n        }\n    }\n}"}],"_postman_id":"cd9f6ceb-d274-4bf2-9541-d52f39608235"},{"name":"Add element","id":"f8f6368e-722f-4511-8bbc-3da7ed13d39d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New menu element\",\n\t\"type\": \"text\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/element/12","description":"<p>Add element to the menu specified in the URL.</p>\n<p>There are 4 different types of menu elements:</p>\n<ol>\n<li>text =&gt; Only display the text specified in the name property</li>\n<li>url =&gt; use the url specified in the url property</li>\n<li>entity =&gt; generate the url for the record based on entity and recordId. Entity must be UrlAddressable (like Pages\\Entities\\Page, Blogs\\Entities\\Post etc.)</li>\n<li>controller =&gt; generate the url for the record as reference to a controller function. Does NOT consider custom urls and rewrites.</li>\n</ol>\n<p>There are different examples for the most common types of menu elements.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","element","12"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"5b4ef800-68ec-4223-87cc-cd0e851cd2e3","name":"Add element: Text","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New menu element\",\n\t\"type\": \"text\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/element/12"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:18:11 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267091.8563/484.3349"},{"key":"Expires","value":"Sat, 02 May 2020 17:18:11 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267090.cds086.fr8.hc,1588267090.cds073.fr8.sc,1588267091.cdn2-redis02-fra1.stackpath.systems.-.wx,1588267091.cds073.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"536"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"element\": {\n            \"id\": 80,\n            \"name\": \"New menu element\",\n            \"type\": \"text\",\n            \"url\": null,\n            \"controllerName\": null,\n            \"controller\": null,\n            \"moduleRoute\": null,\n            \"controllerRoute\": null,\n            \"responseVariable\": null,\n            \"includeChildren\": null,\n            \"displayProperty\": null,\n            \"position\": 1,\n            \"entity\": null,\n            \"recordId\": null,\n            \"created\": \"2020-04-30T17:18:11+00:00\",\n            \"modified\": \"2020-04-30T17:18:11+00:00\",\n            \"parent\": null,\n            \"children\": [],\n            \"menu\": 12,\n            \"controllerParameters\": [],\n            \"customFieldValues\": [],\n            \"customFields\": [\n                4\n            ]\n        }\n    },\n    \"message\": \"The Menu Element has been added successfully.\"\n}"},{"id":"b1d49922-2076-4e5e-89aa-adeeb7a70d08","name":"Add element: Url","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"External link\",\n\t\"type\": \"url\",\n\t\"url\": \"https://www.wikipedia.org\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/element/12"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:19:30 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267170.1123/654.2590"},{"key":"Expires","value":"Sat, 02 May 2020 17:19:29 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267169.cds067.fr8.hc,1588267169.cds009.fr8.sc,1588267170.cdn2-wafbe02-fra1.stackpath.systems.-.wx,1588267170.cds009.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"557"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"element\": {\n            \"id\": 81,\n            \"name\": \"External link\",\n            \"type\": \"url\",\n            \"url\": \"https://www.wikipedia.org\",\n            \"controllerName\": null,\n            \"controller\": null,\n            \"moduleRoute\": null,\n            \"controllerRoute\": null,\n            \"responseVariable\": null,\n            \"includeChildren\": null,\n            \"displayProperty\": null,\n            \"position\": 2,\n            \"entity\": null,\n            \"recordId\": null,\n            \"created\": \"2020-04-30T17:19:30+00:00\",\n            \"modified\": \"2020-04-30T17:19:30+00:00\",\n            \"parent\": null,\n            \"children\": [],\n            \"menu\": 12,\n            \"controllerParameters\": [],\n            \"customFieldValues\": [],\n            \"customFields\": [\n                4\n            ]\n        }\n    },\n    \"message\": \"The Menu Element has been added successfully.\"\n}"},{"id":"28e32d58-2cd1-4530-965c-b2dad438c521","name":"Add element: Entity / Record","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Link to T&C page\",\n\t\"type\": \"entity\",\n\t\"entity\": \"Pages\\\\Entities\\\\Page\",\n\t\"recordId\": 3\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/element/12"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:21:12 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267272.8652/439.2190"},{"key":"Expires","value":"Sat, 02 May 2020 17:21:12 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267272.cds067.fr8.hc,1588267272.cds135.fr8.sc,1588267272.cdn2-wafbe04-fra1.stackpath.systems.-.wx,1588267272.cds135.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"564"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"element\": {\n            \"id\": 82,\n            \"name\": \"Link to T&C page\",\n            \"type\": \"entity\",\n            \"url\": \"/about\",\n            \"controllerName\": null,\n            \"controller\": null,\n            \"moduleRoute\": null,\n            \"controllerRoute\": null,\n            \"responseVariable\": null,\n            \"includeChildren\": null,\n            \"displayProperty\": null,\n            \"position\": 3,\n            \"entity\": \"Pages\\\\Entities\\\\Page\",\n            \"recordId\": 3,\n            \"created\": \"2020-04-30T17:21:12+00:00\",\n            \"modified\": \"2020-04-30T17:21:12+00:00\",\n            \"parent\": null,\n            \"children\": [],\n            \"menu\": 12,\n            \"controllerParameters\": [],\n            \"customFieldValues\": [],\n            \"customFields\": [\n                4\n            ]\n        }\n    },\n    \"message\": \"The Menu Element has been added successfully.\"\n}"}],"_postman_id":"f8f6368e-722f-4511-8bbc-3da7ed13d39d"},{"name":"Change element","id":"598ac790-b92d-4ac4-b0d2-8251eb5c7229","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed to URL\",\n\t\"type\": \"url\",\n\t\"url\": \"https://www.google.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/element/80","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","element","80"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"3b327dd2-dfef-474f-93a5-8ef1c768e4ad","name":"Change element","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Changed to URL\",\n\t\"type\": \"url\",\n\t\"url\": \"https://www.google.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/menus/element/80"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:23:46 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267426.921/431.0179"},{"key":"Expires","value":"Sat, 02 May 2020 17:23:46 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267426.cds136.fr8.hc,1588267426.cds140.fr8.sc,1588267426.cdn2-wafbe03-fra1.stackpath.systems.-.wx,1588267426.cds140.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"555"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"element\": {\n            \"id\": 80,\n            \"name\": \"Changed to URL\",\n            \"type\": \"url\",\n            \"url\": \"https://www.google.com\",\n            \"controllerName\": null,\n            \"controller\": null,\n            \"moduleRoute\": null,\n            \"controllerRoute\": null,\n            \"responseVariable\": null,\n            \"includeChildren\": null,\n            \"displayProperty\": null,\n            \"position\": 1,\n            \"entity\": null,\n            \"recordId\": null,\n            \"created\": \"2020-04-30T17:18:11+00:00\",\n            \"modified\": \"2020-04-30T17:23:46+00:00\",\n            \"parent\": null,\n            \"children\": [],\n            \"menu\": 12,\n            \"controllerParameters\": [],\n            \"customFieldValues\": [],\n            \"customFields\": [\n                4\n            ]\n        }\n    },\n    \"message\": \"The Menu Element has been saved successfully.\"\n}"}],"_postman_id":"598ac790-b92d-4ac4-b0d2-8251eb5c7229"},{"name":"Delete element","id":"4b07b565-3567-42a7-88f4-46dec57b9472","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/menus/element/80","description":"<p>Delete a menu element. This will alter the position of subsequent menu elements.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","menus","element","80"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b07b565-3567-42a7-88f4-46dec57b9472"}],"id":"89ac5c9a-df47-4b25-946a-8a4f7a646edc","_postman_id":"89ac5c9a-df47-4b25-946a-8a4f7a646edc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"f3ff00a1-4454-4338-b49c-674ac1beeead","description":"<p>The menus module is used to allow placement of menus on content objects like pages, blog posts etc.</p>\n<p>Menus are available to any page.</p>\n<p>During development mode, menu element urls are re-created on every request. In production mode, the element's url is cached and only updated during record changes, thus the API is much faster in production mode.</p>\n","event":[{"listen":"prerequest","script":{"id":"3cefec7b-e338-44b3-b009-aa46bc33c75a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a6d2db47-1607-45f2-91b8-f0f1915adb55","type":"text/javascript","exec":[""]}}],"_postman_id":"f3ff00a1-4454-4338-b49c-674ac1beeead","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Pages","item":[{"name":"Pages","item":[{"name":"List pages","id":"079161d9-a052-4fff-b9df-450411229728","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/pages/pages?properties={\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","description":"<p>List the pages available for a specific unit</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","pages"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"c1fd89d3-cbaf-4433-bec6-2a490e03f145","name":"List pages","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/pages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:24:49 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617489.7795/137.5041"},{"key":"Content-Length","value":"1068"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"pages\": [\n            {\n                \"id\": 1,\n                \"name\": \"Test Homepage\",\n                \"created\": \"2019-02-11T14:39:44+00:00\",\n                \"modified\": \"2019-02-11T17:02:21+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            },\n            {\n                \"id\": 2,\n                \"name\": \"Child page\",\n                \"created\": \"2019-02-11T14:50:23+00:00\",\n                \"modified\": \"2019-03-11T19:32:57+00:00\",\n                \"owner\": {\n                    \"id\": 8,\n                    \"name\": null\n                }\n            },\n            {\n                \"id\": 3,\n                \"name\": \"Foo Bar\",\n                \"created\": \"2019-02-11T14:57:43+00:00\",\n                \"modified\": \"2019-02-13T22:50:22+00:00\",\n                \"owner\": {\n                    \"id\": 8,\n                    \"name\": null\n                }\n            },\n            {\n                \"id\": 4,\n                \"name\": \"Bizz Bang\",\n                \"created\": \"2019-02-11T14:58:13+00:00\",\n                \"modified\": \"2019-03-11T19:32:54+00:00\",\n                \"owner\": {\n                    \"id\": 8,\n                    \"name\": null\n                }\n            },\n            {\n                \"id\": 5,\n                \"name\": \"Test Print\",\n                \"created\": \"2019-02-21T17:36:16+00:00\",\n                \"modified\": \"2019-02-21T17:40:30+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            },\n            {\n                \"id\": 6,\n                \"name\": \"Test Page from API 585\",\n                \"created\": \"2019-03-25T17:46:13+00:00\",\n                \"modified\": \"2019-03-25T17:46:13+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            },\n            {\n                \"id\": 8,\n                \"name\": \"Changed page title from API 245\",\n                \"created\": \"2019-03-26T11:36:35+00:00\",\n                \"modified\": \"2019-03-26T11:46:27+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"079161d9-a052-4fff-b9df-450411229728"},{"name":"List root pages","id":"e5787638-486f-4b0c-83ad-a21b723791ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/pages/pages?parent=NULL&properties={\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","pages"],"host":["{{domain}}"],"query":[{"key":"parent","value":"NULL"},{"key":"properties","value":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"401ec239-abc7-4086-ab82-32aca3400d7e","name":"List root pages","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/pages/pages?parent=NULL","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","pages","pages"],"query":[{"key":"parent","value":"NULL"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:25:52 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617552.7214/140.4369"},{"key":"Content-Length","value":"190"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"pages\": [\n            {\n                \"id\": 1,\n                \"name\": \"Test Homepage\",\n                \"created\": \"2019-02-11T14:39:44+00:00\",\n                \"modified\": \"2019-02-11T17:02:21+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"e5787638-486f-4b0c-83ad-a21b723791ad"},{"name":"List child pages","id":"4163247e-5740-44ef-9df0-f2bfde7d5b15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/pages/pages?parent=1&properties={\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","pages"],"host":["{{domain}}"],"query":[{"key":"parent","value":"1"},{"key":"properties","value":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"e1fc4fb2-da75-44b0-a3f0-9a11f63c8df7","name":"List child pages","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  pages {\n    id,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    }\n  }\n}"},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/pages/pages?parent=1","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","pages","pages"],"query":[{"key":"parent","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:26:05 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617565.6006/135.6010"},{"key":"Content-Length","value":"785"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"pages\": [\n            {\n                \"id\": 2,\n                \"name\": \"Child page\",\n                \"created\": \"2019-02-11T14:50:23+00:00\",\n                \"modified\": \"2019-03-11T19:32:57+00:00\",\n                \"owner\": {\n                    \"id\": 8,\n                    \"name\": null\n                }\n            },\n            {\n                \"id\": 4,\n                \"name\": \"Bizz Bang\",\n                \"created\": \"2019-02-11T14:58:13+00:00\",\n                \"modified\": \"2019-03-11T19:32:54+00:00\",\n                \"owner\": {\n                    \"id\": 8,\n                    \"name\": null\n                }\n            },\n            {\n                \"id\": 5,\n                \"name\": \"Test Print\",\n                \"created\": \"2019-02-21T17:36:16+00:00\",\n                \"modified\": \"2019-02-21T17:40:30+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            },\n            {\n                \"id\": 6,\n                \"name\": \"Test Page from API 585\",\n                \"created\": \"2019-03-25T17:46:13+00:00\",\n                \"modified\": \"2019-03-25T17:46:13+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            },\n            {\n                \"id\": 8,\n                \"name\": \"Changed page title from API 245\",\n                \"created\": \"2019-03-26T11:36:35+00:00\",\n                \"modified\": \"2019-03-26T11:46:27+00:00\",\n                \"owner\": {\n                    \"id\": 1,\n                    \"name\": \"Dennis Westphal\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"4163247e-5740-44ef-9df0-f2bfde7d5b15"},{"name":"Show page","id":"2a347259-dbb5-4604-b81f-10ebd9029ea2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/77?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","description":"<p>Retrieve details (including area contents) for a page</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","page","77"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"e9aaa3e2-f099-44d8-ae29-c12042f04fdb","name":"Show page","originalRequest":{"method":"GET","header":[{"key":"X-Body-Has-Parameters","value":"1","type":"text"}],"body":{"mode":"raw","raw":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 16:25:02 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553617503.1096/208.5829"},{"key":"Content-Length","value":"2761"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 8,\n            \"layout\": 2,\n            \"name\": \"Changed page title from API 245\",\n            \"created\": \"2019-03-26T11:36:35+00:00\",\n            \"modified\": \"2019-03-26T11:46:27+00:00\",\n            \"owner\": {\n                \"id\": 1,\n                \"name\": \"Dennis Westphal\"\n            },\n            \"areas\": {\n                \"main text\": {\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"content\": {\n                        \"text\": \"Main text\"\n                    }\n                },\n                \"side image\": {\n                    \"type\": \"Image\",\n                    \"category\": \"image\",\n                    \"content\": {\n                        \"imageId\": 2,\n                        \"imagePath\": \"/files/images/blogs/6/497/497-h1jpg\"\n                    }\n                },\n                \"widget headline\": {\n                    \"type\": \"Text\",\n                    \"category\": \"text\",\n                    \"content\": null\n                },\n                \"widget text\": {\n                    \"type\": \"Richtext\",\n                    \"category\": \"text\",\n                    \"content\": null\n                },\n                \"widget\": {\n                    \"type\": \"Widget\",\n                    \"category\": \"widget\",\n                    \"content\": null\n                },\n                \"component\": {\n                    \"type\": \"Component\",\n                    \"category\": \"component\",\n                    \"content\": null\n                },\n                \"collection\": {\n                    \"type\": \"Collection\",\n                    \"category\": \"collection\",\n                    \"content\": null\n                }\n            },\n            \"revisions\": [\n                {\n                    \"id\": 12,\n                    \"name\": \"Test Page from API 327\",\n                    \"areasContent\": {\n                        \"main text\": {\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"content\": {\n                                \"text\": \"Main text\"\n                            }\n                        },\n                        \"side image\": {\n                            \"type\": \"Image\",\n                            \"category\": \"image\",\n                            \"content\": {\n                                \"imageId\": 1,\n                                \"imagePath\": \"/files/images/blogs/6/CW-blog.jpg\"\n                            }\n                        },\n                        \"widget headline\": {\n                            \"type\": \"Text\",\n                            \"category\": \"text\",\n                            \"content\": null\n                        },\n                        \"widget text\": {\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"content\": null\n                        },\n                        \"widget\": {\n                            \"type\": \"Widget\",\n                            \"category\": \"widget\",\n                            \"content\": null\n                        },\n                        \"component\": {\n                            \"type\": \"Component\",\n                            \"category\": \"component\",\n                            \"content\": null\n                        },\n                        \"collection\": {\n                            \"type\": \"Collection\",\n                            \"category\": \"collection\",\n                            \"content\": null\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Changed page title from API 695\",\n                    \"areasContent\": [],\n                    \"active\": false\n                },\n                {\n                    \"id\": 14,\n                    \"name\": \"Changed page title from API 693\",\n                    \"areasContent\": {\n                        \"main text\": {\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"content\": {\n                                \"text\": \"Main text\"\n                            }\n                        },\n                        \"side image\": {\n                            \"type\": \"Image\",\n                            \"category\": \"image\",\n                            \"content\": {\n                                \"imageId\": 1,\n                                \"imagePath\": \"/files/images/blogs/6/CW-blog.jpg\"\n                            }\n                        },\n                        \"widget headline\": {\n                            \"type\": \"Text\",\n                            \"category\": \"text\",\n                            \"content\": null\n                        },\n                        \"widget text\": {\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"content\": null\n                        },\n                        \"widget\": {\n                            \"type\": \"Widget\",\n                            \"category\": \"widget\",\n                            \"content\": null\n                        },\n                        \"component\": {\n                            \"type\": \"Component\",\n                            \"category\": \"component\",\n                            \"content\": null\n                        },\n                        \"collection\": {\n                            \"type\": \"Collection\",\n                            \"category\": \"collection\",\n                            \"content\": null\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 15,\n                    \"name\": \"Changed page title from API 245\",\n                    \"areasContent\": {\n                        \"main text\": {\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"content\": {\n                                \"text\": \"Main text\"\n                            }\n                        },\n                        \"side image\": {\n                            \"type\": \"Image\",\n                            \"category\": \"image\",\n                            \"content\": {\n                                \"imageId\": 2,\n                                \"imagePath\": \"/files/images/blogs/6/497/497-h1jpg\"\n                            }\n                        },\n                        \"widget headline\": {\n                            \"type\": \"Text\",\n                            \"category\": \"text\",\n                            \"content\": null\n                        },\n                        \"widget text\": {\n                            \"type\": \"Richtext\",\n                            \"category\": \"text\",\n                            \"content\": null\n                        },\n                        \"widget\": {\n                            \"type\": \"Widget\",\n                            \"category\": \"widget\",\n                            \"content\": null\n                        },\n                        \"component\": {\n                            \"type\": \"Component\",\n                            \"category\": \"component\",\n                            \"content\": null\n                        },\n                        \"collection\": {\n                            \"type\": \"Collection\",\n                            \"category\": \"collection\",\n                            \"content\": null\n                        }\n                    },\n                    \"active\": true\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"2a347259-dbb5-4604-b81f-10ebd9029ea2"},{"name":"Show page by url","id":"8350fd79-4138-4c04-bff8-5e68bea3ca79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/mikle-main-page?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","description":"<p>Retrieve details (including area contents) for a page</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","page","mikle-main-page"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"b71f1213-9ac9-406f-8d1c-d1ff9dc897db","name":"Show page by url","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/pages/page/inspiration?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","pages","page","inspiration"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    created,\n    modified,\n    owner {\n      id,\n      name:person.fullName\n    },\n    areas: activeRevision.areasContent,\n    revisions {\n      id,\n      name,\n      areasContent,\n      active: activeRevision\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 16:15:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"7059"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1589213734.6641/499.0921"},{"key":"Expires","value":"Wed, 13 May 2020 16:15:34 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 4,\n            \"layout\": 1,\n            \"name\": \"Inspiration\",\n            \"created\": \"2019-08-27T14:39:27+00:00\",\n            \"modified\": \"2020-03-09T19:08:47+00:00\",\n            \"owner\": {\n                \"id\": 6,\n                \"name\": \"Gabrielle Dindinger\"\n            },\n            \"areas\": {\n                \"Announcements\": {\n                    \"id\": null,\n                    \"type\": \"Component\",\n                    \"category\": \"component\",\n                    \"content\": null\n                },\n                \"page sections\": {\n                    \"id\": 8674,\n                    \"type\": \"Component Collection\",\n                    \"category\": \"collection\",\n                    \"collection\": [\n                        {\n                            \"componentId\": 2318,\n                            \"componentName\": \"Inspiration\",\n                            \"componentLayout\": 3,\n                            \"componentGlobal\": false,\n                            \"image\": {\n                                \"id\": 8675,\n                                \"type\": \"Image\",\n                                \"category\": \"image\",\n                                \"imageId\": 11,\n                                \"imagePath\": \"/files/images/components/coffee1.jpeg\"\n                            },\n                            \"top headline\": {\n                                \"id\": 8676,\n                                \"type\": \"Text\",\n                                \"category\": \"text\",\n                                \"editor\": \"text\",\n                                \"text\": \"Inspiration\"\n                            },\n                            \"headline\": {\n                                \"id\": null,\n                                \"type\": \"Text\",\n                                \"category\": \"text\",\n                                \"content\": null\n                            },\n                            \"detailText\": {\n                                \"id\": 8677,\n                                \"type\": \"Richtext\",\n                                \"category\": \"text\",\n                                \"editor\": \"richtext\",\n                                \"text\": \"<p>We collected all the coffee trends and ideas into one place. What’s the hottest coffee trend at the moment? What new ideas to try in my coffee shop? Here you can find ready concepts and ideas to use in your daily work as a barista. If you are looking for new coffee drinks, go to our recipes.</p>\"\n                            },\n                            \"button01\": {\n                                \"id\": 8678,\n                                \"type\": \"Component\",\n                                \"category\": \"component\",\n                                \"component\": {\n                                    \"componentId\": 2319,\n                                    \"componentName\": null,\n                                    \"componentLayout\": 2,\n                                    \"componentGlobal\": false,\n                                    \"button\": {\n                                        \"id\": null,\n                                        \"type\": \"button\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"button-link\": {\n                                        \"id\": null,\n                                        \"type\": \"Text\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"button-color\": {\n                                        \"id\": 2,\n                                        \"type\": \"button-color\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"select\",\n                                        \"text\": \"btn--white\"\n                                    },\n                                    \"button-style\": {\n                                        \"id\": 3,\n                                        \"type\": \"button-style\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"select\",\n                                        \"text\": \"btn-outline-primary\"\n                                    },\n                                    \"button-target\": {\n                                        \"id\": 4,\n                                        \"type\": \"link-target\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"select\",\n                                        \"text\": \"_self\"\n                                    }\n                                }\n                            },\n                            \"button02\": {\n                                \"id\": 8679,\n                                \"type\": \"Component\",\n                                \"category\": \"component\",\n                                \"component\": {\n                                    \"componentId\": 2320,\n                                    \"componentName\": null,\n                                    \"componentLayout\": 2,\n                                    \"componentGlobal\": false,\n                                    \"button\": {\n                                        \"id\": null,\n                                        \"type\": \"button\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"button-link\": {\n                                        \"id\": null,\n                                        \"type\": \"Text\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"button-color\": {\n                                        \"id\": 2,\n                                        \"type\": \"button-color\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"select\",\n                                        \"text\": \"btn--white\"\n                                    },\n                                    \"button-style\": {\n                                        \"id\": 3,\n                                        \"type\": \"button-style\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"select\",\n                                        \"text\": \"btn-outline-primary\"\n                                    },\n                                    \"button-target\": {\n                                        \"id\": 4,\n                                        \"type\": \"link-target\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"select\",\n                                        \"text\": \"_self\"\n                                    }\n                                }\n                            },\n                            \"style\": {\n                                \"id\": null,\n                                \"type\": \"Switch\",\n                                \"category\": \"text\",\n                                \"content\": null\n                            },\n                            \"color\": {\n                                \"id\": null,\n                                \"type\": \"Switch\",\n                                \"category\": \"text\",\n                                \"content\": null\n                            },\n                            \"imageleft\": {\n                                \"id\": null,\n                                \"type\": \"Switch\",\n                                \"category\": \"text\",\n                                \"content\": null\n                            },\n                            \"persona\": {\n                                \"id\": 8680,\n                                \"type\": \"Persona\",\n                                \"category\": \"text\",\n                                \"editor\": \"select\",\n                                \"text\": \"all\"\n                            }\n                        }\n                    ]\n                }\n            },\n            \"revisions\": [\n                {\n                    \"id\": 38,\n                    \"name\": \"Inspiration\",\n                    \"areasContent\": {\n                        \"Announcements\": {\n                            \"id\": null,\n                            \"type\": \"Component\",\n                            \"category\": \"component\",\n                            \"content\": null\n                        },\n                        \"page sections\": {\n                            \"id\": null,\n                            \"type\": \"Component Collection\",\n                            \"category\": \"collection\",\n                            \"content\": null\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 39,\n                    \"name\": \"Inspiration\",\n                    \"areasContent\": {\n                        \"Announcements\": {\n                            \"id\": null,\n                            \"type\": \"Component\",\n                            \"category\": \"component\",\n                            \"content\": null\n                        },\n                        \"page sections\": {\n                            \"id\": 875,\n                            \"type\": \"Component Collection\",\n                            \"category\": \"collection\",\n                            \"collection\": [\n                                {\n                                    \"componentId\": 205,\n                                    \"componentName\": \"Inspiration\",\n                                    \"componentLayout\": 3,\n                                    \"componentGlobal\": false,\n                                    \"image\": {\n                                        \"id\": 876,\n                                        \"type\": \"Image\",\n                                        \"category\": \"image\",\n                                        \"imageId\": 11,\n                                        \"imagePath\": \"/files/images/components/coffee1.jpeg\"\n                                    },\n                                    \"top headline\": {\n                                        \"id\": 877,\n                                        \"type\": \"Text\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"text\",\n                                        \"text\": \"Inspiration\"\n                                    },\n                                    \"headline\": {\n                                        \"id\": null,\n                                        \"type\": \"Text\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"detailText\": {\n                                        \"id\": 878,\n                                        \"type\": \"Richtext\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"richtext\",\n                                        \"text\": \"<p>We collected all the coffee trends and ideas into one place. What’s the hottest coffee trend at the moment? What new ideas to try in my coffee shop? Here you can find ready concepts and ideas to use in your daily work as a barista. If you are looking for new coffee drinks, go to our recipes. </p>\"\n                                    },\n                                    \"button01\": {\n                                        \"id\": null,\n                                        \"type\": \"Component\",\n                                        \"category\": \"component\",\n                                        \"content\": null\n                                    },\n                                    \"button02\": {\n                                        \"id\": null,\n                                        \"type\": \"Component\",\n                                        \"category\": \"component\",\n                                        \"content\": null\n                                    },\n                                    \"style\": {\n                                        \"id\": null,\n                                        \"type\": \"Switch\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"color\": {\n                                        \"id\": null,\n                                        \"type\": \"Switch\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"imageleft\": {\n                                        \"id\": null,\n                                        \"type\": \"Switch\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"persona\": {\n                                        \"id\": 3918,\n                                        \"type\": \"Persona\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"select\",\n                                        \"text\": \"none\"\n                                    }\n                                }\n                            ]\n                        }\n                    },\n                    \"active\": false\n                },\n                {\n                    \"id\": 126,\n                    \"name\": \"Inspiration\",\n                    \"areasContent\": {\n                        \"Announcements\": {\n                            \"id\": null,\n                            \"type\": \"Component\",\n                            \"category\": \"component\",\n                            \"content\": null\n                        },\n                        \"page sections\": {\n                            \"id\": 8674,\n                            \"type\": \"Component Collection\",\n                            \"category\": \"collection\",\n                            \"collection\": [\n                                {\n                                    \"componentId\": 2318,\n                                    \"componentName\": \"Inspiration\",\n                                    \"componentLayout\": 3,\n                                    \"componentGlobal\": false,\n                                    \"image\": {\n                                        \"id\": 8675,\n                                        \"type\": \"Image\",\n                                        \"category\": \"image\",\n                                        \"imageId\": 11,\n                                        \"imagePath\": \"/files/images/components/coffee1.jpeg\"\n                                    },\n                                    \"top headline\": {\n                                        \"id\": 8676,\n                                        \"type\": \"Text\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"text\",\n                                        \"text\": \"Inspiration\"\n                                    },\n                                    \"headline\": {\n                                        \"id\": null,\n                                        \"type\": \"Text\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"detailText\": {\n                                        \"id\": 8677,\n                                        \"type\": \"Richtext\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"richtext\",\n                                        \"text\": \"<p>We collected all the coffee trends and ideas into one place. What’s the hottest coffee trend at the moment? What new ideas to try in my coffee shop? Here you can find ready concepts and ideas to use in your daily work as a barista. If you are looking for new coffee drinks, go to our recipes.</p>\"\n                                    },\n                                    \"button01\": {\n                                        \"id\": 8678,\n                                        \"type\": \"Component\",\n                                        \"category\": \"component\",\n                                        \"component\": {\n                                            \"componentId\": 2319,\n                                            \"componentName\": null,\n                                            \"componentLayout\": 2,\n                                            \"componentGlobal\": false,\n                                            \"button\": {\n                                                \"id\": null,\n                                                \"type\": \"button\",\n                                                \"category\": \"text\",\n                                                \"content\": null\n                                            },\n                                            \"button-link\": {\n                                                \"id\": null,\n                                                \"type\": \"Text\",\n                                                \"category\": \"text\",\n                                                \"content\": null\n                                            },\n                                            \"button-color\": {\n                                                \"id\": 2,\n                                                \"type\": \"button-color\",\n                                                \"category\": \"text\",\n                                                \"editor\": \"select\",\n                                                \"text\": \"btn--white\"\n                                            },\n                                            \"button-style\": {\n                                                \"id\": 3,\n                                                \"type\": \"button-style\",\n                                                \"category\": \"text\",\n                                                \"editor\": \"select\",\n                                                \"text\": \"btn-outline-primary\"\n                                            },\n                                            \"button-target\": {\n                                                \"id\": 4,\n                                                \"type\": \"link-target\",\n                                                \"category\": \"text\",\n                                                \"editor\": \"select\",\n                                                \"text\": \"_self\"\n                                            }\n                                        }\n                                    },\n                                    \"button02\": {\n                                        \"id\": 8679,\n                                        \"type\": \"Component\",\n                                        \"category\": \"component\",\n                                        \"component\": {\n                                            \"componentId\": 2320,\n                                            \"componentName\": null,\n                                            \"componentLayout\": 2,\n                                            \"componentGlobal\": false,\n                                            \"button\": {\n                                                \"id\": null,\n                                                \"type\": \"button\",\n                                                \"category\": \"text\",\n                                                \"content\": null\n                                            },\n                                            \"button-link\": {\n                                                \"id\": null,\n                                                \"type\": \"Text\",\n                                                \"category\": \"text\",\n                                                \"content\": null\n                                            },\n                                            \"button-color\": {\n                                                \"id\": 2,\n                                                \"type\": \"button-color\",\n                                                \"category\": \"text\",\n                                                \"editor\": \"select\",\n                                                \"text\": \"btn--white\"\n                                            },\n                                            \"button-style\": {\n                                                \"id\": 3,\n                                                \"type\": \"button-style\",\n                                                \"category\": \"text\",\n                                                \"editor\": \"select\",\n                                                \"text\": \"btn-outline-primary\"\n                                            },\n                                            \"button-target\": {\n                                                \"id\": 4,\n                                                \"type\": \"link-target\",\n                                                \"category\": \"text\",\n                                                \"editor\": \"select\",\n                                                \"text\": \"_self\"\n                                            }\n                                        }\n                                    },\n                                    \"style\": {\n                                        \"id\": null,\n                                        \"type\": \"Switch\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"color\": {\n                                        \"id\": null,\n                                        \"type\": \"Switch\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"imageleft\": {\n                                        \"id\": null,\n                                        \"type\": \"Switch\",\n                                        \"category\": \"text\",\n                                        \"content\": null\n                                    },\n                                    \"persona\": {\n                                        \"id\": 8680,\n                                        \"type\": \"Persona\",\n                                        \"category\": \"text\",\n                                        \"editor\": \"select\",\n                                        \"text\": \"all\"\n                                    }\n                                }\n                            ]\n                        }\n                    },\n                    \"active\": true\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"8350fd79-4138-4c04-bff8-5e68bea3ca79"},{"name":"Add page","id":"cd818b88-12c8-47f0-9cdc-82c885079540","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"parent\": 1,\n\t\"revisions\": {\n\t\t\"name\": \"Test Page from API 940\",\n\t\t\"layout\": 2,\n\t\t\"areas\": {\n\t\t\t\"main text\": \"Main text\",\n\t\t\t\"side image\": 1\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","page"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"41d2fdd2-bea9-4b5e-be1e-5645af6bc7cc","name":"Add page","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"parent\": 1,\n\t\"revisions\": {\n\t\t\"name\": \"Test Page from API 226\",\n\t\t\"layout\": 2,\n\t\t\"areas\": {\n\t\t\t\"main text\": \"Main text\",\n\t\t\t\"side image\": 1\n\t\t}\n\t}\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:46:13 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553535974.0132/480.1619"},{"key":"Content-Length","value":"542"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"parent\": 1,\n            \"lastRevision\": 9,\n            \"name\": \"Test Page from API 585\",\n            \"fullSlug\": \"/test-page-from-api-585\",\n            \"fullPath\": \"/test-page-from-api-585\",\n            \"id\": 6,\n            \"slug\": \"test-page-from-api-585\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 4,\n            \"created\": \"2019-03-25T17:46:13+00:00\",\n            \"modified\": \"2019-03-25T17:46:13+00:00\",\n            \"published\": false,\n            \"activeRevision\": 9,\n            \"language\": 47,\n            \"children\": [],\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"revisions\": [\n                9\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"owner\": 1\n        }\n    },\n    \"message\": \"The Page has been added successfully.\"\n}"}],"_postman_id":"cd818b88-12c8-47f0-9cdc-82c885079540"},{"name":"Edit a page","id":"1afed2ca-73d0-479b-8e9e-cd26e080da15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"areaComponent(Announcements)\": {\n            \"layout\": 4,\n            \"name\": \"test from API\"\n        },\n        \"areaContent(width)\": \"container-fluid\",\n        \"patchAreaCollectionElement(page sections, 2)\": {\n            \"areaContent(sectionStyle)\": \"section-dark\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/18","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","page","18"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"712eb6c4-0f38-40d4-b875-ffe1113ee22a","name":"Edit a page","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed page title from API 239\",\n\t\t\"layout\": 2,\n\t\t\"areas\": {\n\t\t\t\"main text\": \"Main text\",\n\t\t\t\"side image\": 2\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 11:42:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553600538.2729/283.9229"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Page has been saved successfully.\"\n}"},{"id":"a784dc97-dacd-41f6-9f12-5042ba546748","name":"Edit using unique identifiers","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"revisions\": {\n\t\t\"name\": \"Changed page title from API 719\",\n\t\t\"layout\": \"default\",\n\t\t\"areas\": {\n            \"main text\": \"Main text 470\",\n\t\t\t\"side image\": \"/images/login.png\"\n\t\t}\n\t}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/pages/page/4?properties={\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    areas: activeRevision.areasContent\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","pages","page","4"],"query":[{"key":"properties","value":"{\n  page {\n    id,\n    layout: activeRevision.layout,\n    name:activeRevision.name,\n    areas: activeRevision.areasContent\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2019 11:42:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553600538.2729/283.9229"},{"key":"Content-Length","value":"80"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 4,\n            \"layout\": 1,\n            \"name\": \"Changed page title from API 827\",\n            \"areas\": {\n                \"Announcements\": {\n                    \"id\": null,\n                    \"type\": \"Component\",\n                    \"category\": \"component\",\n                    \"content\": null\n                },\n                \"width\": {\n                    \"id\": 61941,\n                    \"type\": \"Content Width\",\n                    \"category\": \"text\",\n                    \"editor\": \"select\",\n                    \"text\": \"container-fluid\"\n                },\n                \"page sections\": {\n                    \"id\": null,\n                    \"type\": \"Component Collection\",\n                    \"category\": \"collection\",\n                    \"content\": null\n                },\n                \"side image\": {\n                    \"id\": 195848,\n                    \"type\": \"Image\",\n                    \"category\": \"image\",\n                    \"imageId\": 247,\n                    \"imagePath\": \"/files/images/login.png\"\n                },\n                \"main text\": {\n                    \"id\": 195847,\n                    \"type\": \"Text\",\n                    \"category\": \"text\",\n                    \"editor\": \"text\",\n                    \"text\": \"Main text 906\"\n                }\n            }\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"1afed2ca-73d0-479b-8e9e-cd26e080da15"},{"name":"Change page active revision","id":"943003a5-da77-4c47-862b-69a3b19fb16b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"activeRevision\": 3843\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/77","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","page","77"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"943003a5-da77-4c47-862b-69a3b19fb16b"},{"name":"Delete a page","id":"9006da84-c3ea-4aa7-bd9f-c37f83acfb52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","page","7"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"119b568f-431f-4d62-a494-99378de7ed00","name":"Delete a page","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/pages/page/7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Mar 2019 17:48:44 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"x-coredna-heartbeat","value":"1553536125.0593/355.3410"},{"key":"Content-Length","value":"82"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"The Page has successfully been deleted.\"\n}"}],"_postman_id":"9006da84-c3ea-4aa7-bd9f-c37f83acfb52"},{"name":"Duplicate page","id":"b5234ee0-783d-469d-abf3-75960b2891bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/pages/duplicate-page/51","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","pages","duplicate-page","51"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cee797dc-17b9-40ee-b3f4-fbc39adaab29","name":"Page is not found","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/pages/duplicate-page/1"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"No data was returned by the Pages\\\\Controllers\\\\Api\\\\Pages\\\\Duplicate controller for the url \\\"/cdna-api/pages/duplicate-page/1\\\" via POST\"\n}"},{"id":"10b2395d-135c-4aca-9c48-b5062c4d59a6","name":"Success","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/pages/duplicate-page/22"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"parent\": 36,\n            \"fullSlug\": \"en-gb-copy-1\",\n            \"fullPath\": \"/en-gb-copy-1\",\n            \"sourcePage\": null,\n            \"relatedPages\": [],\n            \"seoSettings\": 2050,\n            \"customUrl\": null,\n            \"name\": \"Copy of Create an Outstanding Experience\",\n            \"originalPath\": \"/en-gb-copy-1\",\n            \"id\": 507,\n            \"slug\": \"en-gb-copy-1\",\n            \"publishAt\": null,\n            \"unpublishAt\": null,\n            \"position\": 7,\n            \"created\": \"2019-06-05T11:14:16+00:00\",\n            \"modified\": \"2021-07-07T07:37:10+00:00\",\n            \"published\": false,\n            \"activeRevision\": 9376,\n            \"lastRevision\": 9376,\n            \"language\": 40,\n            \"children\": [],\n            \"revisions\": [\n                9376\n            ],\n            \"tags\": [],\n            \"categories\": [],\n            \"adminComments\": [],\n            \"owner\": 96\n        }\n    },\n    \"message\": \"The Page has been successfully duplicated.\"\n}"}],"_postman_id":"b5234ee0-783d-469d-abf3-75960b2891bd"}],"id":"a05317d5-d61b-4a30-9d41-17fea0902cca","_postman_id":"a05317d5-d61b-4a30-9d41-17fea0902cca","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"27d01392-c90e-4144-94c8-035d798216a5","_postman_id":"27d01392-c90e-4144-94c8-035d798216a5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Products","item":[{"name":"Products","item":[{"name":"List products","id":"ca0b7126-9c4e-426d-9426-f979b4b79fa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/products","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","products"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca0b7126-9c4e-426d-9426-f979b4b79fa7"},{"name":"Show a product","id":"9da6e89f-63a1-4a86-a4e0-471c9175b9e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/product/9?properties={\n  id\n  code\n  name\n  text\n  slug\n  fullPath\n  primaryCategory {\n    id\n\tname\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","product","9"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  code\n  name\n  text\n  slug\n  fullPath\n  primaryCategory {\n    id\n\tname\n  }\n}"}],"variable":[]}},"response":[],"_postman_id":"9da6e89f-63a1-4a86-a4e0-471c9175b9e8"},{"name":"Add product","id":"220663d9-e081-4edb-a438-0399b9021e86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n      \"id\": 123456789,\r\n   \"code\": \"Lanyard-and-Name-Badge-Holder\",\r\n   \"primaryCategory\": {\r\n      \"id\": 123456789\r\n   },\r\n   \"text\": \"test text for Lanyard and Name Badge Holder\",\r\n   \"name\": \"Lanyard and Name Badge Holder\",\r\n   \"slug\": \"Lanyard-and-Name-Badge-Holder\",\r\n   \"externalId\": \"4c763d01-7ae0-4b1f-9644-fe20b1a227ab\",\r\n   \"defaultDescription\": {\r\n      \"name\": \"Lanyard and Name Badge Holder\",\r\n      \"slug\": \"Lanyard-and-Name-Badge-Holder\"\r\n   },\r\n   \"defaultPricing\": {\r\n      \"basePrice\": \"0.00\",\r\n      \"currency\": 142\r\n   }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/products/product?properties={\n  id\n  code\n  name\n  text\n  slug\n  fullPath\n  primaryCategory {\n    id\n\tname\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","product"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  code\n  name\n  text\n  slug\n  fullPath\n  primaryCategory {\n    id\n\tname\n  }\n}"}],"variable":[]}},"response":[],"_postman_id":"220663d9-e081-4edb-a438-0399b9021e86"},{"name":"Edit a product","id":"84cdcc83-fbb9-42da-bd20-48304d5101f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\":\"OWS5P6AN2B5F1\",\r\n    \"name\":\"Gigazoom RTY 560\\/12\",\r\n    \"text\":\"Gigazoom RTY 560 Bega graphics card, 12 GB GDDR5 RAM, 3U\",\r\n    \"primaryCategory\":1\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/products/product/47?properties={\n  id\n  code\n  name\n  text\n  slug\n  fullPath\n  primaryCategory {\n    id\n\tname\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","product","47"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  code\n  name\n  text\n  slug\n  fullPath\n  primaryCategory {\n    id\n\tname\n  }\n}"}],"variable":[]}},"response":[],"_postman_id":"84cdcc83-fbb9-42da-bd20-48304d5101f5"},{"name":"Delete a product","id":"ea6a067a-8ec3-43ba-9024-ae97fd86b868","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/product/2?properties={\n  id\n  code\n  name\n  text\n  slug\n  fullPath\n  primaryCategory {\n    id\n\tname\n  }\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","product","2"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  code\n  name\n  text\n  slug\n  fullPath\n  primaryCategory {\n    id\n\tname\n  }\n}"}],"variable":[]}},"response":[],"_postman_id":"ea6a067a-8ec3-43ba-9024-ae97fd86b868"},{"name":"Duplicate product","id":"4ac174ce-d682-4d14-a329-4aada82b9278","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/duplicate-product/117","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","duplicate-product","117"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9515d43e-7222-4c72-a655-5719e7b13d8b","name":"Product is not found","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/duplicate-product/51"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"No data was returned by the Products\\\\Controllers\\\\Api\\\\Products\\\\Duplicate controller for the url \\\"/cdna-api/products/duplicate-product/51\\\" via POST\"\n}"},{"id":"4fae128e-c0ba-4560-a3d9-ded1d7783889","name":"Success","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/duplicate-product/117"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"product\": {\n            \"primaryCategory\": 5,\n            \"categoryElements\": [\n                35,\n                36\n            ],\n            \"variants\": [],\n            \"children\": [],\n            \"parent\": null,\n            \"name\": \"Copy of Misha's product\",\n            \"text\": \"Misha's product short desc\",\n            \"slug\": \"misha-s-product-copy-1\",\n            \"fullSlug\": \"mykhailo/misha/misha-s-product-copy-1\",\n            \"fullPath\": \"/products/mykhailo/misha/misha-s-product-copy-1\",\n            \"originalPath\": \"/products/mykhailo/misha/misha-s-product-copy-1\",\n            \"defaultDescription\": 59,\n            \"defaultPricing\": 52,\n            \"published\": \"2021-07-02T21:14:47+00:00\",\n            \"id\": 117,\n            \"code\": \"123\",\n            \"externalId\": null,\n            \"purchasable\": true,\n            \"created\": \"2021-07-02T21:14:47+00:00\",\n            \"modified\": \"2021-07-02T21:43:55+00:00\",\n            \"image\": 5893,\n            \"descriptions\": [\n                59\n            ],\n            \"pricings\": [\n                52\n            ],\n            \"width\": \"2222.0000\",\n            \"height\": \"1111.0000\",\n            \"depth\": \"55.0000\",\n            \"weight\": \"77.0000\"\n        }\n    },\n    \"message\": \"The Product has been successfully duplicated.\"\n}"}],"_postman_id":"4ac174ce-d682-4d14-a329-4aada82b9278"}],"id":"68d520c1-8c32-4eb5-8f85-aa1b9196a692","_postman_id":"68d520c1-8c32-4eb5-8f85-aa1b9196a692","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Categories","item":[{"name":"List categories","id":"186b174d-4fb3-4db4-a611-5d8f9838e09b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/categories?properties={\n  id\n  name\n  slug\n  fullPath\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","categories"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  name\n  slug\n  fullPath\n}"}],"variable":[]}},"response":[],"_postman_id":"186b174d-4fb3-4db4-a611-5d8f9838e09b"},{"name":"Show category","id":"1e256ee5-3ca6-465c-a1d5-90ad33b96c7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/category/1?properties={\n  id\n  name\n  slug\n  fullPath\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","category","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  name\n  slug\n  fullPath\n}"}],"variable":[]}},"response":[],"_postman_id":"1e256ee5-3ca6-465c-a1d5-90ad33b96c7a"},{"name":"Add category","id":"faf309a8-4b7e-4292-8773-a5aa777721f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Computers\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/products/category?={\n  id\n  name\n  slug\n  fullPath\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","category"],"host":["{{domain}}"],"query":[{"key":"","value":"{\n  id\n  name\n  slug\n  fullPath\n}"}],"variable":[]}},"response":[],"_postman_id":"faf309a8-4b7e-4292-8773-a5aa777721f8"},{"name":"Edit a category","id":"2535c4f6-f17e-4bae-b953-a98862c17c3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Computer components\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/products/category/2?properties={\n  id\n  name\n  slug\n  fullPath\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","category","2"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  name\n  slug\n  fullPath\n}"}],"variable":[]}},"response":[],"_postman_id":"2535c4f6-f17e-4bae-b953-a98862c17c3c"},{"name":"Delete a category","id":"1523e057-3565-4e69-8544-e54ed21041c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/category/1?properties={\n  id\n  name\n  slug\n  fullPath\n}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","category","1"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  name\n  slug\n  fullPath\n}"}],"variable":[]}},"response":[],"_postman_id":"1523e057-3565-4e69-8544-e54ed21041c6"},{"name":"Duplicate category","id":"61535246-3efd-4e72-9be9-62f01797f8d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/duplicate-category/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","duplicate-category","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"01175ff8-1714-4a50-a7a2-cc182e6f2e73","name":"Category is not found","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/duplicate-category/117"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"error\",\n    \"message\": \"No data was returned by the Products\\\\Controllers\\\\Api\\\\Categories\\\\Duplicate controller for the url \\\"/cdna-api/products/duplicate-category/117\\\" via POST\"\n}"},{"id":"633b212e-5d9d-4d9b-88e6-a38c371cdd73","name":"Success","originalRequest":{"method":"POST","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/duplicate-category/117"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"category\": {\n            \"name\": \"Mykhailo\",\n            \"slug\": \"mykhailo\",\n            \"fullSlug\": \"/mykhailo\",\n            \"fullPath\": \"/mykhailo\",\n            \"originalPath\": \"/products/mykhailo\",\n            \"defaultDescription\": 4,\n            \"id\": 4,\n            \"position\": 4,\n            \"created\": \"2021-06-25T09:10:37+00:00\",\n            \"modified\": \"2021-06-25T09:11:00+00:00\",\n            \"published\": \"2021-06-25T09:10:07+00:00\",\n            \"parent\": null,\n            \"children\": [\n                5\n            ],\n            \"categoryElements\": [],\n            \"descriptions\": [\n                4\n            ]\n        }\n    },\n    \"message\": \"The Category has been successfully duplicated.\"\n}"}],"_postman_id":"61535246-3efd-4e72-9be9-62f01797f8d6"}],"id":"289daf8b-f333-4b40-8830-4f399304ca30","_postman_id":"289daf8b-f333-4b40-8830-4f399304ca30","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"ProductDescriptions","item":[{"name":"Show description by URL","id":"ac2482fb-e521-4617-afaf-f587ddaaf9c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/products/product-description/single-origin-coffee-beans?properties={\n  id\n  name\n  text\n  slug\n  fullPath\n  product {\n    id\n    code\n    primaryCategory {\n      id\n\t  name\n    }\n  }\n}","description":"<p>Endpoint for fetching a product description (the language specific, url backed content of a product) using a url. This endpoint respects custom urls and will also deliver a product description with a matching custom url.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","products","product-description","single-origin-coffee-beans"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  name\n  text\n  slug\n  fullPath\n  product {\n    id\n    code\n    primaryCategory {\n      id\n\t  name\n    }\n  }\n}"}],"variable":[]}},"response":[{"id":"b09bcd59-8df4-4ccc-8e26-ddcea13b5843","name":"Show description by URL","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/products/product-description/single-origin-coffee-beans?properties={\n  id\n  name\n  text\n  slug\n  fullPath\n  product {\n    id\n    code\n    primaryCategory {\n      id\n\t  name\n    }\n  }\n}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","products","product-description","single-origin-coffee-beans"],"query":[{"key":"properties","value":"{\n  id\n  name\n  text\n  slug\n  fullPath\n  product {\n    id\n    code\n    primaryCategory {\n      id\n\t  name\n    }\n  }\n}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Sep 2023 16:41:02 GMT"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1694191262.391/163.6679"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1694191261.cds056.fr8.hc,1694191261.cds249.fr8.sc,1694191262.waf1-node03-fra02.stackpath.systems.-.wx,1694191262.cds249.fr8.p"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"Single Origin Coffee Beans\",\n        \"text\": \"Brazilian coffee beans\",\n        \"slug\": \"single-origin-coffee-beans\",\n        \"fullPath\": \"/products/default/coffee/single-origin-coffee-beans\",\n        \"product\": {\n            \"id\": 1,\n            \"code\": \"BAG0001\",\n            \"primaryCategory\": {\n                \"id\": 4,\n                \"name\": \"Coffee\"\n            }\n        }\n    }\n}"}],"_postman_id":"ac2482fb-e521-4617-afaf-f587ddaaf9c8"}],"id":"32efbdb2-e575-4bf3-87ca-6a7a601a61c0","_postman_id":"32efbdb2-e575-4bf3-87ca-6a7a601a61c0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"f0eddec2-257e-4fe0-b82b-163d8e4010e6","_postman_id":"f0eddec2-257e-4fe0-b82b-163d8e4010e6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Users","item":[{"name":"People","item":[{"name":"List people","id":"a650a3c6-9afc-425a-a0cf-05b35dd4d9c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/people","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","people"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a650a3c6-9afc-425a-a0cf-05b35dd4d9c3"},{"name":"Add a person","id":"c9591c00-81e5-46d8-884f-878e008990ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"sample.person@coredna.com\",\r\n    \"firstName\": \"Sample\",\r\n    \"lastName\": \"Person\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/person","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","person"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9591c00-81e5-46d8-884f-878e008990ee"},{"name":"TODO REMOVE! Add a person Copy 2","id":"cd827dc8-6324-470f-9293-bc0678583287","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"username\": \"meganmb2@hotmail.com\",\r\n\t\"password\": \"tFqgGauFvcqAPSFXnjNzSBZgUZRJEpwt1\",\r\n\t\"confirmPassword\": \"tFqgGauFvcqAPSFXnjNzSBZgUZRJEpwt1\",\r\n\t\"person\": {\r\n\t\t\"firstName\": \"Meg\",\r\n\t\t\"middleName\": \"\",\r\n\t\t\"lastName\": \"Brereton\",\r\n\t\t\"groups\": [\r\n\t\t\t\"1\"\r\n\t\t]\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/user?properties={id}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","user"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{id}"}],"variable":[]}},"response":[],"_postman_id":"cd827dc8-6324-470f-9293-bc0678583287"},{"name":"TODO REMOVE! Add a person Copy 3","id":"734c3b62-8ea3-45be-9300-ffb7b85bd0e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"username\": \"meganmb2@hotmail.com\",\r\n\t\"password\": \"tFqgGauFvcqAPSFXnjNzSBZgUZRJEpwt1\",\r\n\t\"confirmPassword\": \"tFqgGauFvcqAPSFXnjNzSBZgUZRJEpwt1\",\r\n\t\"person\": {\r\n\t\t\"firstName\": \"Meg\",\r\n\t\t\"middleName\": \"\",\r\n\t\t\"lastName\": \"Brereton\",\r\n\t\t\"groups\": [\r\n\t\t\t\"1\"\r\n\t\t]\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/user?properties={id}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","user"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{id}"}],"variable":[]}},"response":[],"_postman_id":"734c3b62-8ea3-45be-9300-ffb7b85bd0e0"},{"name":"Edit a person","id":"f1a49f9c-0126-43b9-8a7e-1387f32d4208","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Mr\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/person/50","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","person","50"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f1a49f9c-0126-43b9-8a7e-1387f32d4208"},{"name":"Show a person","id":"982fe452-0311-46c5-8931-cf9d08829d10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/person/50","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","person","50"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"982fe452-0311-46c5-8931-cf9d08829d10"},{"name":"Delete a person","id":"c56db262-01ef-4681-bb18-14b2be2edcae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/person/50","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","person","50"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c56db262-01ef-4681-bb18-14b2be2edcae"}],"id":"34260c68-c473-4cde-98fb-128d77e63c99","_postman_id":"34260c68-c473-4cde-98fb-128d77e63c99","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Address Types","item":[{"name":"List address types","id":"a30ba13c-ff63-4109-8ea5-94edd5efe260","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/address-types","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","address-types"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a30ba13c-ff63-4109-8ea5-94edd5efe260"},{"name":"Add an address type","id":"66e290ad-23d0-4d59-9f52-2f4a4bab4dae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"other\",\r\n    \"name\": \"Work Address\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/address-type","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","address-type"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"66e290ad-23d0-4d59-9f52-2f4a4bab4dae"},{"name":"Edit an address type","id":"16e4488a-0907-46c2-a17e-b89978793465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Business address\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/address-type/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","address-type","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"16e4488a-0907-46c2-a17e-b89978793465"},{"name":"Show an address type","id":"4f7b707e-5177-4773-87c2-71aeee012549","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/address-type/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","address-type","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f7b707e-5177-4773-87c2-71aeee012549"},{"name":"Delete an address type","id":"750370f5-0a1c-4621-93a9-7a96816e55f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/address-type/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","address-type","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"750370f5-0a1c-4621-93a9-7a96816e55f6"}],"id":"06f2f4f3-35a9-4799-b742-d28d246fa2be","_postman_id":"06f2f4f3-35a9-4799-b742-d28d246fa2be","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Authors","item":[{"name":"List authors","id":"9f75c95d-f1c4-4b9f-8a41-19d52d43a5aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/authors","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","authors"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f75c95d-f1c4-4b9f-8a41-19d52d43a5aa"},{"name":"Add an author","id":"68b562e2-2fa7-4ccc-a461-225ba7bae39a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"displayName\": \"Chief editor\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/author","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","author"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"68b562e2-2fa7-4ccc-a461-225ba7bae39a"},{"name":"Edit an author","id":"7f544f6e-68fd-4e89-8df4-8828e6add46e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"website\": \"https://coredna.com/\",\r\n    \"linkedinUrl\": \"https://www.linkedin.com/company/coredna/\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/author/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","author","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f544f6e-68fd-4e89-8df4-8828e6add46e"},{"name":"Show an author","id":"3330b808-60a4-4f45-be88-812093c0fdf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/author/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","author","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3330b808-60a4-4f45-be88-812093c0fdf1"},{"name":"Delete an author","id":"e2ee57a2-c7e1-421f-8bd3-402fab66a86a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/author/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","author","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2ee57a2-c7e1-421f-8bd3-402fab66a86a"}],"id":"ddb3f75e-acc0-4987-b33a-0662cb97c1f5","_postman_id":"ddb3f75e-acc0-4987-b33a-0662cb97c1f5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Groups","item":[{"name":"List groups","id":"1900d4a5-779a-4f46-b76c-524afb5ada4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/groups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","groups"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1900d4a5-779a-4f46-b76c-524afb5ada4a"},{"name":"Add a group","id":"01795640-0473-4bcd-9412-2107ccbdf375","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Management\",\r\n    \"text\": \"Group for managers or corporate\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/group","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","group"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"01795640-0473-4bcd-9412-2107ccbdf375"},{"name":"Edit a group","id":"d544eeee-4b8e-46f3-94f9-33c9286fd85b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"text\": \"Private management group\"\r\n}","options":{"raw":{"language":"json"}}},"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"d544eeee-4b8e-46f3-94f9-33c9286fd85b"},{"name":"Show a group","id":"feeddbd9-62c4-4e4d-8a76-a533578baa18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/group/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","group","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"feeddbd9-62c4-4e4d-8a76-a533578baa18"},{"name":"Delete a group","id":"df376758-4237-4fac-bf76-f03842455741","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/group/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","group","4"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df376758-4237-4fac-bf76-f03842455741"}],"id":"effa741f-3cf9-41b7-9806-ee49b1bfafd6","_postman_id":"effa741f-3cf9-41b7-9806-ee49b1bfafd6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Permissions","item":[{"name":"Show Permissions","id":"110d8e9b-b02b-4d90-8eb3-35f2056e8f3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/permissions/Pages","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","permissions","Pages"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"58d47bc3-65a8-4f4a-8013-95fdc20493d1","name":"Module","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/permissions/Pages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:31:19 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267879.0642/476.2290"},{"key":"Expires","value":"Sat, 02 May 2020 17:31:18 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267878.cds054.fr8.hn,1588267878.cds153.fr8.sc,1588267879.cdn2-redis01-fra1.stackpath.systems.-.wx,1588267879.cds153.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"710"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"default\": {\n            \"owner_read\": true,\n            \"owner_create\": true,\n            \"owner_update\": true,\n            \"owner_delete\": true,\n            \"owner_publish\": true,\n            \"owner_admin\": false,\n            \"read\": true,\n            \"create\": false,\n            \"update\": false,\n            \"delete\": false,\n            \"publish\": false,\n            \"admin\": false,\n            \"configure\": false\n        },\n        \"user\": [],\n        \"group\": []\n    }\n}"},{"id":"de66e102-0451-4f3c-a723-e60d77a7dee8","name":"Entity","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/permissions/Faq/Question"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:31:19 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267879.0642/476.2290"},{"key":"Expires","value":"Sat, 02 May 2020 17:31:18 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267878.cds054.fr8.hn,1588267878.cds153.fr8.sc,1588267879.cdn2-redis01-fra1.stackpath.systems.-.wx,1588267879.cds153.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"710"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inherit\": true,\n        \"default\": {\n            \"owner_read\": false,\n            \"owner_create\": false,\n            \"owner_update\": false,\n            \"owner_delete\": false,\n            \"owner_publish\": false,\n            \"owner_admin\": false,\n            \"read\": false,\n            \"create\": false,\n            \"update\": false,\n            \"delete\": false,\n            \"publish\": false,\n            \"admin\": false\n        },\n        \"user\": [],\n        \"group\": []\n    }\n}"},{"id":"be4edca2-6418-4101-9746-7b028e6582ef","name":"Record","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/permissions/Blogs/Post/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:31:19 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267879.0642/476.2290"},{"key":"Expires","value":"Sat, 02 May 2020 17:31:18 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267878.cds054.fr8.hn,1588267878.cds153.fr8.sc,1588267879.cdn2-redis01-fra1.stackpath.systems.-.wx,1588267879.cds153.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"710"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inherit\": false,\n        \"default\": {\n            \"owner_read\": true,\n            \"owner_update\": false,\n            \"owner_delete\": true,\n            \"owner_publish\": false,\n            \"owner_admin\": false,\n            \"read\": true,\n            \"update\": false,\n            \"delete\": false,\n            \"publish\": true,\n            \"admin\": true\n        },\n        \"user\": {\n            \"51\": {\n                \"read\": true,\n                \"update\": true,\n                \"delete\": false,\n                \"publish\": false,\n                \"admin\": false\n            }\n        },\n        \"group\": {\n            \"2\": {\n                \"owner_read\": true,\n                \"owner_update\": true,\n                \"owner_delete\": false,\n                \"owner_publish\": false,\n                \"owner_admin\": false,\n                \"read\": true,\n                \"update\": false,\n                \"delete\": false,\n                \"publish\": false,\n                \"admin\": true\n            }\n        }\n    }\n}"}],"_postman_id":"110d8e9b-b02b-4d90-8eb3-35f2056e8f3a"},{"name":"Update Permissions","id":"8d7f94ff-e348-403d-974a-2d870a615c0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"default\": {\r\n        \"owner_read\": true,\r\n        \"owner_create\": false,\r\n        \"owner_update\": true,\r\n        \"owner_delete\": false,\r\n        \"owner_publish\": false,\r\n        \"owner_admin\": false,\r\n        \"read\": true,\r\n        \"create\": false,\r\n        \"update\": false,\r\n        \"delete\": false,\r\n        \"publish\": false,\r\n        \"admin\": false,\r\n        \"configure\": false\r\n    },\r\n    \"user\": {\r\n        \"46\": {\r\n            \"read\": true,\r\n            \"create\": false,\r\n            \"update\": true,\r\n            \"delete\": false,\r\n            \"publish\": true,\r\n            \"admin\": false,\r\n            \"configure\": false\r\n        }\r\n    },\r\n    \"group\": {\r\n        \"4\": {\r\n            \"owner_read\": true,\r\n            \"owner_create\": true,\r\n            \"owner_update\": true,\r\n            \"owner_delete\": false,\r\n            \"owner_publish\": false,\r\n            \"owner_admin\": false,\r\n            \"read\": true,\r\n            \"create\": false,\r\n            \"update\": false,\r\n            \"delete\": false,\r\n            \"publish\": false,\r\n            \"admin\": false,\r\n            \"configure\": false\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/permissions/Products","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","permissions","Products"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"8e654102-b266-4583-99a0-5fb9abfb77f9","name":"Module. Update permissions using array with all parameters","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"default\": {\r\n        \"owner_read\": true,\r\n        \"owner_create\": false,\r\n        \"owner_update\": true,\r\n        \"owner_delete\": false,\r\n        \"owner_publish\": false,\r\n        \"owner_admin\": false,\r\n        \"read\": true,\r\n        \"create\": false,\r\n        \"update\": false,\r\n        \"delete\": false,\r\n        \"publish\": false,\r\n        \"admin\": false,\r\n        \"configure\": false\r\n    },\r\n    \"user\": {\r\n        \"46\": {\r\n            \"read\": true,\r\n            \"create\": false,\r\n            \"update\": true,\r\n            \"delete\": false,\r\n            \"publish\": true,\r\n            \"admin\": false,\r\n            \"configure\": false\r\n        }\r\n    },\r\n    \"group\": {\r\n        \"4\": {\r\n            \"owner_read\": true,\r\n            \"owner_create\": true,\r\n            \"owner_update\": true,\r\n            \"owner_delete\": false,\r\n            \"owner_publish\": false,\r\n            \"owner_admin\": false,\r\n            \"read\": true,\r\n            \"create\": false,\r\n            \"update\": false,\r\n            \"delete\": false,\r\n            \"publish\": false,\r\n            \"admin\": false,\r\n            \"configure\": false\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/permissions/Products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:31:19 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267879.0642/476.2290"},{"key":"Expires","value":"Sat, 02 May 2020 17:31:18 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267878.cds054.fr8.hn,1588267878.cds153.fr8.sc,1588267879.cdn2-redis01-fra1.stackpath.systems.-.wx,1588267879.cds153.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"710"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inherit\": false,\n        \"default\": {\n            \"owner_read\": true,\n            \"owner_create\": false,\n            \"owner_update\": true,\n            \"owner_delete\": false,\n            \"owner_publish\": false,\n            \"owner_admin\": false,\n            \"read\": true,\n            \"create\": false,\n            \"update\": false,\n            \"delete\": false,\n            \"publish\": false,\n            \"admin\": false,\n            \"configure\": false\n        },\n        \"user\": {\n            \"46\": {\n                \"read\": true,\n                \"create\": false,\n                \"update\": true,\n                \"delete\": false,\n                \"publish\": true,\n                \"admin\": false,\n                \"configure\": false\n            }\n        },\n        \"group\": {\n            \"4\": {\n                \"owner_read\": true,\n                \"owner_create\": true,\n                \"owner_update\": true,\n                \"owner_delete\": false,\n                \"owner_publish\": false,\n                \"owner_admin\": false,\n                \"read\": true,\n                \"create\": false,\n                \"update\": false,\n                \"delete\": false,\n                \"publish\": false,\n                \"admin\": false,\n                \"configure\": false\n            }\n        }\n    }\n}"},{"id":"6d6a8789-89c7-440b-8c94-d1cd5c0ff452","name":"Entity. Delete permissions: `inherit` parameter","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"inherit\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/permissions/Faq/Question"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:31:19 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267879.0642/476.2290"},{"key":"Expires","value":"Sat, 02 May 2020 17:31:18 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267878.cds054.fr8.hn,1588267878.cds153.fr8.sc,1588267879.cdn2-redis01-fra1.stackpath.systems.-.wx,1588267879.cds153.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"710"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inherit\": true,\n        \"default\": {\n            \"owner_read\": false,\n            \"owner_create\": false,\n            \"owner_update\": false,\n            \"owner_delete\": false,\n            \"owner_publish\": false,\n            \"owner_admin\": false,\n            \"read\": false,\n            \"create\": false,\n            \"update\": false,\n            \"delete\": false,\n            \"publish\": false,\n            \"admin\": false\n        },\n        \"user\": [],\n        \"group\": []\n    }\n}"},{"id":"2ec6bb1e-229e-4ab4-b5e0-18e311e3847b","name":"Record. Set up some permissions. Others are unset automatically.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"default\": {\r\n        \"owner_read\": true,\r\n        \"owner_update\": true\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/permissions/Blogs/Post/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 17:31:19 GMT"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"Content-Type","value":"application/json"},{"key":"x-coredna-heartbeat","value":"1588267879.0642/476.2290"},{"key":"Expires","value":"Sat, 02 May 2020 17:31:18 GMT"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1588267878.cds054.fr8.hn,1588267878.cds153.fr8.sc,1588267879.cdn2-redis01-fra1.stackpath.systems.-.wx,1588267879.cds153.fr8.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"710"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"inherit\": false,\n        \"default\": {\n            \"owner_read\": true,\n            \"owner_update\": true,\n            \"owner_delete\": false,\n            \"owner_publish\": false,\n            \"owner_admin\": false,\n            \"read\": false,\n            \"update\": false,\n            \"delete\": false,\n            \"publish\": false,\n            \"admin\": false\n        },\n        \"user\": [],\n        \"group\": []\n    }\n}"}],"_postman_id":"8d7f94ff-e348-403d-974a-2d870a615c0f"}],"id":"338cf456-d6f1-47e1-9c93-eb5987b770c4","_postman_id":"338cf456-d6f1-47e1-9c93-eb5987b770c4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Show Profile","id":"2c826ba4-2e21-44d8-8895-9bae3e55ca00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/users/account?properties={user {id, name: fullName, email, username,firstName, lastName}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","account"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{user {id, name: fullName, email, username,firstName, lastName}}"}],"variable":[]}},"response":[{"id":"fad68388-44b6-4235-9fbe-75ec9a8b4039","name":"Show Profile","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/users/account?properties={user {id, name: fullName, email, username,firstName, lastName}}","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","users","account"],"query":[{"key":"properties","value":"{user {id, name: fullName, email, username,firstName, lastName}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Jan 2020 16:52:06 GMT"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"spcsrf=aace11628307587282be96c0042075e8; Expires=Tue, 07-Jan-20 18:52:06 GMT; Path=/; HttpOnly; SameSite=Strict"},{"key":"Set-Cookie","value":"UTGv2=D-h4f8a9ae4baff2883a48dd4ab64703c6e538; Expires=Wed, 06-Jan-21 16:52:06 GMT; Path=/"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"x-coredna-heartbeat","value":"1578415926.5823/333.2958"},{"key":"Server","value":"fbs"},{"key":"X-HW","value":"1578415926.cds002.ny3.hc,1578415926.cds083.ny3.sc,1578415926.cdn2-wafbe03-jfk1.stackpath.systems.-.wx,1578415926.cds083.ny3.p"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"176"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"user\": {\n            \"id\": 4,\n            \"name\": \"Firstname Lastname\",\n            \"email\": \"hello@coredna.com\",\n            \"username\": \"hello@coredna.com\",\n            \"firstName\": \"Firstname\",\n            \"lastName\": \"Lastname\"\n        }\n    }\n}"}],"_postman_id":"2c826ba4-2e21-44d8-8895-9bae3e55ca00"},{"name":"Edit Profile","id":"3a83b825-ef59-48d5-a2ef-9ab3190da708","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"firstName\": \"Dennis\",\n\t\"lastName\": \"Westphal\",\n\t\"email\": \"dennis.westphal@coredna.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/users/account?properties={user {id, name: fullName, email, username}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","users","account"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{user {id, name: fullName, email, username}}"}],"variable":[]}},"response":[],"_postman_id":"3a83b825-ef59-48d5-a2ef-9ab3190da708"},{"name":"Forgot password","id":"a5dbf332-8c34-4a45-8841-5e900ab37cbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"your-email@your-domain.com\",\r\n    \"resetUrl\": \"https://your-domain.com/custom-reset-password-url\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/forgot-password","description":"<p>API endpoint to send a \"forgot password\" email to registered users.</p>\n<p>Optionally accepts a <code>resetUrl</code> for custom password reset pages.</p>\n<p>The user is already authenticated at the domain's website when the page is visited using the one-time login token generated with the email.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","forgot-password"],"host":["{{domain}}"],"query":[{"disabled":true,"key":"email","value":""}],"variable":[]}},"response":[{"id":"9c9bf3a3-ba76-43fc-aa2b-fa39667cf0a2","name":"Forgot password","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"your-email@your-domain.com\",\r\n    \"resetUrl\": \"https://your-domain.com/custom-reset-password-url\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{protocol}}://{{domain}}/cdna-api/forgot-password","protocol":"{{protocol}}","host":["{{domain}}"],"path":["cdna-api","forgot-password"],"query":[{"key":"email","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Sep 2020 15:28:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"144"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Apache/2.4.6 (CentOS) PHP/7.4.5"},{"key":"X-Powered-By","value":"PHP/7.4.5"},{"key":"Cache-Control","value":"no-cache, private, max-age=172800"},{"key":"x-coredna-heartbeat","value":"1598974121.6209/324.8971"},{"key":"Expires","value":"Thu, 03 Sep 2020 15:28:41 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [],\n    \"message\": \"If a user account with the specified email address exists, a password reset link has been sent to it.\"\n}"}],"_postman_id":"a5dbf332-8c34-4a45-8841-5e900ab37cbc"}],"id":"19895253-d61f-4d83-b0d2-563807f013fa","_postman_id":"19895253-d61f-4d83-b0d2-563807f013fa","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Rewrites","item":[{"name":"List rewrites","id":"25cbc2c7-2763-47b8-ad95-3f4edddb2ea7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/rewrites/rewrites?properties={\n  id\n  position\n  source\n  target\n  matchType\n  action\n  redirectCode\n}","description":"<p>List the menus available.</p>\n<p>If you only want to retrieve modules with a specific name, this can be specified through a query parameter (see examples).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","rewrites","rewrites"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  id\n  position\n  source\n  target\n  matchType\n  action\n  redirectCode\n}"}],"variable":[]}},"response":[],"_postman_id":"25cbc2c7-2763-47b8-ad95-3f4edddb2ea7"}],"id":"427df182-8deb-49e5-8471-e6eb7e894de9","_postman_id":"427df182-8deb-49e5-8471-e6eb7e894de9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Mailer","item":[{"name":"Batches","item":[{"name":"List batches","id":"1f635774-94e1-41ae-b2c0-7c53ac658344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/mailer/batches","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","mailer","batches"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"9472b84c-ae80-494d-ae92-d386811a90fb","name":"List batches","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/mailer/batches"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"totalCount\": 6,\n    \"data\": {\n        \"batches\": [\n            {\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 1,\n                \"priority\": 2,\n                \"subject\": \"Core dna: Password Reset\",\n                \"fromName\": \"Core dna DXP\",\n                \"fromEmail\": \"no-reply@coredna.com\",\n                \"origin\": null,\n                \"sendAt\": \"2020-12-10T21:39:32+00:00\",\n                \"created\": \"2020-12-10T21:39:32+00:00\",\n                \"modified\": \"2020-12-10T21:39:32+00:00\",\n                \"template\": 1,\n                \"emails\": [\n                    1\n                ],\n                \"attachments\": []\n            },\n            {\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 2,\n                \"priority\": 2,\n                \"subject\": \"Core dna: Password Reset\",\n                \"fromName\": \"Core dna DXP\",\n                \"fromEmail\": \"no-reply@coredna.com\",\n                \"origin\": null,\n                \"sendAt\": \"2022-03-19T08:23:31+00:00\",\n                \"created\": \"2022-03-19T08:23:31+00:00\",\n                \"modified\": \"2022-03-19T08:23:31+00:00\",\n                \"template\": 2,\n                \"emails\": [\n                    2\n                ],\n                \"attachments\": []\n            },\n            {\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 3,\n                \"priority\": 2,\n                \"subject\": \"Core dna: Password Reset\",\n                \"fromName\": \"Core dna DXP\",\n                \"fromEmail\": \"no-reply@coredna.com\",\n                \"origin\": null,\n                \"sendAt\": \"2022-07-06T06:09:40+00:00\",\n                \"created\": \"2022-07-06T06:09:40+00:00\",\n                \"modified\": \"2022-07-06T06:09:40+00:00\",\n                \"template\": 2,\n                \"emails\": [\n                    3\n                ],\n                \"attachments\": []\n            },\n            {\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 4,\n                \"priority\": 2,\n                \"subject\": \"Core dna: Password Reset\",\n                \"fromName\": \"Core dna DXP\",\n                \"fromEmail\": \"no-reply@coredna.com\",\n                \"origin\": null,\n                \"sendAt\": \"2022-11-29T09:16:48+00:00\",\n                \"created\": \"2022-11-29T09:16:48+00:00\",\n                \"modified\": \"2022-11-29T09:16:48+00:00\",\n                \"template\": 2,\n                \"emails\": [\n                    4\n                ],\n                \"attachments\": []\n            },\n            {\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 5,\n                \"priority\": 2,\n                \"subject\": \"Core dna: Password Reset\",\n                \"fromName\": \"Core dna DXP\",\n                \"fromEmail\": \"no-reply@coredna.com\",\n                \"origin\": null,\n                \"sendAt\": \"2023-03-06T12:15:34+00:00\",\n                \"created\": \"2023-03-06T12:15:34+00:00\",\n                \"modified\": \"2023-03-06T12:15:34+00:00\",\n                \"template\": 2,\n                \"emails\": [\n                    5\n                ],\n                \"attachments\": []\n            },\n            {\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 6,\n                \"priority\": 2,\n                \"subject\": \"Test\",\n                \"fromName\": \"Misha Coredna\",\n                \"fromEmail\": \"mykhailo.gadalin@gmail.com\",\n                \"origin\": \"Hooks\",\n                \"sendAt\": \"2023-06-22T19:57:52+00:00\",\n                \"created\": \"2023-06-22T19:57:52+00:00\",\n                \"modified\": \"2023-06-22T19:57:52+00:00\",\n                \"template\": 3,\n                \"emails\": [\n                    6\n                ],\n                \"attachments\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"1f635774-94e1-41ae-b2c0-7c53ac658344"}],"id":"6ee35669-26ee-47e8-a4cf-dbeab25e8a63","_postman_id":"6ee35669-26ee-47e8-a4cf-dbeab25e8a63","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Emails","item":[{"name":"List emails","id":"e04c1352-fb94-44be-8380-aa71bcfad7e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/mailer/emails","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","mailer","emails"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d25db02b-b5a1-4b39-a752-aa35f8f5aff4","name":"List all emails","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/mailer/emails"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"totalCount\": 6,\n    \"data\": {\n        \"emails\": [\n            {\n                \"parsedToEmail\": \"dmitry.kruglov@coredna.com\",\n                \"parsedToName\": \"Dmitry Kruglov\",\n                \"parsedSubject\": \"Core dna: Password Reset\",\n                \"parsedBody\": \"<!DOCTYPE html PUBLIC \\\"-//W3C//DTD XHTML 1.0 Transitional//EN\\\"\\r\\n\\t\\t\\\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\\\">\\r\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\r\\n<head>\\r\\n\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\r\\n\\t<title>Core dna: Password Reset</title>\\r\\n</head>\\r\\n<body leftmargin=\\\"0\\\" marginwidth=\\\"0\\\" topmargin=\\\"0\\\" marginheight=\\\"0\\\" offset=\\\"0\\\"\\r\\n      style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0; background-color: #DEE0E2; height: 100% !important; width: 100% !important;\\\">\\r\\n<center>\\r\\n\\t<table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" height=\\\"100%\\\" width=\\\"100%\\\" id=\\\"bodyTable\\\"\\r\\n\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 0; background-color: #DEE0E2; border-collapse: collapse !important; height: 100% !important; width: 100% !important;\\\">\\r\\n\\t\\t<tr>\\r\\n\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\" id=\\\"bodyCell\\\"\\r\\n\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 20px; border-top: 4px solid #BBBBBB; height: 100% !important; width: 100% !important;\\\">\\r\\n\\t\\t\\t\\t<!-- BEGIN TEMPLATE // -->\\r\\n\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" id=\\\"templateContainer\\\"\\r\\n\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 600px; border: 1px solid #BBBBBB; border-collapse: collapse !important;\\\">\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\r\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN PREHEADER // -->\\r\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templatePreheader\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"preheaderContent\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #808080; font-family: Helvetica; font-size: 10px; line-height: 125%; text-align: left;\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    mc:edit=\\\"preheader_content00\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tCore dna: Password Reset\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END PREHEADER -->\\r\\n\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\r\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN HEADER // -->\\r\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateHeader\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"headerContent\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 20px; font-weight: bold; line-height: 100%; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; text-align: left; vertical-align: middle;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsrc=\\\"http://www.coredna.com/web_images/Manuals/Coredna_notification_header.png\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"max-width: 600px; -ms-interpolation-mode: bicubic; border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tid=\\\"headerImage\\\" mc:label=\\\"header_image\\\" mc:edit=\\\"header_image\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmc:allowdesigner mc:allowtext>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END HEADER -->\\r\\n\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\r\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN BODY // -->\\r\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateBody\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content00\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h1 style=\\\"display: block; font-family: Helvetica; font-size: 26px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #202020 !important;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Password</h1>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Hi\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tDmitry,</p>\\r\\n\\r\\n\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Your\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tusername is <strong>dmitry.kruglov@coredna.com</strong>.\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">You can\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcreate your new password by clicking on this <a\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://theme3corednacom-jeremy.corewebdna.com/cdna-admin/token-login?t=1KKja8NKiIoOc4Vuus98IHda2t33B42sBYxLWdgEp\\\">Password\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Page Link</a>.\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\"> </p>\\r\\n\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tNeed more Help?</h2>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Each time\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tyou log into Core dna you will be presented with the dashboard for your home\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsite. You can access Core dna help for any application by clicking on the\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thelp icon - the question mark icon in the top right hand corner of the menu\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tbar.</p>\\r\\n\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSecurity</h2>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Data\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsecurity is important &amp; its important that you don’t share your account\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcredentials with any other party. All Core dna data is secured &amp; your\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\taccess is linked to your user account. Additionally any data you create,\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tedit or delete is attributed to your user account &amp; logged. Advise your\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSite Administrator(s) so if other users require access as they can create\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&amp; edit user accounts.</p>\\r\\n\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content01\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAbout Core dna</h2>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Core dna\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tis a cloud based Digital Experience Platform consisting of more than 80\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tapplications to allow you to manage your digital Content, Connection,\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tInteractions &amp; Transactions. These applications work together to deliver\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tremarkable digital experiences for your visitors &amp; they get better in\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\treal-time!</p>\\r\\n\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Find our\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmore about Core dna &amp; contribute to the development roadmap at <a\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://www.coredna.com\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\ttarget=\\\"_blank\\\"\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #EB4102; font-weight: normal; text-decoration: underline;\\\">www.coredna.com</a>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\r\\n\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END BODY -->\\r\\n\\t\\t\\t\\t\\t\\t</td>\\r\\n\\t\\t\\t\\t\\t</tr>\\r\\n\\t\\t\\t\\t</table>\\r\\n\\t\\t\\t\\t<!-- // END TEMPLATE -->\\r\\n\\t\\t\\t</td>\\r\\n\\t\\t</tr>\\r\\n\\t</table>\\r\\n</center>\\r\\n</body>\\r\\n</html>\",\n                \"contentType\": \"text/html\",\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [\n                    {\n                        \"rel\": \"show\",\n                        \"href\": \"/mailer/email/eecd5f4e-5f2c-48f9-8605-9619489af9f7\",\n                        \"verb\": \"GET\",\n                        \"text\": \"Show\"\n                    }\n                ],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 1,\n                \"uuid\": \"eecd5f4e-5f2c-48f9-8605-9619489af9f7\",\n                \"toName\": \"Dmitry Kruglov\",\n                \"toEmail\": \"dmitry.kruglov@coredna.com\",\n                \"variables\": {\n                    \"username\": \"dmitry.kruglov@coredna.com\",\n                    \"resetUrl\": \"https://theme3corednacom-jeremy.corewebdna.com/cdna-admin/token-login?t=1KKja8NKiIoOc4Vuus98IHda2t33B42sBYxLWdgEp\"\n                },\n                \"error\": null,\n                \"externalId\": \"1kXWOr1ASzCOGRturn2FVA\",\n                \"smtpId\": null,\n                \"queueId\": \"f07c30e3-43c4-442f-b472-d643b843d56d\",\n                \"status\": \"sent\",\n                \"created\": \"2020-12-10T21:39:32+00:00\",\n                \"modified\": \"2020-12-10T21:39:36+00:00\",\n                \"sent\": \"2020-12-10T21:39:36+00:00\",\n                \"batch\": 1,\n                \"toPerson\": 2,\n                \"interactions\": []\n            },\n            {\n                \"parsedToEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"parsedToName\": \"Mykhailo Gadalin\",\n                \"parsedSubject\": \"Core dna: Password Reset\",\n                \"parsedBody\": \"<!DOCTYPE html PUBLIC \\\"-//W3C//DTD XHTML 1.0 Transitional//EN\\\"\\n\\t\\t\\\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\\\">\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<head>\\n\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n\\t<title>Core dna: Password Reset</title>\\n</head>\\n<body leftmargin=\\\"0\\\" marginwidth=\\\"0\\\" topmargin=\\\"0\\\" marginheight=\\\"0\\\" offset=\\\"0\\\"\\n      style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0; background-color: #DEE0E2; height: 100% !important; width: 100% !important;\\\">\\n<center>\\n\\t<table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" height=\\\"100%\\\" width=\\\"100%\\\" id=\\\"bodyTable\\\"\\n\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 0; background-color: #DEE0E2; border-collapse: collapse !important; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t<tr>\\n\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\" id=\\\"bodyCell\\\"\\n\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 20px; border-top: 4px solid #BBBBBB; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t\\t\\t<!-- BEGIN TEMPLATE // -->\\n\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" id=\\\"templateContainer\\\"\\n\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 600px; border: 1px solid #BBBBBB; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN PREHEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templatePreheader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"preheaderContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #808080; font-family: Helvetica; font-size: 10px; line-height: 125%; text-align: left;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    mc:edit=\\\"preheader_content00\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tCore dna: Password Reset\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END PREHEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN HEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateHeader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"headerContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 20px; font-weight: bold; line-height: 100%; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; text-align: left; vertical-align: middle;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsrc=\\\"http://www.coredna.com/web_images/Manuals/Coredna_notification_header.png\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"max-width: 600px; -ms-interpolation-mode: bicubic; border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tid=\\\"headerImage\\\" mc:label=\\\"header_image\\\" mc:edit=\\\"header_image\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmc:allowdesigner mc:allowtext>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END HEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN BODY // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateBody\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content00\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h1 style=\\\"display: block; font-family: Helvetica; font-size: 26px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #202020 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Password</h1>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Hi\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tMykhailo,</p>\\n\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tusername is <strong>mykhailo.gadalin@coredna.com</strong>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">You can\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcreate your new password by clicking on this <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://theme3.coredna.com/cdna-admin/token-login?t=3IqYfiGNKD2vJxGmB6Uqo5Eh1cT52UJqxWQLSesiV\\\">Password\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Page Link</a>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\"> </p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tNeed more Help?</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Each time\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tyou log into Core dna you will be presented with the dashboard for your home\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsite. You can access Core dna help for any application by clicking on the\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thelp icon - the question mark icon in the top right hand corner of the menu\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tbar.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSecurity</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Data\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsecurity is important &amp; its important that you don’t share your account\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcredentials with any other party. All Core dna data is secured &amp; your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\taccess is linked to your user account. Additionally any data you create,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tedit or delete is attributed to your user account &amp; logged. Advise your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSite Administrator(s) so if other users require access as they can create\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&amp; edit user accounts.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content01\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAbout Core dna</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Core dna\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tis a cloud based Digital Experience Platform consisting of more than 80\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tapplications to allow you to manage your digital Content, Connection,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tInteractions &amp; Transactions. These applications work together to deliver\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tremarkable digital experiences for your visitors &amp; they get better in\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\treal-time!</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Find our\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmore about Core dna &amp; contribute to the development roadmap at <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://www.coredna.com\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\ttarget=\\\"_blank\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #EB4102; font-weight: normal; text-decoration: underline;\\\">www.coredna.com</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END BODY -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t<!-- // END TEMPLATE -->\\n\\t\\t\\t</td>\\n\\t\\t</tr>\\n\\t</table>\\n</center>\\n</body>\\n</html>\",\n                \"contentType\": \"text/html\",\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [\n                    {\n                        \"rel\": \"show\",\n                        \"href\": \"/mailer/email/1e2c0e81-ed88-4b7a-86d8-b745fed24685\",\n                        \"verb\": \"GET\",\n                        \"text\": \"Show\"\n                    }\n                ],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 2,\n                \"uuid\": \"1e2c0e81-ed88-4b7a-86d8-b745fed24685\",\n                \"toName\": \"Mykhailo Gadalin\",\n                \"toEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"variables\": {\n                    \"username\": \"mykhailo.gadalin@coredna.com\",\n                    \"resetUrl\": \"https://theme3.coredna.com/cdna-admin/token-login?t=3IqYfiGNKD2vJxGmB6Uqo5Eh1cT52UJqxWQLSesiV\"\n                },\n                \"error\": null,\n                \"externalId\": \"KbpzLFxxReqfk01DHwhdSQ\",\n                \"smtpId\": null,\n                \"queueId\": \"5bccdf89-fa1c-4d4d-9f0e-66ec7a0f8f6a\",\n                \"status\": \"sent\",\n                \"created\": \"2022-03-19T08:23:31+00:00\",\n                \"modified\": \"2022-03-19T08:23:32+00:00\",\n                \"sent\": \"2022-03-19T08:23:32+00:00\",\n                \"batch\": 2,\n                \"toPerson\": 39,\n                \"interactions\": []\n            },\n            {\n                \"parsedToEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"parsedToName\": \"Mykhailo Gadalin\",\n                \"parsedSubject\": \"Core dna: Password Reset\",\n                \"parsedBody\": \"<!DOCTYPE html PUBLIC \\\"-//W3C//DTD XHTML 1.0 Transitional//EN\\\"\\n\\t\\t\\\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\\\">\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<head>\\n\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n\\t<title>Core dna: Password Reset</title>\\n</head>\\n<body leftmargin=\\\"0\\\" marginwidth=\\\"0\\\" topmargin=\\\"0\\\" marginheight=\\\"0\\\" offset=\\\"0\\\"\\n      style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0; background-color: #DEE0E2; height: 100% !important; width: 100% !important;\\\">\\n<center>\\n\\t<table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" height=\\\"100%\\\" width=\\\"100%\\\" id=\\\"bodyTable\\\"\\n\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 0; background-color: #DEE0E2; border-collapse: collapse !important; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t<tr>\\n\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\" id=\\\"bodyCell\\\"\\n\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 20px; border-top: 4px solid #BBBBBB; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t\\t\\t<!-- BEGIN TEMPLATE // -->\\n\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" id=\\\"templateContainer\\\"\\n\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 600px; border: 1px solid #BBBBBB; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN PREHEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templatePreheader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"preheaderContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #808080; font-family: Helvetica; font-size: 10px; line-height: 125%; text-align: left;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    mc:edit=\\\"preheader_content00\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tCore dna: Password Reset\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END PREHEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN HEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateHeader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"headerContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 20px; font-weight: bold; line-height: 100%; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; text-align: left; vertical-align: middle;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsrc=\\\"http://www.coredna.com/web_images/Manuals/Coredna_notification_header.png\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"max-width: 600px; -ms-interpolation-mode: bicubic; border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tid=\\\"headerImage\\\" mc:label=\\\"header_image\\\" mc:edit=\\\"header_image\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmc:allowdesigner mc:allowtext>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END HEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN BODY // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateBody\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content00\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h1 style=\\\"display: block; font-family: Helvetica; font-size: 26px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #202020 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Password</h1>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Hi\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tMykhailo,</p>\\n\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tusername is <strong>mykhailo.gadalin@coredna.com</strong>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">You can\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcreate your new password by clicking on this <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://theme3corednacom-stage.coredna.site/cdna-admin/token-login?t=1mJRfNpu6f09JNnhrrnXOdXix64ZnOtBwysPhGrcv\\\">Password\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Page Link</a>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\"> </p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tNeed more Help?</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Each time\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tyou log into Core dna you will be presented with the dashboard for your home\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsite. You can access Core dna help for any application by clicking on the\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thelp icon - the question mark icon in the top right hand corner of the menu\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tbar.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSecurity</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Data\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsecurity is important &amp; its important that you don’t share your account\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcredentials with any other party. All Core dna data is secured &amp; your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\taccess is linked to your user account. Additionally any data you create,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tedit or delete is attributed to your user account &amp; logged. Advise your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSite Administrator(s) so if other users require access as they can create\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&amp; edit user accounts.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content01\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAbout Core dna</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Core dna\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tis a cloud based Digital Experience Platform consisting of more than 80\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tapplications to allow you to manage your digital Content, Connection,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tInteractions &amp; Transactions. These applications work together to deliver\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tremarkable digital experiences for your visitors &amp; they get better in\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\treal-time!</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Find our\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmore about Core dna &amp; contribute to the development roadmap at <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://www.coredna.com\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\ttarget=\\\"_blank\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #EB4102; font-weight: normal; text-decoration: underline;\\\">www.coredna.com</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END BODY -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t<!-- // END TEMPLATE -->\\n\\t\\t\\t</td>\\n\\t\\t</tr>\\n\\t</table>\\n</center>\\n</body>\\n</html>\",\n                \"contentType\": \"text/html\",\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [\n                    {\n                        \"rel\": \"show\",\n                        \"href\": \"/mailer/email/bb2fe192-5bb3-40c8-894e-c0095e55a56f\",\n                        \"verb\": \"GET\",\n                        \"text\": \"Show\"\n                    }\n                ],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 3,\n                \"uuid\": \"bb2fe192-5bb3-40c8-894e-c0095e55a56f\",\n                \"toName\": \"Mykhailo Gadalin\",\n                \"toEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"variables\": {\n                    \"username\": \"mykhailo.gadalin@coredna.com\",\n                    \"resetUrl\": \"https://theme3corednacom-stage.coredna.site/cdna-admin/token-login?t=1mJRfNpu6f09JNnhrrnXOdXix64ZnOtBwysPhGrcv\"\n                },\n                \"error\": null,\n                \"externalId\": \"MKIjtodlTuKUY63l5c4cLw\",\n                \"smtpId\": null,\n                \"queueId\": \"4d3b3a5d-1a19-4d9a-94a2-700fdbb983b8\",\n                \"status\": \"sent\",\n                \"created\": \"2022-07-06T06:09:40+00:00\",\n                \"modified\": \"2022-07-06T06:09:42+00:00\",\n                \"sent\": \"2022-07-06T06:09:42+00:00\",\n                \"batch\": 3,\n                \"toPerson\": 39,\n                \"interactions\": []\n            },\n            {\n                \"parsedToEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"parsedToName\": \"Mykhailo Gadalin\",\n                \"parsedSubject\": \"Core dna: Password Reset\",\n                \"parsedBody\": \"<!DOCTYPE html PUBLIC \\\"-//W3C//DTD XHTML 1.0 Transitional//EN\\\"\\n\\t\\t\\\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\\\">\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<head>\\n\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n\\t<title>Core dna: Password Reset</title>\\n</head>\\n<body leftmargin=\\\"0\\\" marginwidth=\\\"0\\\" topmargin=\\\"0\\\" marginheight=\\\"0\\\" offset=\\\"0\\\"\\n      style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0; background-color: #DEE0E2; height: 100% !important; width: 100% !important;\\\">\\n<center>\\n\\t<table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" height=\\\"100%\\\" width=\\\"100%\\\" id=\\\"bodyTable\\\"\\n\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 0; background-color: #DEE0E2; border-collapse: collapse !important; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t<tr>\\n\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\" id=\\\"bodyCell\\\"\\n\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 20px; border-top: 4px solid #BBBBBB; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t\\t\\t<!-- BEGIN TEMPLATE // -->\\n\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" id=\\\"templateContainer\\\"\\n\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 600px; border: 1px solid #BBBBBB; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN PREHEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templatePreheader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"preheaderContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #808080; font-family: Helvetica; font-size: 10px; line-height: 125%; text-align: left;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    mc:edit=\\\"preheader_content00\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tCore dna: Password Reset\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END PREHEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN HEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateHeader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"headerContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 20px; font-weight: bold; line-height: 100%; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; text-align: left; vertical-align: middle;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsrc=\\\"http://www.coredna.com/web_images/Manuals/Coredna_notification_header.png\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"max-width: 600px; -ms-interpolation-mode: bicubic; border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tid=\\\"headerImage\\\" mc:label=\\\"header_image\\\" mc:edit=\\\"header_image\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmc:allowdesigner mc:allowtext>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END HEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN BODY // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateBody\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content00\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h1 style=\\\"display: block; font-family: Helvetica; font-size: 26px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #202020 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Password</h1>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Hi\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tMykhailo,</p>\\n\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tusername is <strong>mykhailo.gadalin@coredna.com</strong>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">You can\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcreate your new password by clicking on this <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://theme3.coredna.com/cdna-admin/token-login?t=1ThgRnPkNeOq1ujwW5fKlFwboJJH6y83HI22EBmNh\\\">Password\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Page Link</a>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\"> </p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tNeed more Help?</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Each time\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tyou log into Core dna you will be presented with the dashboard for your home\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsite. You can access Core dna help for any application by clicking on the\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thelp icon - the question mark icon in the top right hand corner of the menu\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tbar.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSecurity</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Data\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsecurity is important &amp; its important that you don’t share your account\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcredentials with any other party. All Core dna data is secured &amp; your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\taccess is linked to your user account. Additionally any data you create,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tedit or delete is attributed to your user account &amp; logged. Advise your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSite Administrator(s) so if other users require access as they can create\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&amp; edit user accounts.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content01\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAbout Core dna</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Core dna\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tis a cloud based Digital Experience Platform consisting of more than 80\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tapplications to allow you to manage your digital Content, Connection,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tInteractions &amp; Transactions. These applications work together to deliver\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tremarkable digital experiences for your visitors &amp; they get better in\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\treal-time!</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Find our\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmore about Core dna &amp; contribute to the development roadmap at <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://www.coredna.com\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\ttarget=\\\"_blank\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #EB4102; font-weight: normal; text-decoration: underline;\\\">www.coredna.com</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END BODY -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t<!-- // END TEMPLATE -->\\n\\t\\t\\t</td>\\n\\t\\t</tr>\\n\\t</table>\\n</center>\\n</body>\\n</html>\",\n                \"contentType\": \"text/html\",\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [\n                    {\n                        \"rel\": \"show\",\n                        \"href\": \"/mailer/email/0bd77506-ae03-46e1-867f-618648fee7d3\",\n                        \"verb\": \"GET\",\n                        \"text\": \"Show\"\n                    }\n                ],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 4,\n                \"uuid\": \"0bd77506-ae03-46e1-867f-618648fee7d3\",\n                \"toName\": \"Mykhailo Gadalin\",\n                \"toEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"variables\": {\n                    \"username\": \"mykhailo.gadalin@coredna.com\",\n                    \"resetUrl\": \"https://theme3.coredna.com/cdna-admin/token-login?t=1ThgRnPkNeOq1ujwW5fKlFwboJJH6y83HI22EBmNh\"\n                },\n                \"error\": null,\n                \"externalId\": \"BhF0R9tGSea9-tYxXt016w\",\n                \"smtpId\": null,\n                \"queueId\": \"2c3a8843-fc58-46c3-a308-9d99f107422b\",\n                \"status\": \"sent\",\n                \"created\": \"2022-11-29T09:16:48+00:00\",\n                \"modified\": \"2022-11-29T09:16:49+00:00\",\n                \"sent\": \"2022-11-29T09:16:49+00:00\",\n                \"batch\": 4,\n                \"toPerson\": 39,\n                \"interactions\": []\n            },\n            {\n                \"parsedToEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"parsedToName\": \"Mykhailo Gadalin\",\n                \"parsedSubject\": \"Core dna: Password Reset\",\n                \"parsedBody\": \"<!DOCTYPE html PUBLIC \\\"-//W3C//DTD XHTML 1.0 Transitional//EN\\\"\\n\\t\\t\\\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\\\">\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<head>\\n\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n\\t<title>Core dna: Password Reset</title>\\n</head>\\n<body leftmargin=\\\"0\\\" marginwidth=\\\"0\\\" topmargin=\\\"0\\\" marginheight=\\\"0\\\" offset=\\\"0\\\"\\n      style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0; background-color: #DEE0E2; height: 100% !important; width: 100% !important;\\\">\\n<center>\\n\\t<table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" height=\\\"100%\\\" width=\\\"100%\\\" id=\\\"bodyTable\\\"\\n\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 0; background-color: #DEE0E2; border-collapse: collapse !important; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t<tr>\\n\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\" id=\\\"bodyCell\\\"\\n\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 20px; border-top: 4px solid #BBBBBB; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t\\t\\t<!-- BEGIN TEMPLATE // -->\\n\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" id=\\\"templateContainer\\\"\\n\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 600px; border: 1px solid #BBBBBB; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN PREHEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templatePreheader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"preheaderContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #808080; font-family: Helvetica; font-size: 10px; line-height: 125%; text-align: left;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    mc:edit=\\\"preheader_content00\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tCore dna: Password Reset\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END PREHEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN HEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateHeader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"headerContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 20px; font-weight: bold; line-height: 100%; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; text-align: left; vertical-align: middle;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsrc=\\\"http://www.coredna.com/web_images/Manuals/Coredna_notification_header.png\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"max-width: 600px; -ms-interpolation-mode: bicubic; border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tid=\\\"headerImage\\\" mc:label=\\\"header_image\\\" mc:edit=\\\"header_image\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmc:allowdesigner mc:allowtext>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END HEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN BODY // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateBody\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content00\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h1 style=\\\"display: block; font-family: Helvetica; font-size: 26px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #202020 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Password</h1>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Hi\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tMykhailo,</p>\\n\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tusername is <strong>mykhailo.gadalin@coredna.com</strong>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">You can\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcreate your new password by clicking on this <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://theme3corednacom-mykhailo.de.coredna.dev/token-login?t=3EjXjBOKCYE8tURGNUJksxBaCH8HPovn1vg1k5gEZ\\\">Password\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Page Link</a>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\"> </p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tNeed more Help?</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Each time\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tyou log into Core dna you will be presented with the dashboard for your home\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsite. You can access Core dna help for any application by clicking on the\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thelp icon - the question mark icon in the top right hand corner of the menu\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tbar.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSecurity</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Data\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsecurity is important &amp; its important that you don’t share your account\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcredentials with any other party. All Core dna data is secured &amp; your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\taccess is linked to your user account. Additionally any data you create,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tedit or delete is attributed to your user account &amp; logged. Advise your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSite Administrator(s) so if other users require access as they can create\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&amp; edit user accounts.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content01\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAbout Core dna</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Core dna\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tis a cloud based Digital Experience Platform consisting of more than 80\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tapplications to allow you to manage your digital Content, Connection,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tInteractions &amp; Transactions. These applications work together to deliver\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tremarkable digital experiences for your visitors &amp; they get better in\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\treal-time!</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Find our\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmore about Core dna &amp; contribute to the development roadmap at <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://www.coredna.com\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\ttarget=\\\"_blank\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #EB4102; font-weight: normal; text-decoration: underline;\\\">www.coredna.com</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END BODY -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t<!-- // END TEMPLATE -->\\n\\t\\t\\t</td>\\n\\t\\t</tr>\\n\\t</table>\\n</center>\\n</body>\\n</html>\",\n                \"contentType\": \"text/html\",\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [\n                    {\n                        \"rel\": \"show\",\n                        \"href\": \"/mailer/email/661480e7-f2fe-46c3-ba0c-bc79c260c9f5\",\n                        \"verb\": \"GET\",\n                        \"text\": \"Show\"\n                    }\n                ],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 5,\n                \"uuid\": \"661480e7-f2fe-46c3-ba0c-bc79c260c9f5\",\n                \"toName\": \"Mykhailo Gadalin\",\n                \"toEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"variables\": {\n                    \"username\": \"mykhailo.gadalin@coredna.com\",\n                    \"resetUrl\": \"https://theme3corednacom-mykhailo.de.coredna.dev/token-login?t=3EjXjBOKCYE8tURGNUJksxBaCH8HPovn1vg1k5gEZ\"\n                },\n                \"error\": null,\n                \"externalId\": \"dZrjnB6-Spmn5ACp8JtxGw\",\n                \"smtpId\": null,\n                \"queueId\": \"8e694766-5940-47e2-b4d2-8d3a819bff57\",\n                \"status\": \"sent\",\n                \"created\": \"2023-03-06T12:15:34+00:00\",\n                \"modified\": \"2023-03-06T12:15:38+00:00\",\n                \"sent\": \"2023-03-06T12:15:38+00:00\",\n                \"batch\": 5,\n                \"toPerson\": 39,\n                \"interactions\": []\n            },\n            {\n                \"parsedToEmail\": \"mikle77g50@gmail.com,mikle.gadalin@gmail.com\",\n                \"parsedToName\": \"Misha\",\n                \"parsedSubject\": \"Test\",\n                \"parsedBody\": \"test stwe\",\n                \"contentType\": \"text/plain\",\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [\n                    {\n                        \"rel\": \"show\",\n                        \"href\": \"/mailer/email/b1e5833a-5f12-434d-a1ca-1a61323c056d\",\n                        \"verb\": \"GET\",\n                        \"text\": \"Show\"\n                    }\n                ],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 6,\n                \"uuid\": \"b1e5833a-5f12-434d-a1ca-1a61323c056d\",\n                \"toName\": \"Misha\",\n                \"toEmail\": \"mikle77g50@gmail.com,mikle.gadalin@gmail.com\",\n                \"variables\": [],\n                \"error\": null,\n                \"externalId\": \"EfzPLb5yRvW3Hmtv8rX7VQ\",\n                \"smtpId\": null,\n                \"queueId\": \"1baaa265-6cd4-4437-be85-34ade819f0ba\",\n                \"status\": \"sent\",\n                \"created\": \"2023-06-22T19:57:52+00:00\",\n                \"modified\": \"2023-06-22T19:57:55+00:00\",\n                \"sent\": \"2023-06-22T19:57:54+00:00\",\n                \"batch\": 6,\n                \"toPerson\": null,\n                \"interactions\": []\n            }\n        ]\n    }\n}"},{"id":"7940b989-1458-4857-a5d0-0db48ba0a8ef","name":"List specific batch emails","originalRequest":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/mailer/emails/2"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"totalCount\": 1,\n    \"data\": {\n        \"batch\": {\n            \"opens\": 0,\n            \"clicks\": 0,\n            \"hateoasLinks\": [],\n            \"deleteUrl\": null,\n            \"manageUrl\": null,\n            \"id\": 2,\n            \"priority\": 2,\n            \"subject\": \"Core dna: Password Reset\",\n            \"fromName\": \"Core dna DXP\",\n            \"fromEmail\": \"no-reply@coredna.com\",\n            \"origin\": null,\n            \"sendAt\": \"2022-03-19T08:23:31+00:00\",\n            \"created\": \"2022-03-19T08:23:31+00:00\",\n            \"modified\": \"2022-03-19T08:23:31+00:00\",\n            \"template\": 2,\n            \"emails\": [\n                2\n            ],\n            \"attachments\": []\n        },\n        \"emails\": [\n            {\n                \"parsedToEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"parsedToName\": \"Mykhailo Gadalin\",\n                \"parsedSubject\": \"Core dna: Password Reset\",\n                \"parsedBody\": \"<!DOCTYPE html PUBLIC \\\"-//W3C//DTD XHTML 1.0 Transitional//EN\\\"\\n\\t\\t\\\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\\\">\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<head>\\n\\t<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=UTF-8\\\">\\n\\t<title>Core dna: Password Reset</title>\\n</head>\\n<body leftmargin=\\\"0\\\" marginwidth=\\\"0\\\" topmargin=\\\"0\\\" marginheight=\\\"0\\\" offset=\\\"0\\\"\\n      style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0; background-color: #DEE0E2; height: 100% !important; width: 100% !important;\\\">\\n<center>\\n\\t<table align=\\\"center\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" height=\\\"100%\\\" width=\\\"100%\\\" id=\\\"bodyTable\\\"\\n\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 0; background-color: #DEE0E2; border-collapse: collapse !important; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t<tr>\\n\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\" id=\\\"bodyCell\\\"\\n\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; margin: 0; padding: 20px; border-top: 4px solid #BBBBBB; height: 100% !important; width: 100% !important;\\\">\\n\\t\\t\\t\\t<!-- BEGIN TEMPLATE // -->\\n\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" id=\\\"templateContainer\\\"\\n\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 600px; border: 1px solid #BBBBBB; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN PREHEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templatePreheader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"preheaderContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #808080; font-family: Helvetica; font-size: 10px; line-height: 125%; text-align: left;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    mc:edit=\\\"preheader_content00\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tCore dna: Password Reset\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END PREHEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN HEADER // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateHeader\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"headerContent\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 20px; font-weight: bold; line-height: 100%; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; text-align: left; vertical-align: middle;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsrc=\\\"http://www.coredna.com/web_images/Manuals/Coredna_notification_header.png\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"max-width: 600px; -ms-interpolation-mode: bicubic; border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tid=\\\"headerImage\\\" mc:label=\\\"header_image\\\" mc:edit=\\\"header_image\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmc:allowdesigner mc:allowtext>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END HEADER -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td align=\\\"center\\\" valign=\\\"top\\\"\\n\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;\\\">\\n\\t\\t\\t\\t\\t\\t\\t<!-- BEGIN BODY // -->\\n\\t\\t\\t\\t\\t\\t\\t<table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\" id=\\\"templateBody\\\"\\n\\t\\t\\t\\t\\t\\t\\t       style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #F4F4F4; border-top: 1px solid #FFFFFF; border-bottom: 1px solid #CCCCCC; border-collapse: collapse !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content00\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h1 style=\\\"display: block; font-family: Helvetica; font-size: 26px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #202020 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Password</h1>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Hi\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tMykhailo,</p>\\n\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tusername is <strong>mykhailo.gadalin@coredna.com</strong>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">You can\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcreate your new password by clicking on this <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://theme3.coredna.com/cdna-admin/token-login?t=3IqYfiGNKD2vJxGmB6Uqo5Eh1cT52UJqxWQLSesiV\\\">Password\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReset Page Link</a>.\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\"> </p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tNeed more Help?</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Each time\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tyou log into Core dna you will be presented with the dashboard for your home\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsite. You can access Core dna help for any application by clicking on the\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thelp icon - the question mark icon in the top right hand corner of the menu\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tbar.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSecurity</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Data\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tsecurity is important &amp; its important that you don’t share your account\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tcredentials with any other party. All Core dna data is secured &amp; your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\taccess is linked to your user account. Additionally any data you create,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tedit or delete is attributed to your user account &amp; logged. Advise your\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSite Administrator(s) so if other users require access as they can create\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&amp; edit user accounts.</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<td valign=\\\"top\\\" class=\\\"bodyContent\\\" mc:edit=\\\"body_content01\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t    style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #505050; font-family: Helvetica; font-size: 14px; line-height: 150%; padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px; text-align: left;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<h2 style=\\\"display: block; font-family: Helvetica; font-size: 20px; font-style: normal; font-weight: bold; line-height: 100%; letter-spacing: normal; margin-top: 0; margin-right: 0; margin-bottom: 10px; margin-left: 0; text-align: left; color: #404040 !important;\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAbout Core dna</h2>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Core dna\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tis a cloud based Digital Experience Platform consisting of more than 80\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tapplications to allow you to manage your digital Content, Connection,\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tInteractions &amp; Transactions. These applications work together to deliver\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tremarkable digital experiences for your visitors &amp; they get better in\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\treal-time!</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<p style=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;\\\">Find our\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tmore about Core dna &amp; contribute to the development roadmap at <a\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\thref=\\\"https://www.coredna.com\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\ttarget=\\\"_blank\\\"\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tstyle=\\\"-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; color: #EB4102; font-weight: normal; text-decoration: underline;\\\">www.coredna.com</a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</p>\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t\\t\\t\\t<!-- // END BODY -->\\n\\t\\t\\t\\t\\t\\t</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t</table>\\n\\t\\t\\t\\t<!-- // END TEMPLATE -->\\n\\t\\t\\t</td>\\n\\t\\t</tr>\\n\\t</table>\\n</center>\\n</body>\\n</html>\",\n                \"contentType\": \"text/html\",\n                \"opens\": 0,\n                \"clicks\": 0,\n                \"hateoasLinks\": [\n                    {\n                        \"rel\": \"show\",\n                        \"href\": \"/mailer/email/1e2c0e81-ed88-4b7a-86d8-b745fed24685\",\n                        \"verb\": \"GET\",\n                        \"text\": \"Show\"\n                    }\n                ],\n                \"deleteUrl\": null,\n                \"manageUrl\": null,\n                \"id\": 2,\n                \"uuid\": \"1e2c0e81-ed88-4b7a-86d8-b745fed24685\",\n                \"toName\": \"Mykhailo Gadalin\",\n                \"toEmail\": \"mykhailo.gadalin@coredna.com\",\n                \"variables\": {\n                    \"username\": \"mykhailo.gadalin@coredna.com\",\n                    \"resetUrl\": \"https://theme3.coredna.com/cdna-admin/token-login?t=3IqYfiGNKD2vJxGmB6Uqo5Eh1cT52UJqxWQLSesiV\"\n                },\n                \"error\": null,\n                \"externalId\": \"KbpzLFxxReqfk01DHwhdSQ\",\n                \"smtpId\": null,\n                \"queueId\": \"5bccdf89-fa1c-4d4d-9f0e-66ec7a0f8f6a\",\n                \"status\": \"sent\",\n                \"created\": \"2022-03-19T08:23:31+00:00\",\n                \"modified\": \"2022-03-19T08:23:32+00:00\",\n                \"sent\": \"2022-03-19T08:23:32+00:00\",\n                \"batch\": 2,\n                \"toPerson\": 39,\n                \"interactions\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"e04c1352-fb94-44be-8380-aa71bcfad7e2"}],"id":"b09fb306-5c9e-4226-836c-55816ec6ff33","_postman_id":"b09fb306-5c9e-4226-836c-55816ec6ff33","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"1356a7b1-b63d-4baa-b938-5a680874556b","_postman_id":"1356a7b1-b63d-4baa-b938-5a680874556b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Discounts","item":[{"name":"Codes","item":[{"name":"List codes Copy","id":"91be55a2-c7eb-4888-853c-ec0b604cf9ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/discounts/codes?properties={\n  codes {\n    id,\n    discount:discount.id,\n    code\n  }\n}","description":"<p>List the pages available for a specific unit</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","discounts","codes"],"host":["{{domain}}"],"query":[{"key":"properties","value":"{\n  codes {\n    id,\n    discount:discount.id,\n    code\n  }\n}"}],"variable":[]}},"response":[],"_postman_id":"91be55a2-c7eb-4888-853c-ec0b604cf9ae"},{"name":"Show code Copy","id":"fa888e5f-0e94-4e77-86d7-726b4902b838","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{protocol}}://{{domain}}/cdna-api/discounts/code/2","description":"<p>Retrieve details (including area contents) for a page</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","discounts","code","2"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa888e5f-0e94-4e77-86d7-726b4902b838"},{"name":"Add code Copy","id":"e7cad540-3a4c-42de-9c1c-db3db3d7239a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"discount\": 3,\n\t\"code\": \"PRO\"\n}"},"url":"{{protocol}}://{{domain}}/cdna-api/discounts/code","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","discounts","code"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7cad540-3a4c-42de-9c1c-db3db3d7239a"},{"name":"Edit code Copy","id":"ee28955c-e7e6-4146-95b4-c5c0d9c197c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"codeUrl\": {\n        \"customUrl\": {\n            \"url\": \"/pro-code\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{protocol}}://{{domain}}/cdna-api/discounts/code/6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","discounts","code","6"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ee28955c-e7e6-4146-95b4-c5c0d9c197c5"},{"name":"Delete code Copy","id":"4654989a-fc03-4db7-861c-1f713d0c4147","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"{{protocol}}://{{domain}}/cdna-api/discounts/code/5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"protocol":"{{protocol}}","path":["cdna-api","discounts","code","5"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4654989a-fc03-4db7-861c-1f713d0c4147"}],"id":"44c03243-074f-452b-9811-e505e42bd700","_postman_id":"44c03243-074f-452b-9811-e505e42bd700","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"6c4325f8-5744-40f6-9d83-87e7e03e9b7c","_postman_id":"6c4325f8-5744-40f6-9d83-87e7e03e9b7c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}},{"name":"Miscellaneous","item":[{"name":"Collection Operations","item":[{"name":"Remove single element","id":"c4ad84ea-18ba-41da-8431-addc6a02d3e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"removeAreaCollectionElement(pageSections, 3)\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}","description":"<p>Removes the element at sorted ordinal position 3 from the <code>pageSections</code> collection area on page <code>{{pageId}}</code>. The value (<code>true</code>) is ignored — only the position in the key matters.</p>\n<p>Remaining elements keep their stored position values (gaps allowed). This is intentional: it makes batch removals against the original collection state stable.</p>\n<p><strong>Cross-reference:</strong> see <em>Batch Operations → Remove multiple in one call</em> for the rationale behind not reindexing.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"path":["cdna-api","pages","page","{{pageId}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4ad84ea-18ba-41da-8431-addc6a02d3e4"},{"name":"Insert at position","id":"32ff1d3c-a7b9-455a-b590-03a2e12626d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"insertAreaCollectionElement(pageSections, 2)\": {\n            \"layout\": \"rich-text\",\n            \"name\": \"Inserted Component\",\n            \"areas\": {\n                \"content\": \"<h1>Hello World</h1>\",\n                \"componentStyle\": \"component--theme-black\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}","description":"<p>Inserts a new component at sorted ordinal position 2 in the <code>pageSections</code> collection area. Existing elements at ordinal 2 and beyond have their stored position incremented by 1 (the API resolves the input ordinal to the <em>stored</em> position of the element currently at that ordinal, then shifts everything with a stored position &gt;= that value).</p>\n<p><strong>Value object fields:</strong></p>\n<ul>\n<li><code>layout</code> (int|string) — Layout ID or unique identifier for the new component</li>\n<li><code>name</code> (string) — Component name (required by most layouts)</li>\n<li><code>areas</code> (object) — Area content keyed by area name within the new component</li>\n<li><code>published</code> (bool, optional) — Defaults to <code>true</code> if absent. Pass <code>false</code> to create an unpublished/draft component.</li>\n<li><code>global</code> (bool, optional) — Set to <code>true</code> to create a global component</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"path":["cdna-api","pages","page","{{pageId}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"fd05efda-daca-47b4-9b2d-7a52df84c963","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json"},{"key":"User-Agent","value":"coredna/dxp2"}],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"insertAreaCollectionElement(pageSections, 2)\": { \"layout\": \"rich-text\", \"name\": \"Inserted Component\", \"areas\": { \"content\": \"<h1>Hello World</h1>\" } }\n    }\n}"},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 123,\n            \"name\": \"Testimonials\",\n            \"activeRevision\": 19158,\n            \"lastRevision\": 19158,\n            \"modified\": \"2026-04-08T10:27:42+10:00\"\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"32ff1d3c-a7b9-455a-b590-03a2e12626d9"},{"name":"Append single element","id":"b52375da-1b22-41e6-aff2-9f6d1ad9c0d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"appendAreaCollectionElement(pageSections)\": {\n            \"layout\": 10,\n            \"name\": \"New Last Section\",\n            \"areas\": {\n                \"heading\": \"Footer CTA\",\n                \"richText\": \"<p>Call to action content</p>\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}","description":"<p>Appends a new component at the end of the <code>pageSections</code> collection area. The new element gets a stored position of <code>max(existing stored positions) + 1</code>, so it works correctly even when the collection has gaps from prior removals.</p>\n<p><strong>Limitation:</strong> the API key has no disambiguating argument, so JSON forbids two <code>appendAreaCollectionElement(pageSections)</code> keys in the same payload. To append multiple elements in one request, use the plural variant in <em>Batch Operations → Append multiple</em>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"path":["cdna-api","pages","page","{{pageId}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c8b91073-e3af-40ff-98d6-56a6b7973e1f","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json"},{"key":"User-Agent","value":"coredna/dxp2"}],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"appendAreaCollectionElement(pageSections)\": { \"layout\": 10, \"name\": \"New Last Section\", \"areas\": { \"heading\": \"Footer CTA\" } }\n    }\n}"},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 123,\n            \"name\": \"Testimonials\",\n            \"activeRevision\": 19161,\n            \"lastRevision\": 19161,\n            \"modified\": \"2026-04-08T10:29:04+10:00\"\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"b52375da-1b22-41e6-aff2-9f6d1ad9c0d0"},{"name":"Mixed operations in one call","id":"fbd99670-8b6d-48d3-9a19-ee35112811f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"name\": \"Updated Revision Name\",\n        \"removeAreaCollectionElement(pageSections, 3)\": true,\n        \"insertAreaCollectionElement(pageSections, 1)\": {\n            \"layout\": 10,\n            \"name\": \"New First Section\",\n            \"areas\": { \"heading\": \"Hero\" }\n        },\n        \"appendAreaCollectionElement(pageSections)\": {\n            \"layout\": 10,\n            \"name\": \"New Last Section\",\n            \"areas\": { \"heading\": \"Footer CTA\" }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}","description":"<p>Combines remove, insert, append, and a non-collection scalar field (<code>name</code>) on the same revision in one request. Each collection-operation key contains its position (or is uniquely keyed for append), so they coexist in one JSON object without collision.</p>\n<p><strong>Important:</strong> do not rely on inter-key execution order. JSON object key order is not guaranteed by the spec, and different parsers may iterate keys in different orders. Construct payloads whose outcome is independent of iteration order — which is exactly what the <em>positions are stable handles</em> design enables.</p>\n<p><strong>Out-of-scope notes for this collection:</strong></p>\n<ul>\n<li>To <code>patch</code> (partially update) an existing element rather than replace it, use <code>patchAreaCollectionElement(areaName, position)</code> — see the components reference doc.</li>\n<li>To replace an entire collection, use <code>setAreaContent(areaName)</code> with the full element list.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"path":["cdna-api","pages","page","{{pageId}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"cf400277-d983-4d6c-a416-adf71820586c","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json"},{"key":"User-Agent","value":"coredna/dxp2"}],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"name\": \"Updated Revision Name\",\n        \"removeAreaCollectionElement(pageSections, 3)\": true\n    }\n}"},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 123,\n            \"name\": \"Testimonials\",\n            \"activeRevision\": 19164,\n            \"lastRevision\": 19164,\n            \"modified\": \"2026-04-08T10:30:34+10:00\"\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"fbd99670-8b6d-48d3-9a19-ee35112811f2"},{"name":"Append multiple (plural)","id":"219358f6-c9ee-4d7c-b647-8eccf2596ad4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"appendAreaCollectionElements(pageSections)\": [\n            {\n                \"layout\": 10,\n                \"name\": \"First Added Section\",\n                \"areas\": { \"heading\": \"Section A\" }\n            },\n            {\n                \"layout\": 10,\n                \"name\": \"Second Added Section\",\n                \"areas\": { \"heading\": \"Section B\" }\n            },\n            {\n                \"layout\": 10,\n                \"name\": \"Draft Section (unpublished)\",\n                \"published\": false,\n                \"areas\": { \"heading\": \"Section C (draft)\" }\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}","description":"<p><strong>Note the trailing <code>s</code> in <code>appendAreaCollectionElements</code></strong> — this is the plural batch variant.</p>\n<p>Appends multiple new components to the end of <code>pageSections</code> in one request. Accepts an <strong>indexed array</strong> of component data objects, each with the same shape as the value used in <em>Single Operations → Append single element</em>.</p>\n<p><strong>Why a separate plural method?</strong> The singular <code>appendAreaCollectionElement(areaName)</code> API key has no disambiguating argument, so a JSON payload cannot carry two of them for the same area — duplicate keys collapse to the last one during JSON parsing. The plural form sidesteps this by accepting all elements as values inside a single key.</p>\n<p><strong>Behavior:</strong></p>\n<ul>\n<li>Elements are appended in array order</li>\n<li>Each element receives <code>max(stored position) + 1</code> at the moment it is added, producing a contiguous run at the end</li>\n<li>Individual elements in the batch can be created unpublished by setting <code>\"published\": false</code> in their <code>data</code> object (see the third element in the example payload)</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}},"urlObject":{"path":["cdna-api","pages","page","{{pageId}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e82c43a2-93d3-410d-a998-869cbc31b7d6","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Accept","value":"application/json"},{"key":"User-Agent","value":"coredna/dxp2"}],"body":{"mode":"raw","raw":"{\n    \"patchRevision\": {\n        \"activeRevision\": true,\n        \"appendAreaCollectionElements(pageSections)\": [\n            { \"layout\": 10, \"name\": \"First Added Section\", \"areas\": { \"heading\": \"Section A\" } },\n            { \"layout\": 10, \"name\": \"Second Added Section\", \"areas\": { \"heading\": \"Section B\" } }\n        ]\n    }\n}"},"url":"{{domain}}/cdna-api/pages/page/{{pageId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"page\": {\n            \"id\": 123,\n            \"name\": \"Testimonials\",\n            \"activeRevision\": 19163,\n            \"lastRevision\": 19163,\n            \"modified\": \"2026-04-08T10:30:01+10:00\"\n        }\n    },\n    \"message\": \"The Page has been saved successfully.\"\n}"}],"_postman_id":"219358f6-c9ee-4d7c-b647-8eccf2596ad4"}],"id":"81f7b6eb-8206-44de-9ffc-e1cac946adfe","description":"<p>Granular operations for managing collection-area elements on versioned entities (Pages, Blog Posts, FAQ Questions, Book Pages, Global Components, etc.) via the <code>patchRevision</code> API.</p>\n<h2 id=\"position-semantics\">Position semantics</h2>\n<p>The <code>position</code> parameter in every API key is a <strong>1-based sorted ordinal</strong> (\"the Nth element in sorted order\"), not a raw stored position value. Removals leave gaps in stored positions, but the API hides those gaps from you by resolving ordinals via sorted order on every read. This is what makes batch removals stable — you can submit <code>[2, 4]</code> against the original collection state and the second op still sees the original positions.</p>\n","_postman_id":"81f7b6eb-8206-44de-9ffc-e1cac946adfe","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"id":"c4b170c4-105f-4d36-9490-9bf18f8ff4c4","_postman_id":"c4b170c4-105f-4d36-9490-9bf18f8ff4c4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","id":"2592cfc9-f585-4adf-b34a-e821f212ecb6","name":"coredna API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{apikey}}"}]}},"event":[{"listen":"prerequest","script":{"id":"75fb3a1b-07da-482a-8750-d8e05e0f4bc8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a2950a1a-73f9-4cd5-99a0-9764bfd85190","type":"text/javascript","exec":[""]}}]}