{"info":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","description":"<html><head></head><body><p>This is techinical documentation for Mozard Suite.</p>\n<p>You can find information on:</p>\n<ol>\n<li><p><a href=\"#1-form-embed\">Form embed</a></p>\n</li>\n<li><p><a href=\"#2-datalist-embed\">Datalist embed</a></p>\n</li>\n<li><p><a href=\"#3-webhooks\">Webhooks</a></p>\n</li>\n<li><p><a href=\"#4-api-usage\">API usage</a></p>\n</li>\n<li><p><a href=\"#5-formula-functions\">Formula functions</a></p>\n</li>\n<li><p><a href=\"#5-api-documentation\">API documentation</a></p>\n</li>\n</ol>\n<p>Please contact <a href=\"https://mailto:support@mozard.nl\">support@mozard.nl</a> for any questions or problems related to thinotes documentation.</p>\n<hr>\n<h1 id=\"1-form-embed\">1. Form embed</h1>\n<p>The form embed is a dynamic and flexible component to load in your created forms from Mozard Suite Forms. It allows you to embed the form into your own website. You can find a basic embed script from Mozard Suite Forms in the <em>Share</em> screen of each form.</p>\n<h2 id=\"example\">Example</h2>\n<p>Here's an example of how to initialize the embed:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; id=\"embed\"&gt;&lt;/div&gt;\n&lt;script src=\"https://cdn.mozardsuite.nl/forms/embed-latest.js\"&gt;&lt;/script&gt;\n&lt;link rel=\"stylesheet\" href=\"https://cdn.mozardsuite.nl/forms/embed-latest.css\"&gt;\n&lt;script&gt;\n  Atabase.form('#embed', {\n    id: 'form-id',\n    baseUrl: 'https://TENANT.api.forms.mozardsuite.nl',\n    locale: 'nl-NL',\n  })\n&lt;/script&gt;\n\n</code></pre>\n<h2 id=\"embedoptions\">EmbedOptions</h2>\n<p>The <code>EmbedOptions</code> type defines the configuration options for initializing the embed.<br>These options include what form (and submission), prefilling, loaded page and callbacks.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td><code>string</code></td>\n<td>The id of the form you want to load in.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td><code>baseUrl</code></td>\n<td><code>string</code></td>\n<td>URL or a function returning a URL for fetching data.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td><code>publicKey</code></td>\n<td><code>string</code> or <code>undefined</code></td>\n<td>Using the public key you can start a form from where you left off.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>context</code></td>\n<td><code>Context</code></td>\n<td>Define what page and break you should start on.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>payload</code></td>\n<td><code>Payload</code></td>\n<td>Prefill fields with your own set values.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>isLoading</code></td>\n<td><code>string</code></td>\n<td>Optional set the form into a loading state.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>readonly</code></td>\n<td><code>boolean</code></td>\n<td>Optional make the form uneditable, only allows the used to view the form.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>isSavable</code></td>\n<td><code>boolean</code></td>\n<td>Optional define if the form can be saved for later.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>callbackOptions</code></td>\n<td><code>FormEmbedCallbacks</code></td>\n<td>Optional define callbacks to hook into the form.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>locale</code></td>\n<td><code>string</code></td>\n<td>Use <strong>IETF BCP 47</strong> code, nl-NL, en-GB, etc.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"context\">Context</h3>\n<p>Define what page and break you should start on.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-jacascript\">    context: {\n      page: 'page-id'\n      break: 'break-property-id'\n    },\n\n</code></pre>\n<h3 id=\"payload\">Payload</h3>\n<p>Prefill fields with your own set values.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-jacascript\">    payload: {\n      'property-id-1': 'Hello world'\n      'property-id-2': true\n    },\n\n</code></pre>\n<h3 id=\"callback-options\">Callback options</h3>\n<p>Define callbacks to hook into the form. The available callbacks are described at <a href=\"#formembedcallbacks\">FormEmbedCallbacks</a>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">    callbackOptions: {\n      onSave: (formPayload) =&gt; {\n        return false\n      },\n      onSubmit: (callbackValues) =&gt; {\n        return false\n      },\n\n</code></pre>\n<h2 id=\"formembedcallbacks\">FormEmbedCallbacks</h2>\n<p>Callbacks can be used to intersect or see certain changes within the form.<br>This allows you to run your own code upon the firing of one of these events.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>onSave</code></td>\n<td>onSaveFunction</td>\n<td>onSave fires when the user clicks on save the form later.</td>\n</tr>\n<tr>\n<td><code>onSubmit</code></td>\n<td>onSubmitFunction</td>\n<td>onSubmit fires when the form is in it's final state and the user can click on the submit button.</td>\n</tr>\n<tr>\n<td><code>onClickPreviousPage</code></td>\n<td>onClickPreviousPageFunction</td>\n<td>onClickPreviousPage fires upon clicking the previous page button.</td>\n</tr>\n<tr>\n<td><code>onClickNextPage</code></td>\n<td>onClickNextPageFunction</td>\n<td>onClickNextPage fires upon clicking the next page button.</td>\n</tr>\n<tr>\n<td><code>onFormSaved</code></td>\n<td>onFormSavedFunction</td>\n<td>onFormSaved is fired after <code>onSave</code> and the saving of the form has been completed.</td>\n</tr>\n<tr>\n<td><code>onFormSubmitted</code></td>\n<td>onFormSubmittedFunction</td>\n<td>onFormSubmitted is fired after <code>onSubmit</code> and the submitting of the form has been completed.</td>\n</tr>\n<tr>\n<td><code>onInputChanged</code></td>\n<td>onInputChangedFunction</td>\n<td>onInputChanged is fired when the value of an input on the form is changed.</td>\n</tr>\n<tr>\n<td><code>onValidationError</code></td>\n<td>onValidationErrorFunction</td>\n<td>onValidationError is whenever the validation is fired and returns some errors.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"onsavefunction\">onSaveFunction</h3>\n<p>onSave fires when the user clicks on save the form later.<br>It returns the current payload and allows you to prevent the saving from happening.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onSave: (formPayload) =&gt; {\n  console.log('formPayload', formPayload)\n  return false\n},\n\n</code></pre>\n<h4 id=\"params\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>formPayload</code></td>\n<td>Record</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns\">Returns</h4>\n<p>When returning false you prevent the saving from happing.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">return false\n\n</code></pre>\n<h3 id=\"onsubmitfunction\">onSubmitFunction</h3>\n<p>onSubmit fires when the form is in it's final state and the user can click on the submit button.<br>It returns the payload and any errors that maybe have come up from the validation rpc.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onSubmit: (callbackValues) =&gt; {\n  console.log('payload', callbackValues.payload)\n  console.log('errors', callbackValues.errors)\n  return false\n},\n\n</code></pre>\n<h4 id=\"params-1\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>callbackValues</code></td>\n<td>SubmitCallbackValues</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"submitcallbackvalues\">SubmitCallbackValues</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>payload</code></td>\n<td>Record</td>\n</tr>\n<tr>\n<td><code>errors</code></td>\n<td>Record</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns-1\">Returns</h4>\n<p>onSubmit can be prevented from executing further this the form from submitting.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">return false\n\n</code></pre>\n<h3 id=\"onclickpreviouspagefunction\">onClickPreviousPageFunction</h3>\n<p>onClickPreviousPage fires upon clicking the previous page button.<br>It returns the payload, the current page and the destination page.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onClickPreviousPage: (callbackValues) =&gt; {\n  console.log('payload', callbackValues.payload)\n  console.log('current_page', callbackValues.current_page)\n  console.log('destination_page', callbackValues.destination_page)\n  return false\n},\n\n</code></pre>\n<h4 id=\"params-2\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>callbackValues</code></td>\n<td>ChangePageCallbackValues</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"changepagecallbackvalues\">ChangePageCallbackValues</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>payload</code></td>\n<td>Record</td>\n</tr>\n<tr>\n<td><code>current_page</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>destination_page</code></td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns-2\">Returns</h4>\n<p>You can prevent the user from going back a page by returning false.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">return false\n\n</code></pre>\n<h3 id=\"onclicknextpagefunction\">onClickNextPageFunction</h3>\n<p>onClickNextPage fires upon clicking the next page button.<br>It returns the payload, the current page and the destination page.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onClickNextPage: (callbackValues) =&gt; {\n  console.log('payload', callbackValues.payload)\n  console.log('current_page', callbackValues.current_page)\n  console.log('destination_page', callbackValues.destination_page)\n  return false\n},\n\n</code></pre>\n<h4 id=\"params-3\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>callbackValues</code></td>\n<td>ChangePageCallbackValues</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"changepagecallbackvalues-1\">ChangePageCallbackValues</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>payload</code></td>\n<td>Record</td>\n</tr>\n<tr>\n<td><code>current_page</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>destination_page</code></td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns-3\">Returns</h4>\n<p>You can prevent the user from going to the next page by returning false.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">return false\n\n</code></pre>\n<h3 id=\"onformsavedfunction\">onFormSavedFunction</h3>\n<p>onFormSaved is fired after <code>onSave</code> and the saving of the form has been completed.<br>It returns the payload and the public key for the saved draft submission.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onFormSaved: (formPayload, publicKey) =&gt; {\n  console.log('formPayload', formPayload)\n  console.log('publicKey', publicKey)\n},\n\n</code></pre>\n<h4 id=\"params-4\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>formPayload</code></td>\n<td>Record</td>\n</tr>\n<tr>\n<td><code>publicKey</code></td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns-4\">Returns</h4>\n<p>As this is a final function it cannot prevent any more code from firing.<br>If you wish to stop the saving please check <code>onSave</code>.</p>\n<h3 id=\"onformsubmittedfunction\">onFormSubmittedFunction</h3>\n<p>onFormSubmitted is fired after <code>onSubmit</code> and the submitting of the form has been completed.<br>It returns the payload of the submission.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onFormSubmitted: (formPayload) =&gt; {\n  console.log('formPayload', formPayload)\n},\n\n</code></pre>\n<h4 id=\"params-5\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>formPayload</code></td>\n<td>Record</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns-5\">Returns</h4>\n<p>As this is a final function it cannot prevent any more code from firing.<br>If you wish to stop the saving please check <code>onSubmit</code>.</p>\n<h3 id=\"oninputchanged\">onInputChanged</h3>\n<p>onInputChanged is fired when the value of an input on the form is changed.<br>It returns the input, the value and the payload of the form.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onInputChanged: (callbackValues) =&gt; {\n  console.log('input', callbackValues.input)\n  console.log('value', callbackValues.value)\n  console.log('payload', callbackValues.payload)\n},\n\n</code></pre>\n<h4 id=\"params-6\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>callbackValues</code></td>\n<td>ChangeInputCallbackValues</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"changeinputcallbackvalues\">ChangeInputCallbackValues</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>input</code></td>\n<td>Property</td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td>any</td>\n</tr>\n<tr>\n<td><code>payload</code></td>\n<td>Record</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns-6\">Returns</h4>\n<p>As this is a final function it cannot prevent any more code from firing.</p>\n<h3 id=\"oninputchangedfunction\">onInputChangedFunction</h3>\n<p>onInputChanged is fired when the value of an input on the form is changed.<br>It returns the input, the value and the payload of the form.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onInputChanged: (callbackValues) =&gt; {\n  console.log('input', callbackValues.input)\n  console.log('value', callbackValues.value)\n  console.log('payload', callbackValues.payload)\n},\n\n</code></pre>\n<h4 id=\"params-7\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>callbackValues</code></td>\n<td>ChangeInputCallbackValues</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"changeinputcallbackvalues-1\">ChangeInputCallbackValues</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>input</code></td>\n<td>Property</td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td>any</td>\n</tr>\n<tr>\n<td><code>payload</code></td>\n<td>Record</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"property\">Property</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"returns-7\">Returns</h3>\n<p>As this is a final function it cannot prevent any more code from firing.</p>\n<h3 id=\"onvalidationerrorfunction\">onValidationErrorFunction</h3>\n<p>onValidationError is whenever the validation is fired and returns some errors.<br>It returns the errors and the payload of the form.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">onValidationError: (callbackValues) =&gt; {\n  console.log('errors', callbackValues.errors)\n  console.log('payload', callbackValues.payload)\n},\n\n</code></pre>\n<h4 id=\"params-8\">Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>callbackValues</code></td>\n<td>ValidationErrorCallbackValues</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"changeinputcallbackvalues-2\">ChangeInputCallbackValues</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>errors</code></td>\n<td>Record</td>\n</tr>\n<tr>\n<td><code>payload</code></td>\n<td>Record</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns-8\">Returns</h4>\n<p>As this is a final function it cannot prevent any more code from firing.</p>\n<hr>\n<h1 id=\"2-datalist-embed\">2. Datalist embed</h1>\n<p>Datalist embed is a dynamic and customisable component designed to be integrated with Mozard Suite Datalists. It allows users to present and interact with data across layouts while supporting customisable themes and interactive functionalities like filters, item highlighting and a hero image.</p>\n<h2 id=\"example-1\">Example</h2>\n<p>Here's an example of how to initialise the embed:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">window.Atabase.datalist('#embed', {\n  list: [\n    {\n      id: 'overview-1-id',\n      highlight: {\n        column: \"column-1-from-overview-2-id\",\n        list: \"overview-2-id\",\n        title: \"Custom Title\"\n      },\n      layout: {\n        list: {\n          order: ['content', 'thumbnail'],\n          columns: [\n            'column-1-from-overview-1-id',\n            'column-2-from-overview-1-id',\n          ]\n        }\n      },\n      heroTransformers: {\n        title: ({ value }) =&gt; `This is a transformed title in the hero of the detail page ${value}`,\n        subtitle: ({ value }) =&gt; `This is a transformed subtitle in the hero of the detail page ${value}`\n      },\n      transformers: {\n        'Voornaam': ({ value }) =&gt; value,\n        'Naam': (arguments) =&gt; {\n          console.log('Argumenten', arguments);\n          return arguments.value;\n        },\n        'Title': ({ value, context }) =&gt; {\n          switch (context) {\n            case 'list': {\n              const newValue = `This is a tranformed title for list view: ${item['Title']}`\n              return newValue;\n            }\n            case 'grid': {\n              const newValue = `This is a tranformed title for grid: ${item['Title']}`\n              return newValue;\n            }\n            case 'table': {\n              const newValue = `This is a tranformed title for table: ${item['Title']}`\n              return newValue;\n            }\n            case 'detail': {\n              const newValue = `This is a tranformed title for the detail page: ${item['Title']}`\n              return newValue;\n            }\n            case 'suggestion': {\n              const newValue = `This is a tranformed title for the suggestions on a detail page: ${item['Title']}`\n              return newValue;\n            }\n          // No default\n          }\n          return value;\n        },\n      },\n      attributes: {\n        'column-id': {\n          'alt': {\n            type: 'dms',\n            value: 'description'\n          },\n          'date': {\n            type: 'dms',\n            value: 'date'\n          },\n          'crossorigin': {\n            type: 'text',\n            value: 'anonymous'\n          },\n        }\n      }\n      hideSearchBar: true\n    }, \n    {\n      id: 'overview-2-id',\n    }, \n    {\n      id: 'overview-3-id'\n    }\n  ],\n  url: 'https://MIJNOMGEVING.api.accounts.mozardsuite.nl',\n  onClickItem: (item) =&gt; {\n    // Additional event handling\n  },\n  onMounted: () =&gt; {\n    // Additional event handling\n  },\n  onAfterInitialize: () =&gt; {\n    // Additional event handling\n  },\n  onFilter: (filters) =&gt; {\n    // Additional event handling\n  },\n  onChangeOverview: (overviewId) =&gt; {\n    // Additional event handling\n  },\n  onClickSearch: (searchValue) =&gt; {\n    // Additional event handling\n  },\n  onChangeLayoutDisplay: (layoutDisplay) =&gt; {\n    // Additional event handling\n  },\n  onClickHighlight: (highlight) =&gt; {\n    // Additional event handling\n  },\n  onReturnToOverview: () =&gt; {\n    // Additional event handling\n  },\n  onChangePage: (pageNumber) =&gt; {\n    // Additional event handling\n  },\n  onToggleMobileFilters: (filtersOpen) =&gt; {\n    // Additional event handling\n  },\n  headers: () =&gt; ({\n    newHeader: 'xxxx-xxxx',\n  }),\n  queryParam: 'encodedParameters'\n  layout: ['list', 'grid', 'table'],\n  hideEmptyValues: true,\n  listAndGridItemsAsAnchors: true,\n  dictionary: {\n    typesTitle: 'Type',\n    filterTitle: 'Filter',\n    closeButton: 'Sluiten',\n    searchPlaceholder: 'Zoeken',\n    searchButton: 'Zoeken',\n    backButton: 'Terug',\n    filtersButton: 'Filters',\n    layoutList: 'Lijst',\n    layoutGrid: 'Grid',\n    layoutTable: 'Tabel'\n  },\n  theme: {\n    detailHeroImageObjectFit: 'object-cover',\n    detailTableImageObjectFit: 'object-scale-down',\n    tableImageObjectFit: 'object-scale-down',\n    listImageObjectFit: 'object-scale-down',\n    gridImageObjectFit: 'object-scale-down',\n    background: '#00000000',\n    foreground: '#000000',\n    mutedForeground: '#787878',\n    item: '#ffffff',\n    itemForeground: '#000000',\n    itemHover: '#f1f1f1',\n    card: '#ffffff',\n    cardForeground: '#000000',\n    overviewTitleForeground: '#000000',\n    returnButton: '#000000',\n    returnButtonForeground: '#ffffff',\n    highlight: '#f1f1f1',\n    border: '#B4B4B4',\n    input: '#00000000',\n    inputForeground: '#696969',\n    primary: '#0a3d3a',\n    primaryHover: '#0a3d3aCC',\n    primaryForeground: '#ffffff',\n    secondary: '#f1f1f1',\n    secondaryForeground: '#000000',\n    destructive: '#fcfcfc',\n    destructiveForeground: '#990000',\n    ring: '#0a3d3a',\n    radius: '0.3rem',\n    link: '#01689b',\n    fontContent: '\"nudista-web\", sans-serif',\n    fontTitle: '\"nudista-web\", sans-serif',\n  },\n})\n\n</code></pre>\n<h2 id=\"features\">Features</h2>\n<h3 id=\"overview\">Overview</h3>\n<p>An overview is a customizable subset of a datalist. It allows you to select specific columns from a datalist, configure filters and display settings. Overviews are intended to be public, enabling it's use on different websites or within the embed component.</p>\n<p>In the embed, you can use one or multiple overviews simultaneously, allowing users to switch between them within the component.</p>\n<img src=\"https://content.pstmn.io/4b067c22-d3cd-490e-bd0d-e6d7e98d19c3/aW1hZ2UwMDEucG5n\">\n\n<p>Having multiple overviews enables you to change between different content and configurations, allowing for varied settings and filters. Overviews can be different datalist's, using different sets of data.</p>\n<h3 id=\"filters\">Filters</h3>\n<p>Filters refine the data shown in an overview based on specific criteria. Users can interact with visible filters by dynamically changing the displayed data. The filters are configurable as shown in the following image.</p>\n<img src=\"https://content.pstmn.io/6466ed3a-18b7-4eab-b9bc-47e26ae1254c/U2NyZWVuc2hvdCAyMDI0LTA3LTE3IGF0IDE3LjA0LjM0LnBuZw==\">\n\n<p>The settings of a filter include Label, Placeholder, Description, Standard value and Visibility. The list of filters can be sorted to apply the desired order on the embed.</p>\n<p>The result of applying filters in the embed is shown in the next image.</p>\n<img src=\"https://content.pstmn.io/d5e05575-d3f2-4602-936f-2a3c257e836f/aW1hZ2UwMDMucG5n\">\n\n<h3 id=\"groups\">Groups</h3>\n<p>Groups allow you to organise columns in the detail page of an item. This feature helps in structuring the data presentation by grouping related columns together. Inside an overview, you can create groups and select which columns are displayed within a group.</p>\n<img src=\"https://content.pstmn.io/c67a7e14-b755-4870-8513-23c6176de26e/aW1hZ2UwMDYucG5n\">\n\n<p>The result of grouping columns will be seen on the detail page of an item in the embed, as can be seen in the image bellow.</p>\n<img src=\"https://content.pstmn.io/aaf1185a-e2e1-4b00-a1d7-d3bd878d5fea/aW1hZ2UwMDUucG5n\">\n\n<h3 id=\"overview-layout\">Overview Layout</h3>\n<p>Layout allows you to alter the order and content of an item in the overview page.</p>\n<img src=\"https://content.pstmn.io/d0f88dac-4bdb-4e54-b832-f0f6fec47d2a/U2NyZWVuc2hvdCAyMDI0LTA4LTE0IGF0IDEzLjEwLjI4LnBuZw==\">\n\n<h3 id=\"overview-highlight\">Overview Highlight</h3>\n<p>The highlight feature allows you to link related items from other overviews. This is done by specifying a column in one overview that references items from another overview. The result of adding highlights to the configuration conclude in a new section on the detail page of an item, allowing the user to navigate to different items within the same or different overview.</p>\n<img src=\"https://content.pstmn.io/e80ece6d-2e66-4fb2-a604-8ef4cd80d12d/aW1hZ2UwMDQucG5n\">\n\n<h3 id=\"overview-attributes\">Overview Attributes</h3>\n<p>The overview attributes enable the attachment of additional parameters to image elements within embedded hypertext. This allows for the customization of image file metadata displayed on the website where the embed is used.</p>\n<h3 id=\"overview-transformers\">Overview Transformers</h3>\n<p>Transformers allow you to modify the displayed value of a value in the overview. This feature is useful for formatting the data in a specific way, such as converting a value to a different unit. The transform can also be applied conditionally based on the context of the display.</p>\n<h3 id=\"hero-image\">Hero Image</h3>\n<p>Each overview can have a configurable hero image that will be displayed on the detail page of an item. The hero image enhances the visual presentation of the detail page and can be defined in two ways:</p>\n<ol>\n<li><p><strong>From a Column</strong>: Select a specific column in the overview that contains a file and the image from this column is used as the hero image.</p>\n</li>\n<li><p><strong>Default Hero Image</strong>: Set a default hero image to be used.</p>\n</li>\n</ol>\n<p>If neither a column image nor a default hero image is defined, the hero image section will remain empty.</p>\n<img src=\"https://content.pstmn.io/54782ec0-7d59-4f86-8b42-574a37a5bee2/aW1hZ2UwMDkucG5n\">\n\n<h2 id=\"authentication\">Authentication</h2>\n<p>Authentication ensures secure access to the data displayed in the embed component. It can be configured to require basic authentication or handle Cross-Origin Resource Sharing (CORS).</p>\n<h3 id=\"basic-auth\">Basic Auth</h3>\n<p>Basic authentication requires specifying credentials to access the data.</p>\n<img src=\"https://content.pstmn.io/e4e8b2f7-8c8c-488d-83dc-1ac10d126ce8/aW1hZ2UwMDcucG5n\">\n\n<p>If there is a basic configuration set on Mozard Suite Manager you have to configure the embed with the following settings, where the authorization username and password is encoded with base64.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">headers: () =&gt; ({  \n  Authorization: \"Basic XXXXXX\", // \"Basic base64_encode(username:password)\"\n}),\n\n</code></pre>\n<h3 id=\"cors\">CORS</h3>\n<p>Configure CORS settings to allow access from specific origins. This is essential for enabling secure cross-origin requests.</p>\n<img src=\"https://content.pstmn.io/022a5f28-14d5-4491-be93-34058039f3fb/aW1hZ2UwMDgucG5n\">\n\n<h2 id=\"types\">Types</h2>\n<h3 id=\"embedoptions-1\">EmbedOptions</h3>\n<p>The <code>EmbedOptions</code> type defines the configuration options for initialising an embed. These options include settings for themes, layouts, callbacks, and overview configurations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>list</code></td>\n<td>OverviewListItem</td>\n<td>OverviewListItem[]</td>\n<td>An <code>OverviewListItem</code> or an array of <code>OverviewListItem</code>.</td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td>string</td>\n<td>(() =&gt; string)</td>\n<td>URL or a function returning a URL for fetching data.</td>\n</tr>\n<tr>\n<td><code>theme</code></td>\n<td>EmbedOptionsTheme</td>\n<td>Theme settings.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td><code>dictionary</code></td>\n<td>EmbedOptionsDictionary</td>\n<td>Dictionary to replace static labels</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>headers</code></td>\n<td>() =&gt; Record</td>\n<td>Optional function returning headers for the request.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>queryParam</code></td>\n<td>string</td>\n<td>Optional query parameter for the request.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>layout</code></td>\n<td>LayoutDisplay</td>\n<td>LayoutDisplay[]</td>\n<td>Optional layout display option(s).</td>\n</tr>\n<tr>\n<td><code>onClickItem</code></td>\n<td>(item: Record) =&gt; void</td>\n<td>Optional callback for when an item is clicked.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onFilter</code></td>\n<td>(filters: FilterType[]) =&gt; void</td>\n<td>Optional callback for when filters are applied.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onMounted</code></td>\n<td>() =&gt; void</td>\n<td>Optional callback for when the embed is mounted.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onAfterInitialize</code></td>\n<td>() =&gt; void</td>\n<td>Optional callback for when the embed is initialized.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onChangeOverview</code></td>\n<td>(overviewId: string) =&gt; void</td>\n<td>Optional callback for when overview is changed.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onClickSearch</code></td>\n<td>(searchValue: string) =&gt; void</td>\n<td>Optional callback for when search is performed.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onChangeLayoutDisplay</code></td>\n<td>(layoutDisplay: LayoutDisplay) =&gt; void</td>\n<td>Optional callback for when layout is changed.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onClickHighlight</code></td>\n<td>(highlight: SuggestionItemClickEventData) =&gt; void</td>\n<td>Optional callback for when highlight clicked.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onReturnToOverview</code></td>\n<td>() =&gt; void</td>\n<td>Optional callback for when return to overview is clicked.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onChangePage</code></td>\n<td>(pageNumber: number) =&gt; void</td>\n<td>Optional callback for when page is changed.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>onToggleMobileFilters</code></td>\n<td>(filtersOpen: boolean) =&gt; void</td>\n<td>Optional callback for when mobile filters are toggled.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>hideEmptyValues</code></td>\n<td>boolean</td>\n<td>If set to true, hide empty values instead of showing '-'.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>sidebarPosition</code></td>\n<td>'left' or 'right'</td>\n<td>If set to right the sidebar will move to the right (default is left).</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>dedicatedSearch</code></td>\n<td>boolean</td>\n<td>If set to false the search bar will move to the sidebar (default is true).</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>hideTitle</code></td>\n<td>boolean</td>\n<td>If set to true the title of the overview will be hidden.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>hideResultsSentence</code></td>\n<td>boolean</td>\n<td>If set to true the search result sentence will be hidden.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>enableSelectedFiltersControls</code></td>\n<td>boolean</td>\n<td>If set to true the selected filters card will be hidden.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>enableFriendlyUrl</code></td>\n<td>boolean</td>\n<td>If set to true the URL params will become readable for users (requires \"use slugs\" in accounts to be true).</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>limitToVisibleColumns</code></td>\n<td>boolean</td>\n<td>Default false. Set to true to only return columns visible in the overview.</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>replaceTileAnchorWithDivision</code></td>\n<td>boolean</td>\n<td>Replace the anchor of a tile with a division (so one cannot right click open in new tab).</td>\n<td>No</td>\n</tr>\n<tr>\n<td><code>isBoundToWrapper</code></td>\n<td>boolean</td>\n<td>If set to true dropdowns will be retained within the bounding box of the embed.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"overviewlistitem\">OverviewListItem</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Unique identifier for the overview.</td>\n</tr>\n<tr>\n<td><code>highlight</code></td>\n<td>OverviewListHighlight</td>\n<td>Optional highlight settings.</td>\n</tr>\n<tr>\n<td><code>layout</code></td>\n<td>OverviewLayout</td>\n<td>Optional change the item layout style.</td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td>OverviewAttributes</td>\n<td>Optional change for image attributes.</td>\n</tr>\n<tr>\n<td><code>heroTransformers</code></td>\n<td>Record</td>\n<td>Optional transformers for the title and/or subtitle.</td>\n</tr>\n<tr>\n<td><code>transformers</code></td>\n<td>Record</td>\n<td>Optional transformers for the item.</td>\n</tr>\n<tr>\n<td><code>hideOverview</code></td>\n<td>boolean</td>\n<td>Optional hide the item from the type selector.</td>\n</tr>\n<tr>\n<td><code>hideSearchBar</code></td>\n<td>boolean</td>\n<td>Optional hide the searchbar from overview.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"overviewlisthighlight\">OverviewListHighlight</h4>\n<p>The <code>OverviewListHighlight</code> object is used to define highlight settings for items in the embed. This allows for linking to other items within the same or different overviews. The highlight is primarily used on the item detail page to display related items.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>column</code></td>\n<td>string</td>\n<td>Id of the [datalist(s)] column available on the overview (See images 1,2)</td>\n</tr>\n<tr>\n<td><code>list</code></td>\n<td>string</td>\n<td>Id of the overview available in the datalist referred by the column</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td>string</td>\n<td>Custom Title label</td>\n</tr>\n</tbody>\n</table>\n</div><p>This feature lets you create connections between overviews using columns with the following types:</p>\n<p><code>Datalijsten (Belongs to Many)</code>: An item can belong to multiple items from a datalist.</p>\n<p><code>Datalijsten (Has Many)</code>: An item has multiple related items from a datalist.</p>\n<p><code>Datalijst (Belongs to)</code>: An item can belong to single item from a datalist.</p>\n<p><code>Datalijst (Has One)</code>: An item has single related item from a datalist.</p>\n<p>The columns allow you to create bidirectional connections between different overviews by linking items from one datalist to another. This means you can select items from another datalist and establish references in both directions.</p>\n<h5 id=\"example-configuration-in-manager---datalijst\">Example: Configuration in Manager - Datalijst</h5>\n<p>Datalist 1:</p>\n<ul>\n<li><p>Column Datalist 1 Naam: Name of the item.</p>\n</li>\n<li><p>Column Datalist 1 Afbeelding: Image File.</p>\n</li>\n<li><p>Column Datalijst 1 Belongs To: Allows selecting items from Datalist 2.</p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/1997bb60-a364-4c38-9f76-9b143a9ce831/U2NyZWVuc2hvdCAyMDI0LTA3LTMwIGF0IDEzLjU4LjMwLnBuZw==\">\n\n<p>Datalist 2:</p>\n<ul>\n<li><p>Column Datalist 2 Naam: Name of the item.</p>\n</li>\n<li><p>Column Datalist 2 Afbeelding: Image File.</p>\n</li>\n<li><p>Column Datalijst 2 Has Many: Indicates items from Datalist 1 that are linked through the Belongs To column.</p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/e9152d1a-f8f1-4eb5-9bf7-0556cf1ff131/U2NyZWVuc2hvdCAyMDI0LTA3LTMwIGF0IDEzLjU4LjQxLnBuZw==\">\n\n<p>Result in manager:</p>\n<p>Datalist 1 items:</p>\n<p>Column <code>Datalist 1 belongs to</code> has been filled with Items from Datalist 2.</p>\n<img src=\"https://content.pstmn.io/4e57bdf0-f6f4-489a-91fa-536702f9f0f3/U2NyZWVuc2hvdCAyMDI0LTA3LTMwIGF0IDEzLjU5LjU4LnBuZw==\">\n\n<p>Datalist 2 items:</p>\n<img src=\"https://content.pstmn.io/f28d9bb7-d346-4835-a05d-d43013ab626b/U2NyZWVuc2hvdCAyMDI0LTA3LTMwIGF0IDE0LjAxLjA1LnBuZw==\">\n\n<p>Column <code>Datalist 2 has many</code> has been filled automatically by the selection from Datalist 1 in the column <code>Belongs to</code>.</p>\n<h5 id=\"configuration-on-the-embed-code\">Configuration on the embed code</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\"> list: [{\n  id: 'overview1',\n  highlight: {\n    column: 'overview2-datalist-2-has-many-column-id',\n    list: 'overview2'\n  }\n }, {\n  id: 'overview2',\n  highlight: {\n    column: 'overview1-datalist-1-belongs-to-column-id',\n    list: 'overview1'\n  }\n }]\n\n</code></pre>\n<p>With the following result:</p>\n<p>Datalist 1 Item 1 - Detail page:</p>\n<img src=\"https://content.pstmn.io/a8245080-9859-4478-9f1c-065e8e1c4eab/U2NyZWVuc2hvdCAyMDI0LTA3LTMwIGF0IDE0LjIwLjI4LnBuZw==\">\n\n<p>Datalist 2 Item 1 - Detail page:</p>\n<img src=\"https://content.pstmn.io/fcbd866d-13d0-4a03-a9e6-2b364d44527d/U2NyZWVuc2hvdCAyMDI0LTA3LTMwIGF0IDE0LjIwLjUwLnBuZw==\">\n\n<h4 id=\"overviewlayout\">OverviewLayout</h4>\n<p>The <code>OverviewLayout</code> object is used to define the layout for the items in the overview.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>list</code></td>\n<td>LayoutListSettings</td>\n<td>Settings for the list Layout</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"layoutlistsettings\">LayoutListSettings</h5>\n<p>The <code>LayoutListSettings</code> object is used to define the layout for the list overview.<br>Here you can change the order and columns used for certain types of the order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>order</code></td>\n<td>LayoutListSettingsOrderType[]</td>\n<td>Can use the types: <code>description</code>, <code>content</code>, <code>thumbnail</code>, <code>custom</code></td>\n</tr>\n<tr>\n<td><code>columns</code></td>\n<td>string[]</td>\n<td>Id's for the displayed columns in the <code>content</code></td>\n</tr>\n<tr>\n<td><code>custom_columns</code></td>\n<td>string[]</td>\n<td>Id's for the retrieved values in <code>custom</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>There are 3 types of options for the order: <code>description</code>, <code>thumbnail</code> &amp; <code>content</code>.</p>\n<ul>\n<li><p><code>description</code>: Shows the set up description from manager with the title at the very start.</p>\n</li>\n<li><p><code>thumbnail</code>: shows the thumbnail that was setup in manager.</p>\n</li>\n<li><p><code>content</code>: makes use of an extra setting called <code>columns</code>. By default the content shows the title at the very start.</p>\n</li>\n</ul>\n<p>For the <code>columns</code> setting there is an example below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">layout: {\n  list: {\n    order: ['content', 'thumbnail'],\n    columns: [\n      '9c4eec74-56e6-4864-9ec5-478d12ad2be2',\n      '9c56faae-ca7f-43fe-9634-d4ce17a9ce81',\n    ]\n  }\n}\n\n</code></pre>\n<p>When loading in the <code>content</code> from the order it makes use of the <code>columns</code>.<br>Here you can configure all the columns that should be shown with an item.<br>It will show the label and the value for each column that you add.</p>\n<ul>\n<li><code>custom</code>: makes use of an extra setting called <code>custom_columns</code>. The data displayed here has very little added styling and can thus be used well in combination with transformers.</li>\n</ul>\n<p>For the <code>custom_columns</code> setting there is an example below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{ \n  transformers: {\n    'Zeldzaamheid': ({ value, additional_values }) =&gt; {\n      return `&lt;img class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; alt=\"${value}\" src=\"${additional_values?.foreign_values?.Image?.thumbnail}\" style=\"width: 144px\" /&gt;`\n    }\n  },\n  layout: {\n    list: {\n      order: [\n        'content',\n        'custom'\n      ],\n      columns: [\n        '9c951404-b151-4325-83f8-ba9bec333ae1',\n        '9c9513e2-6e10-4b9f-95d8-ff05c1a22d4b'\n      ],\n      custom_columns: [\n        '9d928a5e-b147-43a9-9c3e-b9bf71b1f59b'\n      ],\n    },\n  }\n}\n\n</code></pre>\n<p>Below here you can see where the <code>layout</code> can be used within the embed code.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">list: [\n  {\n    id: '9c370410-d671-4d2f-8410-3161486e8fed',\n    layout: {\n      list: {\n        order: ['content', 'thumbnail'],\n        columns: [\n          '9c32f8c1-720e-4cba-9d50-2eb3f1cb282e',\n          '9c32f8d7-d9d2-4c9e-a233-b67e1f726ebb',\n        ]\n      }\n    }\n  }, \n  {\n    id: '9c4eeccf-b543-4701-b42a-94d35b917126',\n    layout: {\n      list: {\n        order: ['description', 'thumbnail'],\n      }\n    }\n  }, \n  {\n    id: '9c38ab43-0340-4ab0-ac44-68a8442e58f1'\n  }\n],\n\n</code></pre>\n<h4 id=\"overview-attributes-1\">Overview Attributes</h4>\n<p>The <code>OverviewAttributes</code> object is used to attach customizable attributes to the image HTML elements within the embed. This allows users to attach metadata to image files and bind those values as attributes in the embed column reference.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>column-id</code></td>\n<td><code>OverviewColumnAttribute</code></td>\n<td>Attributes that will be bound to all images that belongs to the specified <code>column-id</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attribute slug</code></td>\n<td><code>OverviewAttribute</code></td>\n<td>Content that will be bound to the tag of the attribute slug.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>type</code></td>\n<td><code>text</code> or <code>dms</code></td>\n<td>Type of value</td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td>string</td>\n<td>Value that will be bound to the HTML element.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The structure for the Overview Attributes is as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  'column-id': {\n    'attribute-slug': {\n      type: 'text',\n      value: 'static content'\n    },\n    'attribute-slug-2': {\n      type: 'dms',\n      value: 'dynamic content'\n    }\n  }\n}\n\n</code></pre>\n<p>For the implementation of this feature, it requires specific settings on Manager (Accounts) and the Embed.</p>\n<h5 id=\"example-2\">Example:</h5>\n<h5 id=\"configuration-in-manager---datalijst\">Configuration in Manager - Datalijst</h5>\n<p>In the datalist column settings, for the image, file and files types, there is a select input labeled \"File with metadata template,\" allowing the user to select between different templates for the file metadata. Once one is selected, the options that the template contains will be shown in the table below with information on type and key.</p>\n<img src=\"https://content.pstmn.io/0baf62e6-96c3-4816-ab7f-759325fa7892/U2NyZWVuc2hvdCAyMDI0LTA4LTE0IGF0IDExLjI3LjEzLnBuZw==\">\n\n<p>Below this template configuration, there is another table to set up additional custom file metadata. Items can be added by pressing the plus button and then filling in the values for:</p>\n<ul>\n<li><p>Types: selection between 3 different types of values (text, number and date)</p>\n</li>\n<li><p>Key</p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/fedf02c1-6055-463c-bca2-325239027dfa/U2NyZWVuc2hvdCAyMDI0LTA4LTE0IGF0IDExLjI3LjEzIGNvcHkucG5n\">\n\n<p>Once the configuration has been implemented in the column settings, when adding or editing an item and then uploading an image to the recently updated column, an expandable section appears containing the file metadata. This way, all the fields can be filled out with the corresponding data. Besides the file metadata from the template and the additional custom file metadata defined in the column settings, it is possible to add additional metadata for one specific file.</p>\n<img src=\"https://content.pstmn.io/181fceb5-e49c-42fb-902e-5017995d549d/U2NyZWVuc2hvdCAyMDI0LTA4LTE0IGF0IDExLjMxLjU4LnBuZw==\">\n\n<h5 id=\"configuration-in-manager---overzichten\">Configuration in Manager - Overzichten</h5>\n<p>In the overview configuration, there is the possibility to hide the metadata values by column. This way, the keys and values will not be sent along the overview endpoint. The additional metadata for one specific file is always hidden and cannot be shown.</p>\n<img src=\"https://content.pstmn.io/8d0a865d-5d33-48db-90ab-1d833096af0f/U2NyZWVuc2hvdCAyMDI0LTA4LTE0IGF0IDExLjM0LjU4LnBuZw==\">\n\n<h5 id=\"configuration-in-embed\">Configuration in Embed</h5>\n<p>Once the configuration has been set up in the Manager, you can define the attributes for the image elements within the embed. This allows you to attach metadata to image files and bind those values as attributes in the embed column reference.</p>\n<p>Here’s an example of how to configure the attributes in the embed:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">attributes: {\n  'datalijst-1-afbeelding-column-id': {\n    'alt': {\n      type: 'dms',\n      value: 'description'\n    },\n    'date': {\n      type: 'dms',\n      value: 'date'\n    },\n    'crossorigin': {\n      type: 'text',\n      value: 'anonymous'\n    },\n  }\n}\n\n</code></pre>\n<h5 id=\"result\">Result</h5>\n<p>This configuration will result in image elements with the new attributes:</p>\n<img src=\"https://content.pstmn.io/19895214-7d95-4786-b1c2-42899f593e0a/U2NyZWVuc2hvdCAyMDI0LTA4LTE0IGF0IDExLjQzLjI1LnBuZw==\">\n\n<img src=\"https://content.pstmn.io/8e6fba98-9c72-4579-a85c-bdcf1a3e2823/U2NyZWVuc2hvdCAyMDI0LTA4LTE0IGF0IDExLjQ1LjI1LnBuZw==\">\n\n<h2 id=\"overview-transformers-1\">Overview Transformers</h2>\n<p>The <code>OverviewTransformers</code> object is used to modify the displayed value of a column in the overview. This feature is useful for formatting the data in a specific way, such as converting a value to a different unit.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>event</code></td>\n<td>EmbedOptionsTransformerEvent</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"embedoptionstransformerevent\">EmbedOptionsTransformerEvent</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>value</code></td>\n<td>The value of the column</td>\n</tr>\n<tr>\n<td><code>additional_values</code></td>\n<td>Extra values from the column that can sometimes be passed from backend. (for example extra values from another datalist)</td>\n</tr>\n<tr>\n<td><code>item</code></td>\n<td>The item that is being displayed</td>\n</tr>\n<tr>\n<td><code>group</code></td>\n<td>The group that the column is in</td>\n</tr>\n<tr>\n<td><code>groupItem</code></td>\n<td>The item that is being displayed in the group</td>\n</tr>\n<tr>\n<td><code>context</code></td>\n<td>The page context (list, grid, table, detail, suggestion)</td>\n</tr>\n</tbody>\n</table>\n</div><p>The structure for the transformer is as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  transformers: {\n    'Voornaam': ({ value }) =&gt; value,\n    'Naam': (arguments) =&gt; {\n      console.log('Argumenten', arguments);\n      return arguments.value;\n    },\n    'Title': ({ value, context }) =&gt; {\n      switch (context) {\n        case 'list': {\n          const newValue = `This is a tranformed title for list view: ${item['Title']}`\n          return newValue;\n        }\n        case 'grid': {\n          const newValue = `This is a tranformed title for grid: ${item['Title']}`\n          return newValue;\n        }\n        case 'table': {\n          const newValue = `This is a tranformed title for table: ${item['Title']}`\n          return newValue;\n        }\n        case 'detail': {\n          const newValue = `This is a tranformed title for the detail page: ${item['Title']}`\n          return newValue;\n        }\n        case 'suggestion': {\n          const newValue = `This is a tranformed title for the suggestions on a detail page: ${item['Title']}`\n          return newValue;\n        }\n        default: {\n          return value;\n        }\n      }\n    },\n  },\n}\n\n</code></pre>\n<h3 id=\"embedoptionstheme\">EmbedOptionsTheme</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>detailHeroImageObjectFit</code></td>\n<td>EmbedOptionsThemeImageObjectFit</td>\n<td>Specifies how the hero image should fit.</td>\n</tr>\n<tr>\n<td><code>detailTableImageObjectFit</code></td>\n<td>EmbedOptionsThemeImageObjectFit</td>\n<td>Specifies how the table image should fit.</td>\n</tr>\n<tr>\n<td><code>tableImageObjectFit</code></td>\n<td>EmbedOptionsThemeImageObjectFit</td>\n<td>Specifies how the image in a table should fit.</td>\n</tr>\n<tr>\n<td><code>listImageObjectFit</code></td>\n<td>EmbedOptionsThemeImageObjectFit</td>\n<td>Specifies how the image in a list should fit.</td>\n</tr>\n<tr>\n<td><code>listImageHeight</code></td>\n<td>string</td>\n<td>Specifies the height of the image in a list view.</td>\n</tr>\n<tr>\n<td><code>listImageWidth</code></td>\n<td>string</td>\n<td>Specifies the width of the image in a list view.</td>\n</tr>\n<tr>\n<td><code>gridImageObjectFit</code></td>\n<td>EmbedOptionsThemeImageObjectFit</td>\n<td>Specifies how the image in a grid should fit.</td>\n</tr>\n<tr>\n<td><code>background</code></td>\n<td>string</td>\n<td>Background color of the embed.</td>\n</tr>\n<tr>\n<td><code>foreground</code></td>\n<td>string</td>\n<td>Foreground color (e.g., text color) of the embed.</td>\n</tr>\n<tr>\n<td><code>tint</code></td>\n<td>string</td>\n<td>Optional tint color.</td>\n</tr>\n<tr>\n<td><code>muted</code></td>\n<td>string</td>\n<td>Optional muted color.</td>\n</tr>\n<tr>\n<td><code>mutedForeground</code></td>\n<td>string</td>\n<td>Optional muted foreground color.</td>\n</tr>\n<tr>\n<td><code>popover</code></td>\n<td>string</td>\n<td>Optional popover color.</td>\n</tr>\n<tr>\n<td><code>popoverForeground</code></td>\n<td>string</td>\n<td>Optional popover foreground color.</td>\n</tr>\n<tr>\n<td><code>card</code></td>\n<td>string</td>\n<td>Card background color.</td>\n</tr>\n<tr>\n<td><code>cardForeground</code></td>\n<td>string</td>\n<td>Card foreground color.</td>\n</tr>\n<tr>\n<td><code>border</code></td>\n<td>string</td>\n<td>Border color.</td>\n</tr>\n<tr>\n<td><code>input</code></td>\n<td>string</td>\n<td>Input background color.</td>\n</tr>\n<tr>\n<td><code>primary</code></td>\n<td>string</td>\n<td>Primary color (e.g., for buttons or highlighted text).</td>\n</tr>\n<tr>\n<td><code>primaryForeground</code></td>\n<td>string</td>\n<td>Primary foreground color.</td>\n</tr>\n<tr>\n<td><code>secondary</code></td>\n<td>string</td>\n<td>Secondary color.</td>\n</tr>\n<tr>\n<td><code>secondaryForeground</code></td>\n<td>string</td>\n<td>Secondary foreground color.</td>\n</tr>\n<tr>\n<td><code>accent</code></td>\n<td>string</td>\n<td>Accent color.</td>\n</tr>\n<tr>\n<td><code>accentForeground</code></td>\n<td>string</td>\n<td>Accent foreground color.</td>\n</tr>\n<tr>\n<td><code>destructive</code></td>\n<td>string</td>\n<td>Destructive color (e.g., for error states).</td>\n</tr>\n<tr>\n<td><code>destructiveForeground</code></td>\n<td>string</td>\n<td>Destructive foreground color.</td>\n</tr>\n<tr>\n<td><code>ring</code></td>\n<td>string</td>\n<td>Focus ring color for buttons.</td>\n</tr>\n<tr>\n<td><code>link</code></td>\n<td>string</td>\n<td>Link color.</td>\n</tr>\n<tr>\n<td><code>radius</code></td>\n<td>string</td>\n<td>Border radius.</td>\n</tr>\n<tr>\n<td><code>font</code></td>\n<td>string</td>\n<td>Font family.</td>\n</tr>\n<tr>\n<td><code>overviewTitleForeground</code></td>\n<td>string</td>\n<td>Title color</td>\n</tr>\n<tr>\n<td><code>returnButton</code></td>\n<td>string</td>\n<td>Return button color</td>\n</tr>\n<tr>\n<td><code>returnButtonForeground</code></td>\n<td>string</td>\n<td>Return button text color</td>\n</tr>\n<tr>\n<td><code>returnButtonHover</code></td>\n<td>string</td>\n<td>Return button hover color</td>\n</tr>\n<tr>\n<td><code>returnButtonForegroundHover</code></td>\n<td>string</td>\n<td>Return button hover text color</td>\n</tr>\n<tr>\n<td><code>highlight</code></td>\n<td>string</td>\n<td>Highlight background color</td>\n</tr>\n<tr>\n<td><code>detailValueExpandableWhenMoreThanPx</code></td>\n<td>number</td>\n<td>Default 200. Set to change the breakpoint when a detail field value should become expandable.</td>\n</tr>\n<tr>\n<td><code>detailValueHasAndBelongsAsLinks</code></td>\n<td>boolean</td>\n<td>Default false. Set to true to show <code>Belongs to</code> and <code>Has</code> values in detail pages as links.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"embedoptionsdictionary\">EmbedOptionsDictionary</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>typesTitle</code></td>\n<td>string</td>\n<td><code>Type</code></td>\n</tr>\n<tr>\n<td><code>filterTitle</code></td>\n<td>string</td>\n<td><code>Filter</code></td>\n</tr>\n<tr>\n<td><code>closeButton</code></td>\n<td>string</td>\n<td><code>Sluiten</code></td>\n</tr>\n<tr>\n<td><code>totalResults</code></td>\n<td>string</td>\n<td><code>gevonden</code></td>\n</tr>\n<tr>\n<td><code>totalResultsText</code></td>\n<td>string</td>\n<td><code>resultaten</code></td>\n</tr>\n<tr>\n<td><code>totalResultText</code></td>\n<td>string</td>\n<td><code>resultaat</code></td>\n</tr>\n<tr>\n<td><code>searchPlaceholder</code></td>\n<td>string</td>\n<td><code>Zoeken</code></td>\n</tr>\n<tr>\n<td><code>searchButton</code></td>\n<td>string</td>\n<td><code>Zoeken</code></td>\n</tr>\n<tr>\n<td><code>backButton</code></td>\n<td>string</td>\n<td><code>Terug</code></td>\n</tr>\n<tr>\n<td><code>filtersButton</code></td>\n<td>string</td>\n<td><code>Filters</code></td>\n</tr>\n<tr>\n<td><code>layoutList</code></td>\n<td>string</td>\n<td><code>Lijst</code></td>\n</tr>\n<tr>\n<td><code>layoutGrid</code></td>\n<td>string</td>\n<td><code>Grid</code></td>\n</tr>\n<tr>\n<td><code>layoutTable</code></td>\n<td>string</td>\n<td><code>Tabel</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorsTitle</code></td>\n<td>string</td>\n<td><code>Operators</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorLowerThan</code></td>\n<td>string</td>\n<td><code>Kleiner dan</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorLowerThanOrEquals</code></td>\n<td>string</td>\n<td><code>Kleiner dan of gelijk aan</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorEquals</code></td>\n<td>string</td>\n<td><code>Gelijk aan</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorGreaterThanOrEqual</code></td>\n<td>string</td>\n<td><code>Groter dan of gelijk aan</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorGreater</code></td>\n<td>string</td>\n<td><code>Groter dan</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorBetween</code></td>\n<td>string</td>\n<td><code>Tussen</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorStartsWith</code></td>\n<td>string</td>\n<td><code>Begint met</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorEndsWith</code></td>\n<td>string</td>\n<td><code>Eindigt met</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorContains</code></td>\n<td>string</td>\n<td><code>Bevat</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorEmpty</code></td>\n<td>string</td>\n<td><code>Leeg</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorContainsAll</code></td>\n<td>string</td>\n<td><code>Bevat alle</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorContainsAny</code></td>\n<td>string</td>\n<td><code>Bevat één van</code></td>\n</tr>\n<tr>\n<td><code>filterOperatorContainsNon</code></td>\n<td>string</td>\n<td><code>Bevat niet</code></td>\n</tr>\n<tr>\n<td><code>filterDateOperatorsTitle</code></td>\n<td>string</td>\n<td><code>Perspectief</code></td>\n</tr>\n<tr>\n<td><code>filterDateOperatorAbsolute</code></td>\n<td>string</td>\n<td><code>Absoluut</code></td>\n</tr>\n<tr>\n<td><code>filterDateOperatorRelative</code></td>\n<td>string</td>\n<td><code>Relatief</code></td>\n</tr>\n<tr>\n<td><code>filterDateValueYesterday</code></td>\n<td>string</td>\n<td><code>Gisteren</code></td>\n</tr>\n<tr>\n<td><code>filterDateValueToday</code></td>\n<td>string</td>\n<td><code>Vandaag</code></td>\n</tr>\n<tr>\n<td><code>filterDateValueTomorrow</code></td>\n<td>string</td>\n<td><code>Morgen</code></td>\n</tr>\n<tr>\n<td><code>cannotReachDataList</code></td>\n<td>string</td>\n<td><code>Kan datalijst niet bereiken</code></td>\n</tr>\n<tr>\n<td><code>cannotReachDatalistItem</code></td>\n<td>string</td>\n<td><code>Kan datalijst item niet bereiken</code></td>\n</tr>\n<tr>\n<td><code>chooseADate</code></td>\n<td>string</td>\n<td><code>Kies een datum</code></td>\n</tr>\n<tr>\n<td><code>chooseARelativeOption</code></td>\n<td>string</td>\n<td><code>Kies een relatieve optie</code></td>\n</tr>\n<tr>\n<td><code>clearAllFilters</code></td>\n<td>string</td>\n<td><code>Wis alle filters</code></td>\n</tr>\n<tr>\n<td><code>insufficientPermissions</code></td>\n<td>string</td>\n<td><code>Onvoldoende rechten</code></td>\n</tr>\n<tr>\n<td><code>more</code></td>\n<td>string</td>\n<td><code>Meer</code></td>\n</tr>\n<tr>\n<td><code>noItems</code></td>\n<td>string</td>\n<td><code>Geen items</code></td>\n</tr>\n<tr>\n<td><code>untitled</code></td>\n<td>string</td>\n<td><code>Naamloos</code></td>\n</tr>\n<tr>\n<td><code>weCouldNotFindTheDataListThatYouAreSearchingFor</code></td>\n<td>string</td>\n<td><code>We konden het datalijst waarnaar u op zoek bent niet vinden!</code></td>\n</tr>\n<tr>\n<td><code>weCouldNotFindTheItemWhereYouAreSearchingFor</code></td>\n<td>string</td>\n<td><code>We konden het item waarnaar u op zoek bent niet vinden!</code></td>\n</tr>\n<tr>\n<td><code>youAreNotAuthorizedToShowThisDataList</code></td>\n<td>string</td>\n<td><code>U bent niet bevoegd om de datalijst te zien</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"embedoptionsthemeimageobjectfit\">EmbedOptionsThemeImageObjectFit</h3>\n<p>Values according to tailwindcss class naming.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>object-contain</code></td>\n<td>The image is scaled to maintain its aspect ratio while fitting within the element’s content box.</td>\n</tr>\n<tr>\n<td><code>object-cover</code></td>\n<td>The image is sized to maintain its aspect ratio while filling the element’s content box.</td>\n</tr>\n<tr>\n<td><code>object-fill</code></td>\n<td>The image is sized to fill the element’s content box.</td>\n</tr>\n<tr>\n<td><code>object-none</code></td>\n<td>The image is not resized.</td>\n</tr>\n<tr>\n<td><code>object-scale-down</code></td>\n<td>The image is scaled down to the smallest possible size while preserving its aspect ratio.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"layoutdisplay\">LayoutDisplay</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>table</code></td>\n<td>Display items in a table format.</td>\n</tr>\n<tr>\n<td><code>grid</code></td>\n<td>Display items in a grid format.</td>\n</tr>\n<tr>\n<td><code>list</code></td>\n<td>Display items in a list format.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"filtertype\">FilterType</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>original</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>group</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>placeholder</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>operators</code></td>\n<td>string[]</td>\n</tr>\n<tr>\n<td><code>operator</code></td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>multiple</code></td>\n<td>boolean</td>\n</tr>\n<tr>\n<td><code>options</code></td>\n<td>Record</td>\n</tr>\n<tr>\n<td><code>visible</code></td>\n<td>boolean</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>{ <code>label</code>: string, <code>value</code>: string }</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>'select'</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"detailed-explanations-and-examples\">Detailed Explanations and Examples</h2>\n<ol>\n<li><p><strong>Initialization:</strong></p>\n<ol>\n<li><p><strong>Example:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          window.Atabase.datalist('#embed', { ... })\n\n</code></pre>\n</li>\n<li><p><strong>Description:</strong> Initialises the embed within the HTML element identified by <code>#embed</code> using the provided options.</p>\n</li>\n</ol>\n</li>\n<li><p><strong>Data and Layout:</strong></p>\n<ol>\n<li><p><strong>list:</strong></p>\n<ol>\n<li><p>Can accept both a single <code>OverviewListItem</code> and an array of <code>OverviewListItem</code>.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          list: [\n                                              { id: 'overview1', highlight: { column: 'column-from-overview1-with-values-from-overview2', list: 'overview2' } },\n                                              { id: 'overview2' }\n                                          ]\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>layout:</strong></p>\n<ol>\n<li><p>Supports 'table', 'grid', and 'list'.</p>\n</li>\n<li><p>Can combine multiple layouts.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          layout: ['list', 'grid']`\n\n</code></pre>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n<li><p><strong>URLs and Requests:</strong></p>\n<ol>\n<li><p><strong>url:</strong></p>\n<ol>\n<li><p>Can be a string or a function returning a string.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          url: 'https://example.com/api'\n                                          // or\n                                          url: () =&gt; 'https://example.com/api'\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>headers:</strong></p>\n<ol>\n<li><p>Function returning request headers.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          headers: () =&gt; ({ 'Authorization': 'Bearer token' })\n\n</code></pre>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n<li><p><strong>Interactivity:</strong></p>\n<ol>\n<li><p><strong>onClickItem:</strong></p>\n<ol>\n<li><p>Triggered when an item is clicked.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onClickItem: (item) =&gt; { console.log('clicked on item', item) }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onMounted:</strong></p>\n<ol>\n<li><p>Triggered when the component is mounted.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onMounted: () =&gt; { console.log('component mounted') }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onAfterInitialize:</strong></p>\n<ol>\n<li><p>Triggered when the component is done initializing and loading the data.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                               onAfterInitialize: () =&gt; { console.log('component initialized') }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onFilter:</strong></p>\n<ol>\n<li><p>Triggered when filters are applied.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                            onFilter: (filters) =&gt; { console.log('clicked on filters:', filters) }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onChangeOverview:</strong></p>\n<ol>\n<li><p>Triggered when the overview is changed.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onChangeOverview: (overviewId) =&gt; { console.log('changed overview:', overviewId) }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onClickSearch:</strong></p>\n<ol>\n<li><p>Triggered when a search is performed.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onClickSearch: (searchValue) =&gt; { console.log('searching for:', searchValue) }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onChangeLayoutDisplay:</strong></p>\n<ol>\n<li><p>Triggered when the layout display is changed.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onChangeLayoutDisplay: (layoutDisplay) =&gt; { console.log('changed layout to:', layoutDisplay) }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onClickHighlight:</strong></p>\n<ol>\n<li><p>Triggered when a highlight is clicked.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onClickHighlight: (highlight) =&gt; { console.log('clicked on highlight:', highlight) }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onReturnToOverview:</strong></p>\n<ol>\n<li><p>Triggered when returning to the overview.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onReturnToOverview: () =&gt; { console.log('clicked on return to overview') }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onChangePage:</strong></p>\n<ol>\n<li><p>Triggered when the page number is changed.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onChangePage: (pageNumber) =&gt; { console.log('changed page to:', pageNumber) }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onToggleMobileFilters:</strong></p>\n<ol>\n<li><p>Triggered when mobile filters are toggled.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                         onToggleMobileFilters: (filtersOpen) =&gt; { console.log('mobile filters open:', filtersOpen) }\n\n</code></pre>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n<li><p><strong>Customization:</strong></p>\n<ol>\n<li><p><strong>theme:</strong></p>\n<ol>\n<li><p>Customize the appearance using various properties</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          theme: {\n                                             background: '#ffffff',\n                                             foreground: '#000000',\n                                             detailHeroImageObjectFit: 'object-cover'\n                                          }\n\n</code></pre>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n<li><p><strong>Lifecycle Events:</strong></p>\n<ol>\n<li><p><strong>onMounted:</strong></p>\n<ol>\n<li><p>Called when the embed is mounted.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                                          onMounted: () =&gt; { console.log('mounted') }\n\n</code></pre>\n</li>\n</ol>\n</li>\n<li><p><strong>onAfterInitialize:</strong></p>\n<ol>\n<li><p>Triggered when the component is done initializing and loading the data.</p>\n</li>\n<li><p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">                               onAfterInitialize: () =&gt; { console.log('initialized') }\n\n</code></pre>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n</ol>\n<h2 id=\"frequently-used-transformers\">Frequently Used Transformers</h2>\n<h3 id=\"customising-the-name-of-a-file\">Customising the name of a file</h3>\n<ol>\n<li>Configuration in Manager:</li>\n</ol>\n<ul>\n<li>A. Open the datalist. Go to <code>Manage columns</code>. Activate the file column. In the section for file metadata click on the add icon. Choose for the type <code>Text</code>. Name it eg. <code>Title</code>.</li>\n</ul>\n<img src=\"https://content.pstmn.io/a3b64299-3f80-4cd6-b0a8-1f2587bbf597/aW1hZ2UtMjAyNTEyMDMtMTI1MzQ3LnBuZw==\" width=\"556\" height=\"452\">\n\n<ul>\n<li>B. Open the edit item dialog in the datalist (by clicking on the pencil icon on the end of a row). Open the meta data for the file (by clicking on the arrow next to the uploaded file). Next to the key eg. <code>Title</code> you can now add a title eg. <code>My file</code>.</li>\n</ul>\n<img src=\"https://content.pstmn.io/4f872477-541a-4ead-85be-dc4014f28309/aW1hZ2UtMjAyNTEyMDMtMTI1MjE0LnBuZw==\" width=\"552\" height=\"406\">\n\n<ol>\n<li><p>Configuration in Embed:</p>\n<ul>\n<li><p>Transformer:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">    {\n      transformers: {\n        Bestand: ({ value }) =&gt; {\n          return formatNewFileUrl(value, value?.custom_properties?['Title'])\n        }\n      }\n    }\n\n</code></pre>\n</li>\n<li><p>Javascript function:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">    function formatNewFileUrl(field, titleField) {\n      return field &amp;&amp; titleField\n        ? {\n            ...field,\n            name: titleField\n          }\n        : field\n    }\n\n</code></pre>\n</li>\n</ul>\n</li>\n</ol>\n<p>This documentation provides a comprehensive guide to understanding and utilizing the <code>EmbedOptions</code> for initializing and customizing your embed effectively.</p>\n<hr>\n<h1 id=\"3-webhooks\">3. Webhooks</h1>\n<p>Users can create outgoing webhooks in automations as an action. The goal of this is to notify another party that a specific trigger has happened for a specific matter. We will only send enough data so that they know where what happened. The other party is responsible for then using the Mozard Suite (v1) API to fetch any additional information they may need.</p>\n<h2 id=\"automation-action\">Automation action</h2>\n<p>To create such an outgoing webshook, simply add a new action of the type \"Uitgaande webhook versturen\" to an existing or new automation. For this action to work properly, an url is required. Optionally, up to five headers and up to five parameters can be added to the outgoing webhook request.</p>\n<img src=\"https://content.pstmn.io/99477584-f549-4d68-9c54-3e1d5c339528/aW1hZ2UucG5n\" alt=\"Outgoing%20webhook%20action%20dialog\" width=\"604\" height=\"308\">\n\n<h2 id=\"technical-details\">Technical details</h2>\n<p>Whenever an automation is triggered, if the logic conditions are valid, it will execute all listed actions. For the outgoing webhook, what happens is that a POST request is done to the listed URL in combination with the parameters. The request also contains the listed headers. The request body is a json body containing some general information about the automation and the matter for which it triggered. The request has a timeout time of 10 seconds.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"trigger\": \"matter_created\",\n    \"meta\": {\n        \"attempt\": 1,\n        \"automation\": \"91b5e4ff-04cd-4981-a02b-096dc251028a\",\n        \"datetime\": \"2025-02-04T11:57:53.499314Z\"\n    },\n    \"matter\": {\n        \"id\": \"f23d6251-44e6-4f9c-9a13-f0252e2716dc\",\n        \"name\": \"2025000001\"\n    }\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Value</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>trigger</td>\n<td>string</td>\n<td>Automation trigger type, see table below.</td>\n</tr>\n<tr>\n<td>meta.attempt</td>\n<td>int</td>\n<td>Attempt number, from 1 to 6.</td>\n</tr>\n<tr>\n<td>meta.automation</td>\n<td>string</td>\n<td>Id of automation that was triggered.</td>\n</tr>\n<tr>\n<td>meta.datetime</td>\n<td>string</td>\n<td>When the automation was originally triggered.</td>\n</tr>\n<tr>\n<td>matter.id</td>\n<td>string</td>\n<td>Id of matter that automation was triggered for.</td>\n</tr>\n<tr>\n<td>matter.name</td>\n<td>string</td>\n<td>Name of matter that automation was triggered for.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"automation-triggers\">Automation triggers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Trigger</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>Bericht geplaatst</td>\n</tr>\n<tr>\n<td>party_added</td>\n<td>Betrokkene toegevoegd</td>\n</tr>\n<tr>\n<td>party_removed</td>\n<td>Betrokkene verwijderd</td>\n</tr>\n<tr>\n<td>media</td>\n<td>Document toegevoegd</td>\n</tr>\n<tr>\n<td>media_deleted</td>\n<td>Document verwijderd</td>\n</tr>\n<tr>\n<td>time_offset</td>\n<td>Moment</td>\n</tr>\n<tr>\n<td>matter_created</td>\n<td>Nieuwe zaak</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Status wijzigt</td>\n</tr>\n<tr>\n<td>task_completed</td>\n<td>Taak afgerond</td>\n</tr>\n<tr>\n<td>task_uncompleted</td>\n<td>Taak onafgerond</td>\n</tr>\n<tr>\n<td>task_added</td>\n<td>Taak toegevoegd</td>\n</tr>\n<tr>\n<td>task_removed</td>\n<td>Taak verwijderd</td>\n</tr>\n<tr>\n<td>transaction</td>\n<td>Transactie wijzigt</td>\n</tr>\n<tr>\n<td>field</td>\n<td>Veld wijzigt</td>\n</tr>\n<tr>\n<td>matter_status_deadline</td>\n<td>Volgende mijlpaal wijzigt</td>\n</tr>\n</tbody>\n</table>\n</div><p>After outgoing webhook is sent, and receives a response, it will add a record of this in the new webhooks page (section 9.1.3.). If the response was not successful, with a status code not in within 2XX, it will schedule a retry attempt. It will retry up to 5 additional times, waiting exponentially longer before trying again.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attempt</strong></th>\n<th><strong>Next Resend Interval (seconds)</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>5</td>\n</tr>\n<tr>\n<td>2</td>\n<td>60</td>\n</tr>\n<tr>\n<td>3</td>\n<td>300</td>\n</tr>\n<tr>\n<td>4</td>\n<td>900</td>\n</tr>\n<tr>\n<td>5</td>\n<td>3600</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"webhooks-page\">Webhooks page</h2>\n<p>After an outgoing webhook has been triggered and sent, the results are visible on a new page in beheer. The \"Webhooks\" page is listed in the \"Algemeen\" section. On this page, an overview is given for all sent webhooks for all matters of all process types. By default the latest sent webhook is listed first.</p>\n<hr>\n<h1 id=\"4-api-usage\">4. API usage</h1>\n<p>We offer an JSON restful API for integrations and automations.</p>\n<h2 id=\"authentication-1\">Authentication</h2>\n<p>There are two ways to authenticate to the API. In <em>Beheer</em> you create an application user and assign roles to it. In the <em>Authentication</em> screen you can create tokens to authenticate.</p>\n<h3 id=\"oauth2\">oAuth2</h3>\n<p>The advised way of authentication is using oAuth2. You create a <em>secret</em> for the application user with a specific date range it is valid.</p>\n<p>On all API requests you need to add the following header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>   Authorization: Bearer &lt;secret&gt;\n\n</code></pre><h3 id=\"api-key\">API key</h3>\n<p>You create an <em>API-key</em> for the application user.</p>\n<p>On all API requests you need to add the following header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>   x-api-key: &lt;API-key&gt;\n\n</code></pre><h2 id=\"rate-limits\">Rate Limits</h2>\n<p>API access rate limits are applied at a per-user basis in unit time. Access to the API using a key is limited to <strong>500 requests per minute</strong>.</p>\n<p>In addition, every API response is accompanied by the following set of headers to identify the status of your consumption.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>X-RateLimit-Limit</td>\n<td>The maximum number of requests that the consumer is permitted to make per minute.</td>\n</tr>\n<tr>\n<td>X-RateLimit-Remaining</td>\n<td>The number of requests remaining in the current rate limit window.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Once you hit the rate limit, you will receive a response similar to the following JSON, with a status code of <code>429 Too Many Requests</code>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"message\": \"Too Many Attempts.\"\n}\n\n</code></pre>\n<h2 id=\"http-status-codes\">HTTP Status Codes</h2>\n<p>The REST API returns an HTTP status and code each time a request is made. The following HTTP status codes are used by our API. Additional codes might be added in the future and if you encounter a code not in this list please consult the HTTP specification for a definition.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 OK</td>\n<td>The request was successful.</td>\n</tr>\n<tr>\n<td>201 Created</td>\n<td>The resource was created successfully.</td>\n</tr>\n<tr>\n<td>401 Unauthorized</td>\n<td>API Key is invalid.</td>\n</tr>\n<tr>\n<td>403 Forbidden</td>\n<td>Insufficient permissions for the resource.</td>\n</tr>\n<tr>\n<td>404 Not Found</td>\n<td>The path is invalid or no resource exists with the given ID.</td>\n</tr>\n<tr>\n<td>405 Method Not Allowed</td>\n<td>The path is valid but not for this method.</td>\n</tr>\n<tr>\n<td>422 Unprocessable Entity</td>\n<td>The request has missing or invalid parameters.</td>\n</tr>\n<tr>\n<td>429 Too Many Requests</td>\n<td>The user or path has too many outstanding requests.</td>\n</tr>\n<tr>\n<td>500 Internal Server Error</td>\n<td>An unexpected internal error occurred and the request was not processed.</td>\n</tr>\n<tr>\n<td>503 Service Unavailable</td>\n<td>The service is down for maintenance. It will be up again soon.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"filters-1\">Filters</h2>\n<p>Filters provide the ability to query, sort and paginate an endpoint for its information. Let's take a look at the query string that would be required to filter for the criteria in the previous sentence:</p>\n<p><code>/v1/messages?filters[from]=2017-05-01&amp;filters[status]=send&amp;limit=10&amp;sort=!created_at</code>.</p>\n<p>Notice how <code>limit</code> and <code>sort</code> do not belong to <code>filters[]</code>. Parameters passed to <code>filters[]</code> are unique to that endpoint. The available filters will be listed per endpoint. We also have a few generic filters that are available all the time. These include: <code>limit</code>, <code>page</code> &amp; <code>sort</code>.</p>\n<h3 id=\"generic-filters\">Generic Filters</h3>\n<p>Generic filters are applicable to all filterable endpoints. They provide standard functionality such as sorting the result data set and paginating through it.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Filter</th>\n<th>Example Usage</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>limit</td>\n<td>?limit=10</td>\n<td>Defines the amount of records you want to return. There is a hard limit of 100.</td>\n</tr>\n<tr>\n<td>page</td>\n<td>?page=1</td>\n<td>Skips the amount of records defined in limit multiplied by the page number. This is used for paginating through the results.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>?sort=!created_at</td>\n<td>The sortable value is dependent on what is available per endpoint. Use <em>!</em> before the value to reverse the order. Consult the endpoint for which values can be sorted.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"unique-filters\">Unique Filters</h3>\n<p>Unique filters are only applicable to a specific endpoint. They are documented under each endpoint.</p>\n<h3 id=\"chaining-filters\">Chaining Filters</h3>\n<p>Filters can be chained by attaching as many as you want (e.g. <code>?filters[status]=active&amp;filters[age]=25</code>). Parameters will be automatically casted.</p>\n<h2 id=\"includes\">Includes</h2>\n<p>Some endpoints have includeables. Includeables are defined by passing the query parameter with (e.g. <code>?with[]=recipients</code>). The include will return an extra data that is not normally returned. Only add includes when the data is needed. Including any unnecessary date will only slow down the response, creating worse perceived performance for the end user. Available includes will be listed per endpoint.</p>\n<h2 id=\"ipv4-allowlist\">IPv4 allowlist</h2>\n<p>In case you need to allowlist our IPs on your system, we use the following IP addresses:</p>\n<ul>\n<li><p>52.58.11.58</p>\n</li>\n<li><p>18.193.162.153</p>\n</li>\n<li><p>52.223.59.226</p>\n</li>\n<li><p>3.33.150.104</p>\n</li>\n</ul>\n<h1 id=\"5-formula-functions\">5. Formula functions</h1>\n<p>All available formula functions can be found here. The formula field is available in Cases and Forms.</p>\n<h3 id=\"logical-functions\">Logical Functions</h3>\n<ul>\n<li><p><strong>IF(condition, valueIfTrue, valueIfFalse)</strong> - Conditional logic</p>\n</li>\n<li><p><strong>AND(...)</strong> - Returns true if all conditions are true</p>\n</li>\n<li><p><strong>OR(...)</strong> - Returns true if any condition is true</p>\n</li>\n<li><p><strong>NOT(condition)</strong> - Inverts a boolean value</p>\n</li>\n</ul>\n<h3 id=\"comparison-functions\">Comparison Functions</h3>\n<ul>\n<li><p><strong>EQ(a, b)</strong> - Equal to (a = b)</p>\n</li>\n<li><p><strong>NE(a, b)</strong> - Not equal to (a ≠ b)</p>\n</li>\n<li><p><strong>GT(a, b)</strong> - Greater than (a &gt; b)</p>\n</li>\n<li><p><strong>LT(a, b)</strong> - Less than (a &lt; b)</p>\n</li>\n<li><p><strong>GTE(a, b)</strong> - Greater than or equal (a ≥ b)</p>\n</li>\n<li><p><strong>LTE(a, b)</strong> - Less than or equal (a ≤ b)</p>\n</li>\n</ul>\n<h3 id=\"numeric-functions\">Numeric Functions</h3>\n<ul>\n<li><p><strong>SUM(...)</strong> - Sum of all arguments</p>\n</li>\n<li><p><strong>AVG(...)</strong> - Average of all arguments</p>\n</li>\n<li><p><strong>MIN(...)</strong> - Minimum value</p>\n</li>\n<li><p><strong>MAX(...)</strong> - Maximum value</p>\n</li>\n<li><p><strong>ROUND(num, digits)</strong> - Round to specified decimals</p>\n</li>\n<li><p><strong>ROUNDUP(num, digits)</strong> - Round up</p>\n</li>\n<li><p><strong>ROUNDDOWN(num, digits)</strong> - Round down</p>\n</li>\n<li><p><strong>SQRT(num)</strong> - Square root</p>\n</li>\n<li><p><strong>POWER(base, exp)</strong> - Exponentiation</p>\n</li>\n<li><p><strong>ABS(num)</strong> - Absolute value</p>\n</li>\n<li><p><strong>MOD(num, divisor)</strong> - Modulo operation</p>\n</li>\n<li><p><strong>MULTIPLY(a, b)</strong> - Multiplication</p>\n</li>\n<li><p><strong>DIVIDE(a, b)</strong> - Division</p>\n</li>\n<li><p><strong>MINUS(a, b)</strong> - Subtraction</p>\n</li>\n<li><p><strong>CEILING(num)</strong> - Round up to nearest integer</p>\n</li>\n<li><p><strong>FLOOR(num)</strong> - Round down to nearest integer</p>\n</li>\n<li><p><strong>TRUNC(num)</strong> - Remove decimal part</p>\n</li>\n<li><p><strong>SIGN(num)</strong> - Returns -1, 0, or 1</p>\n</li>\n<li><p><strong>LOG(num, [base])</strong> - Logarithm (default base 10)</p>\n</li>\n<li><p><strong>LN(num)</strong> - Natural logarithm</p>\n</li>\n<li><p><strong>EXP(num)</strong> - e raised to power</p>\n</li>\n<li><p><strong>PI()</strong> - Value of π (3.14159...)</p>\n</li>\n<li><p><strong>E()</strong> - Value of e (2.71828...)</p>\n</li>\n<li><p><strong>FACTORIAL(n)</strong> - n! (factorial)</p>\n</li>\n<li><p><strong>GCD(a, b)</strong> - Greatest common divisor</p>\n</li>\n<li><p><strong>LCM(a, b)</strong> - Least common multiple</p>\n</li>\n<li><p><strong>RAND()</strong> - Random number 0-1</p>\n</li>\n<li><p><strong>RANDBETWEEN(min, max)</strong> - Random integer in range</p>\n</li>\n</ul>\n<h3 id=\"text-functions\">Text Functions</h3>\n<ul>\n<li><p><strong>CONCATENATE(...)</strong> - Join strings</p>\n</li>\n<li><p><strong>UPPER(text)</strong> - Convert to uppercase</p>\n</li>\n<li><p><strong>LOWER(text)</strong> - Convert to lowercase</p>\n</li>\n<li><p><strong>TRIM(text)</strong> - Remove extra whitespace</p>\n</li>\n<li><p><strong>REPLACE(text, old, new)</strong> - Replace text</p>\n</li>\n<li><p><strong>DATEFORMAT(date, format)</strong> - Format date with PHP-style format codes (locale-aware)</p>\n</li>\n<li><p><strong>LEN(text)</strong> - String length</p>\n</li>\n<li><p><strong>LEFT(text, n)</strong> - First n characters</p>\n</li>\n<li><p><strong>RIGHT(text, n)</strong> - Last n characters</p>\n</li>\n<li><p><strong>MID(text, start, length)</strong> - Extract substring</p>\n</li>\n<li><p><strong>FIND(search, text)</strong> - Position of substring (1-indexed)</p>\n</li>\n<li><p><strong>CONTAINS(text, search)</strong> - Check if text contains substring</p>\n</li>\n<li><p><strong>STARTSWITH(text, prefix)</strong> - Check if text starts with prefix</p>\n</li>\n<li><p><strong>ENDSWITH(text, suffix)</strong> - Check if text ends with suffix</p>\n</li>\n<li><p><strong>REVERSE(text)</strong> - Reverse string</p>\n</li>\n<li><p><strong>REPEAT(text, n)</strong> - Repeat text n times</p>\n</li>\n<li><p><strong>SPLIT(text, delimiter)</strong> - Split text by delimiter</p>\n</li>\n</ul>\n<h3 id=\"date-functions\">Date Functions</h3>\n<ul>\n<li><p><strong>DATE(year, month, day)</strong> - Create date</p>\n</li>\n<li><p><strong>TODAY()</strong> - Current date</p>\n</li>\n<li><p><strong>WORKDAY(start, days)</strong> - Calculate workday</p>\n</li>\n<li><p><strong>DATEVALUE(dateStr)</strong> - Parse date</p>\n</li>\n<li><p><strong>EARLIEST(...)</strong> - Minimum date</p>\n</li>\n<li><p><strong>LATEST(...)</strong> - Maximum date</p>\n</li>\n<li><p><strong>DAY(date)</strong> - Extract day</p>\n</li>\n<li><p><strong>MONTH(date)</strong> - Extract month</p>\n</li>\n<li><p><strong>YEAR(date)</strong> - Extract year</p>\n</li>\n<li><p><strong>WEEKDAY(date)</strong> - Day of week (1-7)</p>\n</li>\n<li><p><strong>WEEKNUM(date)</strong> - Week number</p>\n</li>\n<li><p><strong>DATEDIF(date1, date2, unit)</strong> - Date difference (\"D\", \"M\", \"Y\")</p>\n</li>\n</ul>\n<h3 id=\"type-checking-functions\">Type Checking Functions</h3>\n<ul>\n<li><p><strong>ISNUMBER(value)</strong> - Check if value is a number</p>\n</li>\n<li><p><strong>ISTEXT(value)</strong> - Check if value is text</p>\n</li>\n<li><p><strong>ISBLANK(value)</strong> - Check if value is empty</p>\n</li>\n<li><p><strong>ISBOOL(value)</strong> - Check if value is boolean</p>\n</li>\n<li><p><strong>ISDATE(value)</strong> - Check if value is valid date</p>\n</li>\n</ul>\n<h3 id=\"conversion-functions\">Conversion Functions</h3>\n<ul>\n<li><p><strong>TEXT(value, [format])</strong> - Convert to formatted string</p>\n</li>\n<li><p><strong>VALUE(text)</strong> - Convert string to number</p>\n</li>\n<li><p><strong>INT(number)</strong> - Convert to integer</p>\n</li>\n<li><p><strong>FLOAT(text)</strong> - Convert to float</p>\n</li>\n<li><p><strong>BOOL(value)</strong> - Convert to boolean</p>\n</li>\n</ul>\n<h1 id=\"6-api-documentation\">6. API documentation</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"1. Form embed","slug":"1-form-embed"},{"content":"2. Datalist embed","slug":"2-datalist-embed"},{"content":"3. Webhooks","slug":"3-webhooks"},{"content":"4. API usage","slug":"4-api-usage"},{"content":"5. Formula functions","slug":"5-formula-functions"},{"content":"6. API documentation","slug":"6-api-documentation"}],"owner":"1182324","collectionId":"486c91dd-18ac-4590-881f-2a4b8679ff0c","publishedId":"2sBXc8pjEu","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"965110"},"publishDate":"2026-02-07T09:46:01.000Z"},"item":[{"name":"Cases","item":[{"name":"RPC","item":[{"name":"matter:media-upload-portal","id":"0a6aa208-af97-4992-bc28-25989d907aea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"signature\": \"matter:media-upload-portal\",\n    \"body\": {\n        \"target\": {\n            \"id\": \"9d09e5b6-2e30-42ec-bae2-d9a7c21c5632\",\n            \"type\": \"matter\"\n        },\n        \"entity_id\": \"9d09a380-79ff-40f0-a47b-2cd0502c0cba\",\n        \"files\": [\n            \n        ]\n    }\n}"},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/rpc","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","rpc"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a6aa208-af97-4992-bc28-25989d907aea"},{"name":"matter:generate-tree","id":"9a1850dd-673d-43ab-841c-89b9106a6b16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"signature\": \"matter:generate-tree\",\n    \"body\": {\n        \"tree\": {\n            \"id\": \"9d09e5b6-2e30-42ec-bae2-d9a7c21c5632\"\n        }\n    }\n}"},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/rpc","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","rpc"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a1850dd-673d-43ab-841c-89b9106a6b16"},{"name":"case:overview-export","id":"8b3e12c5-d1af-4d7f-bf7b-0f09900304bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"signature\": \"case:overview-export\",\n    \"body\": {\n        \"table\": \"62478f4b-c1fb-4610-ae3d-c8306f21a42e\",\n        \"format\": \"xlsx\"\n    }\n}"},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/rpc","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","rpc"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b3e12c5-d1af-4d7f-bf7b-0f09900304bf"},{"name":"matter:refresh-party-matters","id":"012e03ff-3e09-494f-b624-85180c3701ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"signature\": \"matter:refresh-party-matters\",\n    \"body\": {\n        \"entity\": {\n            \"id\": \"{{entity_id}}\"\n        }\n    }\n}"},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/rpc","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","rpc"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"012e03ff-3e09-494f-b624-85180c3701ba"}],"id":"b4d005cc-8de9-48bc-98f6-10a559230ff7","_postman_id":"b4d005cc-8de9-48bc-98f6-10a559230ff7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Fields","item":[{"name":"List Fields","id":"7d61dca9-d3d7-40de-8b6a-75caa231abd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/fields","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","fields"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d61dca9-d3d7-40de-8b6a-75caa231abd9"}],"id":"a45c2bc9-3477-4a16-b714-cbaa17fdab82","_postman_id":"a45c2bc9-3477-4a16-b714-cbaa17fdab82","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Matters","item":[{"name":"Tasks","item":[{"name":"List Tasks","id":"55d84e3e-f661-4a4c-b3e1-ff012434d0b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/tasks","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","tasks"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Matter UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Search by name</p>\n","type":"text/plain"},"key":"filters[search]","value":"Send contract"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of matter UUID's</p>\n","type":"text/plain"},"key":"filters[matters]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Group UUID</p>\n","type":"text/plain"},"key":"filters[group]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of group UUID's</p>\n","type":"text/plain"},"key":"filters[groups]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Owner UUID</p>\n","type":"text/plain"},"key":"filters[owner]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of owner UUID's</p>\n","type":"text/plain"},"key":"filters[owners]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[me]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_required]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_consent]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_completed]","value":"true"},{"disabled":true,"description":{"content":"<p>Default sort</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by duration</p>\n","type":"text/plain"},"key":"sort","value":"duration"},{"disabled":true,"description":{"content":"<p>Sort by owner</p>\n","type":"text/plain"},"key":"sort","value":"owner"},{"disabled":true,"description":{"content":"<p>Sort by group</p>\n","type":"text/plain"},"key":"sort","value":"group"},{"disabled":true,"description":{"content":"<p>Sort by task UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by task creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by task update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include group</p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Include owner</p>\n","type":"text/plain"},"key":"with[]","value":"owner"},{"disabled":true,"description":{"content":"<p>Include user that completed the task</p>\n","type":"text/plain"},"key":"with[]","value":"completer"},{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include process statuses</p>\n","type":"text/plain"},"key":"with[]","value":"statuses"},{"disabled":true,"description":{"content":"<p>Include metadata</p>\n","type":"text/plain"},"key":"with[]","value":"meta"}],"variable":[]}},"response":[],"_postman_id":"55d84e3e-f661-4a4c-b3e1-ff012434d0b8"},{"name":"Read Task","id":"0716b625-7162-462c-b0ab-912920c4c673","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/tasks/{{matter_task_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","tasks","{{matter_task_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include group</p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Include owner</p>\n","type":"text/plain"},"key":"with[]","value":"owner"},{"disabled":true,"description":{"content":"<p>Include user that completed the task</p>\n","type":"text/plain"},"key":"with[]","value":"completer"},{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include process statuses</p>\n","type":"text/plain"},"key":"with[]","value":"statuses"},{"disabled":true,"description":{"content":"<p>Include metadata</p>\n","type":"text/plain"},"key":"with[]","value":"meta"}],"variable":[]}},"response":[],"_postman_id":"0716b625-7162-462c-b0ab-912920c4c673"},{"name":"Create Task","id":"9a7a9ea4-e508-444f-8827-942fc9973eab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"item[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Group item UUID</p>\n","type":"text"},{"key":"group[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Group UUID</p>\n","type":"text"},{"key":"group[name]","value":"Developers","description":"<p>Group name</p>\n","type":"text"},{"key":"group[media]","value":"","description":"<p>Group media</p>\n","type":"text"},{"key":"matter[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Matter UUID</p>\n","type":"text"},{"key":"owner","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>User UUID</p>\n","type":"text"},{"key":"name","value":"Send contract","description":"<p>Text</p>\n","type":"text"},{"key":"description","value":"Send contract to applicant","description":"<p>Text</p>\n","type":"text"},{"key":"deadline_at","value":"2024-02-28 00:00","description":"<p>JJJJMMDD HH:MM</p>\n","type":"text"},{"key":"is_required","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"is_consent","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"is_party_restricted","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"process_statuses[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Process status UUID</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/tasks","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","tasks"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a7a9ea4-e508-444f-8827-942fc9973eab"},{"name":"Delete Task","id":"146855e6-5a3a-4807-8c85-496961c3faef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/tasks/{{matter_task_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","tasks","{{matter_task_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"146855e6-5a3a-4807-8c85-496961c3faef"},{"name":"Update Task","id":"d7c8015f-4ee1-483a-acd7-4ce83924480a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"group[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Group UUID</p>\n","type":"text"},{"key":"completer","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>User UUID</p>\n","type":"text"},{"key":"owner","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>User UUID</p>\n","type":"text"},{"key":"is_completed","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"name","value":"Send contract","description":"<p>Text</p>\n","type":"text"},{"key":"description","value":"Send contract to applicant","description":"<p>Text</p>\n","type":"text"},{"key":"deadline_at","value":"2024-02-28 00:00","description":"<p>JJJJ-MM-DD HH:MM</p>\n","type":"text"},{"key":"is_required","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"is_consent","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"is_party_restricted","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"process_statuses[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Process status UUID</p>\n","type":"text"},{"key":"item[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Denied, cant change group item after creation</p>\n","type":"text"},{"key":"matter[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Denied, cant change matter after creation</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/tasks/{{matter_task_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","tasks","{{matter_task_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7c8015f-4ee1-483a-acd7-4ce83924480a"}],"id":"1c15feb8-0b18-4e85-97bd-f26e587218bb","_postman_id":"1c15feb8-0b18-4e85-97bd-f26e587218bb","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Objects","item":[{"name":"List Objects","id":"d8c6eecd-74f2-42f0-a2d8-cfdc979f0850","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters-objects","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters-objects"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Matter object UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of matter object UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Default sort</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include group</p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Include object</p>\n","type":"text/plain"},"key":"with[]","value":"object"},{"disabled":true,"description":{"content":"<p>Include item</p>\n","type":"text/plain"},"key":"with[]","value":"item"}],"variable":[]}},"response":[],"_postman_id":"d8c6eecd-74f2-42f0-a2d8-cfdc979f0850"},{"name":"Read Object","id":"5a214263-4975-40ee-b9c8-2e9b563c3c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters-objects/{{matter_object_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters-objects","{{matter_object_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include group</p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Include object</p>\n","type":"text/plain"},"key":"with[]","value":"object"},{"disabled":true,"description":{"content":"<p>Include item</p>\n","type":"text/plain"},"key":"with[]","value":"item"}],"variable":[]}},"response":[],"_postman_id":"5a214263-4975-40ee-b9c8-2e9b563c3c56"},{"name":"Delete Object","id":"45ff3d6d-6538-4ba3-8b79-57e2b6e591bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters-objects/{{matter_object_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters-objects","{{matter_object_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"45ff3d6d-6538-4ba3-8b79-57e2b6e591bd"},{"name":"Create Object","id":"33fc9d86-4e75-4ddb-85c8-9d8c390c5a74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"matter[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Matter UUID </p>\n","type":"text"},{"key":"item[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Group item UUID</p>\n","type":"text"},{"key":"group[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Group UUID</p>\n","type":"text"},{"key":"target","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Either custom list item object UUID or BAG object UUID</p>\n","type":"text"},{"key":"custom_list_item[custom_list][id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Custom list UUID</p>\n","type":"text"},{"key":"bag_object[nummeraanduiding_identificatie]","value":"0034200000048666","description":"<p>Text</p>\n","type":"text"},{"key":"bag_object[postal_code]","value":"1101 BE","description":"<p>Text</p>\n","type":"text"},{"key":"bag_object[house_number]","value":"56","description":"<p>Text</p>\n","type":"text"},{"key":"bag_object[house_letter]","value":"R","description":"<p>Text</p>\n","type":"text"},{"key":"bag_object[house_number_addition]","value":"2","description":"<p>Text</p>\n","type":"text"},{"key":"bag_object[street_name]","value":"Hoogoorddreef","description":"<p>Text</p>\n","type":"text"},{"key":"bag_object[street_name_short]","value":"Hoogoorddreef","description":"<p>Text</p>\n","type":"text"},{"key":"bag_object[city]","value":"Amsterdam","description":"<p>Text</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters-objects","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters-objects"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"33fc9d86-4e75-4ddb-85c8-9d8c390c5a74"}],"id":"698ba206-bf5c-44f3-bbcb-803c99495006","_postman_id":"698ba206-bf5c-44f3-bbcb-803c99495006","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Status deadlines","item":[{"name":"List status deadlines","id":"b0ed924f-3c4d-4384-907b-180583edf89a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/status-deadlines","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","status-deadlines"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>approved, pending, rejected, canceled</p>\n","type":"text/plain"},"key":"filters[status]","value":"approved"},{"disabled":true,"description":{"content":"<p>approved, pending, rejected, canceled</p>\n","type":"text/plain"},"key":"filters[statuses][]","value":"approved"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Process status UUID</p>\n","type":"text/plain"},"key":"filters[process_status]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[reviewed_by]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Reason UUID</p>\n","type":"text/plain"},"key":"filters[reason]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Matter name</p>\n","type":"text/plain"},"key":"filters[name]","value":"2024000001"},{"disabled":true,"description":{"content":"<p>Deadline UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Deadline UUID</p>\n","type":"text/plain"},"key":"filters[ids][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Sort by review date</p>\n","type":"text/plain"},"key":"sort","value":"reviewed_at"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include reviewer</p>\n","type":"text/plain"},"key":"with[]","value":"reviewed_by"},{"disabled":true,"description":{"content":"<p>Include reason</p>\n","type":"text/plain"},"key":"with[]","value":"reason"},{"disabled":true,"description":{"content":"<p>Include process status</p>\n","type":"text/plain"},"key":"with[]","value":"process_status"},{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"}],"variable":[]}},"response":[],"_postman_id":"b0ed924f-3c4d-4384-907b-180583edf89a"},{"name":"Read status deadline","id":"c0635e0d-8faf-4045-97c6-8356f5fce775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/status-deadlines/{{status_deadline_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","status-deadlines","{{status_deadline_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include reviewer</p>\n","type":"text/plain"},"key":"with[]","value":"reviewed_by"},{"disabled":true,"description":{"content":"<p>Include reason</p>\n","type":"text/plain"},"key":"with[]","value":"reason"},{"disabled":true,"description":{"content":"<p>Include process status</p>\n","type":"text/plain"},"key":"with[]","value":"process_status"},{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"}],"variable":[]}},"response":[],"_postman_id":"c0635e0d-8faf-4045-97c6-8356f5fce775"},{"name":"Create status deadline","id":"54cafc13-bf1a-4f0e-9cb8-0f4678c0e2f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"matter[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Matter UUID</p>\n","type":"text"},{"key":"reason[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Reason UUID</p>\n","type":"text"},{"key":"status","value":"approved","description":"<p>pending, approved, rejected, canceled</p>\n","type":"text"},{"key":"new_deadline_at","value":"2024-02-27 00:00","description":"<p>JJJJ-MM-DD HH:MM</p>\n","type":"text"},{"key":"description","value":"Lorem ipsum","description":"<p>Text</p>\n","type":"text"},{"key":"review_description","value":"Lorem ipsum","description":"<p>Text</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/status-deadlines","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","status-deadlines"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"54cafc13-bf1a-4f0e-9cb8-0f4678c0e2f7"},{"name":"Update status deadline","id":"7229ec32-0f97-4f26-aedd-f87752dca844","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"matter[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Matter UUID</p>\n","type":"text"},{"key":"reason[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Reason UUID</p>\n","type":"text"},{"key":"status","value":"approved","description":"<p>pending, approved, rejected, canceled</p>\n","type":"text"},{"key":"new_deadline_at","value":"2024-02-27 00:00","description":"<p>JJJJ-MM-DD HH:MM</p>\n","type":"text"},{"key":"description","value":"Lorem ipsum","description":"<p>Text</p>\n","type":"text"},{"key":"review_description","value":"Lorem ipsum","description":"<p>Text</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/status-deadlines/{{status_deadline_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","status-deadlines","{{status_deadline_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"7229ec32-0f97-4f26-aedd-f87752dca844"},{"name":"Delete status deadline","id":"de3a3371-d33b-465e-a9a6-e6bd6f74fd4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v0/matters/status-deadlines/{{status_deadline_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v0","matters","status-deadlines","{{status_deadline_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"de3a3371-d33b-465e-a9a6-e6bd6f74fd4b"}],"id":"e3c39d58-fc6e-4211-ba51-81b32fd255a1","_postman_id":"e3c39d58-fc6e-4211-ba51-81b32fd255a1","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Create Matter","id":"ae6fd779-2774-4995-bcc7-98f16383d27a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"process","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Process UUID</p>\n","type":"text"},{"key":"type","value":"standard","description":"<p>standard, private</p>\n","type":"text"},{"key":"department","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Department UUID</p>\n","type":"text"},{"key":"parties[role][id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Role UUID</p>\n","type":"text"},{"key":"parties[external]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>external id</p>\n","type":"text"},{"key":"parties[ssn]","value":"111222333","description":"<p>ssn number</p>\n","type":"text"},{"key":"parties[kvk]","value":"9305 6589","description":"<p>KVK number</p>\n","type":"text"},{"key":"parties[name]","value":"John William Doe","description":"<p>Name</p>\n","type":"text"},{"key":"parties[initials]","value":"JWD","description":"<p>Initials</p>\n","type":"text"},{"key":"parties[first_name]","value":"John","description":"<p>First name</p>\n","type":"text"},{"key":"parties[middle_name]","value":"William","description":"<p>Middle name</p>\n","type":"text"},{"key":"parties[last_name]","value":"Doe","description":"<p>Last name</p>\n","type":"text"},{"key":"parties[email]","value":"john.doe@example.com","description":"<p>Email</p>\n","type":"text"},{"key":"parties[phone]","value":"02123456789","description":"<p>Phone number</p>\n","type":"text"},{"key":"parties[mobile]","value":"0695851412","description":"<p>Mobile phone number</p>\n","type":"text"},{"key":"parties[fields][id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Field UUID</p>\n","type":"text"},{"key":"parties[fields][value]","value":"Beslissing niet eens","description":"<p>Field value</p>\n","type":"text"},{"key":"parties[fields][is_pinned]","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"applicant[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Applicant UUID</p>\n","type":"text"},{"key":"practitioner[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Practitioner UUID</p>\n","type":"text"},{"key":"responsible_party","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>User UUID, Department UUID</p>\n","type":"text"},{"key":"retention_policy[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Retention policy UUID</p>\n","type":"text"},{"key":"extension_policy[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Extension policy UUID</p>\n","type":"text"},{"key":"tags[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Tag UUID</p>\n","type":"text"}]},"url":"https://orionis.api.cases.mozard suite.nl/v1/matters","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","matters"],"host":["orionis","api","cases","mozard suite","nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae6fd779-2774-4995-bcc7-98f16383d27a"},{"name":"List Matters","id":"98080a65-e6ba-4c2c-8979-a8fc23bfd6af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters?with[]=parties&filters[name]=2024000001&with[]=process&with[]=status&with[]=deadline_next_status_at","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include fields data</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"description":{"content":"<p>Include party data</p>\n","type":"text/plain"},"key":"with[]","value":"parties"},{"disabled":true,"description":{"content":"<p>Include address data</p>\n","type":"text/plain"},"key":"with[]","value":"address"},{"description":{"content":"<p>Filter by name </p>\n","type":"text/plain"},"key":"filters[name]","value":"2024000001"},{"disabled":true,"description":{"content":"<p>Filter by status id</p>\n","type":"text/plain"},"key":"filters[status]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Filter by multiple status ids</p>\n","type":"text/plain"},"key":"filters[statuses]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Filter by process id</p>\n","type":"text/plain"},"key":"filters[process]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple process ids</p>\n","type":"text/plain"},"key":"filters[processes]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by applicant id</p>\n","type":"text/plain"},"key":"filters[applicant]","value":"9888fe26-9d5f-40c1-953b-1084a9ca657b"},{"disabled":true,"description":{"content":"<p>Filter by user id</p>\n","type":"text/plain"},"key":"filters[user]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by multiple user ids</p>\n","type":"text/plain"},"key":"filters[users]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by party user id</p>\n","type":"text/plain"},"key":"filters[party_user]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple party user ids</p>\n","type":"text/plain"},"key":"filters[party_users]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by party department id</p>\n","type":"text/plain"},"key":"filters[party_department]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple party department ids</p>\n","type":"text/plain"},"key":"filters[party_departments]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by tag id</p>\n","type":"text/plain"},"key":"filters[tag]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple tag ids</p>\n","type":"text/plain"},"key":"filters[tags]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by practitioner id</p>\n","type":"text/plain"},"key":"filters[practitioner]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple practitioner ids</p>\n","type":"text/plain"},"key":"filters[practitioners]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by responsible party id</p>\n","type":"text/plain"},"key":"filters[responsible_party]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple responsible party ids</p>\n","type":"text/plain"},"key":"filters[responsible_parties]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by entity id</p>\n","type":"text/plain"},"key":"filters[entity]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple entity ids</p>\n","type":"text/plain"},"key":"filters[entities]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by project id</p>\n","type":"text/plain"},"key":"filters[project]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple project ids</p>\n","type":"text/plain"},"key":"filters[projects]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by department id</p>\n","type":"text/plain"},"key":"filters[department]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple department ids</p>\n","type":"text/plain"},"key":"filters[departments]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by matter department id</p>\n","type":"text/plain"},"key":"filters[matterDepartment]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multple matter department ids</p>\n","type":"text/plain"},"key":"filters[matterDepartments]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by external id</p>\n","type":"text/plain"},"key":"filters[external]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple external ids</p>\n","type":"text/plain"},"key":"filters[externals]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>ok, almost (within 3 days of deadline), late</p>\n","type":"text/plain"},"key":"filters[deadline]","value":"ok"},{"disabled":true,"description":{"content":"<p>Filter by tree id</p>\n","type":"text/plain"},"key":"filters[tree]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by post code</p>\n","type":"text/plain"},"key":"filters[postCode]","value":"1101BE"},{"disabled":true,"description":{"content":"<p>Filter by house number</p>\n","type":"text/plain"},"key":"filters[houseNumber]","value":"56R"},{"disabled":true,"description":{"content":"<p>Filter by street</p>\n","type":"text/plain"},"key":"filters[street]","value":"Hoogoorddreef"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[isDefault]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[isPlannable]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[isPaused]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[hasAddress]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[isFinal]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[isChild]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[isParent]","value":"true"},{"disabled":true,"description":{"content":"<p>Filter by child matter id</p>\n","type":"text/plain"},"key":"filters[child]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple child matter ids</p>\n","type":"text/plain"},"key":"filters[children]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by parent matter id</p>\n","type":"text/plain"},"key":"filters[parent]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple parent matter ids</p>\n","type":"text/plain"},"key":"filters[parents]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>array{latitude:string,longitude:string,zoom:int}</p>\n","type":"text/plain"},"key":"filters[location]","value":"['latitude' => '4.94578', '52.31117', 7]"},{"disabled":true,"description":{"content":"<p>Project id</p>\n","type":"text/plain"},"key":"filters[excludeProject]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Submission id</p>\n","type":"text/plain"},"key":"filters[createdFromSubmission]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Sort default (by deadline)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by deadline </p>\n","type":"text/plain"},"key":"sort","value":"deadline"},{"disabled":true,"description":{"content":"<p>Sort by deadline for next status</p>\n","type":"text/plain"},"key":"sort","value":"deadline_next_status_at"},{"disabled":true,"description":{"content":"<p>Sort by process</p>\n","type":"text/plain"},"key":"sort","value":"process"},{"disabled":true,"description":{"content":"<p>Sort by external_id</p>\n","type":"text/plain"},"key":"sort","value":"external_id"},{"disabled":true,"description":{"content":"<p>Sort by department</p>\n","type":"text/plain"},"key":"sort","value":"department"},{"disabled":true,"description":{"content":"<p>Sort by status</p>\n","type":"text/plain"},"key":"sort","value":"status"},{"disabled":true,"description":{"content":"<p>Sort by practitioner</p>\n","type":"text/plain"},"key":"sort","value":"practitioner"},{"disabled":true,"description":{"content":"<p>Sort by applicant</p>\n","type":"text/plain"},"key":"sort","value":"applicant"},{"disabled":true,"description":{"content":"<p>Sort by responsible party</p>\n","type":"text/plain"},"key":"sort","value":"responsible_party"},{"disabled":true,"description":{"content":"<p>Include user data</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"description":{"content":"<p>Include process data</p>\n","type":"text/plain"},"key":"with[]","value":"process"},{"description":{"content":"<p>Include status data</p>\n","type":"text/plain"},"key":"with[]","value":"status"},{"disabled":true,"description":{"content":"<p>Include department data</p>\n","type":"text/plain"},"key":"with[]","value":"department"},{"disabled":true,"description":{"content":"<p>Include applicant data</p>\n","type":"text/plain"},"key":"with[]","value":"applicant"},{"disabled":true,"description":{"content":"<p>Include practitioner data</p>\n","type":"text/plain"},"key":"with[]","value":"practitioner"},{"disabled":true,"description":{"content":"<p>Include responsible party data</p>\n","type":"text/plain"},"key":"with[]","value":"responsible_party"},{"disabled":true,"description":{"content":"<p>Include retention policy data</p>\n","type":"text/plain"},"key":"with[]","value":"retention_policy"},{"disabled":true,"description":{"content":"<p>Include extension policy data</p>\n","type":"text/plain"},"key":"with[]","value":"extension_policy"},{"disabled":true,"description":{"content":"<p>Include policy state data</p>\n","type":"text/plain"},"key":"with[]","value":"policyable_state"},{"disabled":true,"description":{"content":"<p>Include tag data</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include transition data</p>\n","type":"text/plain"},"key":"with[]","value":"transition"},{"disabled":true,"description":{"content":"<p>Include deadline data</p>\n","type":"text/plain"},"key":"with[]","value":"deadline"},{"description":{"content":"<p>Include next status deadline data</p>\n","type":"text/plain"},"key":"with[]","value":"deadline_next_status_at"},{"disabled":true,"description":{"content":"<p>Include roles data</p>\n","type":"text/plain"},"key":"with[]","value":"roles"},{"disabled":true,"description":{"content":"<p>Include tree data</p>\n","type":"text/plain"},"key":"with[]","value":"tree"},{"disabled":true,"description":{"content":"<p>Include tab data</p>\n","type":"text/plain"},"key":"with[]","value":"tab"},{"disabled":true,"description":{"content":"<p>Include activities data</p>\n","type":"text/plain"},"key":"with[]","value":"activities"},{"disabled":true,"description":{"content":"<p>Include members data</p>\n","type":"text/plain"},"key":"with[]","value":"members"},{"disabled":true,"description":{"content":"<p>Include entity data</p>\n","type":"text/plain"},"key":"with[]","value":"entity_ids"},{"disabled":true,"description":{"content":"<p>Include data of related matters</p>\n","type":"text/plain"},"key":"with[]","value":"related_matters"},{"disabled":true,"description":{"content":"<p>Include settings data</p>\n","type":"text/plain"},"key":"with[]","value":"settings"}],"variable":[]}},"response":[{"id":"e5955a20-5056-40e9-818f-3e3a746edd2e","name":"List Matters","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters?with[]=parties&filters[name]=2024000001&with[]=process&with[]=status&with[]=deadline_next_status_at","host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"path":["v1","matters"],"query":[{"key":"with[]","value":"fields","description":"Include fields data","disabled":true},{"key":"with[]","value":"parties","description":"Include party data"},{"key":"with[]","value":"address","description":"Include address data","disabled":true},{"key":"filters[name]","value":"2024000001","description":"Filter by name "},{"key":"filters[status]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"Filter by status id","disabled":true},{"key":"filters[statuses]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"Filter by multiple status ids","disabled":true},{"key":"filters[process]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by process id","disabled":true},{"key":"filters[processes]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple process ids","disabled":true},{"key":"filters[applicant]","value":"9888fe26-9d5f-40c1-953b-1084a9ca657b","description":"Filter by applicant id","disabled":true},{"key":"filters[user]","value":"00000000-0000-0000-0000-000000000000","description":"Filter by user id","disabled":true},{"key":"filters[users]","value":"00000000-0000-0000-0000-000000000000","description":"Filter by multiple user ids","disabled":true},{"key":"filters[party_user]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by party user id","disabled":true},{"key":"filters[party_users]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple party user ids","disabled":true},{"key":"filters[party_department]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by party department id","disabled":true},{"key":"filters[party_departments]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple party department ids","disabled":true},{"key":"filters[tag]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by tag id","disabled":true},{"key":"filters[tags]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple tag ids","disabled":true},{"key":"filters[practitioner]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by practitioner id","disabled":true},{"key":"filters[practitioners]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple practitioner ids","disabled":true},{"key":"filters[responsible_party]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by responsible party id","disabled":true},{"key":"filters[responsible_parties]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple responsible party ids","disabled":true},{"key":"filters[entity]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by entity id","disabled":true},{"key":"filters[entities]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple entity ids","disabled":true},{"key":"filters[project]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by project id","disabled":true},{"key":"filters[projects]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple project ids","disabled":true},{"key":"filters[department]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by department id","disabled":true},{"key":"filters[departments]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple department ids","disabled":true},{"key":"filters[matterDepartment]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by matter department id","disabled":true},{"key":"filters[matterDepartments]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multple matter department ids","disabled":true},{"key":"filters[external]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by external id","disabled":true},{"key":"filters[externals]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple external ids","disabled":true},{"key":"filters[deadline]","value":"ok","description":"ok, almost (within 3 days of deadline), late","disabled":true},{"key":"filters[tree]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by tree id","disabled":true},{"key":"filters[postCode]","value":"1101BE","description":"Filter by post code","disabled":true},{"key":"filters[houseNumber]","value":"56R","description":"Filter by house number","disabled":true},{"key":"filters[street]","value":"Hoogoorddreef","description":"Filter by street","disabled":true},{"key":"filters[isDefault]","value":"true","description":"true, false","disabled":true},{"key":"filters[isPlannable]","value":"true","description":"true, false","disabled":true},{"key":"filters[isPaused]","value":"true","description":"true, false","disabled":true},{"key":"filters[hasAddress]","value":"true","description":"true, false","disabled":true},{"key":"filters[isFinal]","value":"true","description":"true, false","disabled":true},{"key":"filters[isChild]","value":"true","description":"true, false","disabled":true},{"key":"filters[isParent]","value":"true","description":"true, false","disabled":true},{"key":"filters[child]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by child matter id","disabled":true},{"key":"filters[children]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple child matter ids","disabled":true},{"key":"filters[parent]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by parent matter id","disabled":true},{"key":"filters[parents]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Filter by multiple parent matter ids","disabled":true},{"key":"filters[location]","value":"['latitude' => '4.94578', '52.31117', 7]","description":"array{latitude:string,longitude:string,zoom:int}","disabled":true},{"key":"filters[excludeProject]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Project id","disabled":true},{"key":"filters[createdFromSubmission]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"Submission id","disabled":true},{"key":"sort","value":"default","description":"Sort default (by deadline)","disabled":true},{"key":"sort","value":"name","description":"Sort by name","disabled":true},{"key":"sort","value":"deadline","description":"Sort by deadline ","disabled":true},{"key":"sort","value":"deadline_next_status_at","description":"Sort by deadline for next status","disabled":true},{"key":"sort","value":"process","description":"Sort by process","disabled":true},{"key":"sort","value":"external_id","description":"Sort by external_id","disabled":true},{"key":"sort","value":"department","description":"Sort by department","disabled":true},{"key":"sort","value":"status","description":"Sort by status","disabled":true},{"key":"sort","value":"practitioner","description":"Sort by practitioner","disabled":true},{"key":"sort","value":"applicant","description":"Sort by applicant","disabled":true},{"key":"sort","value":"responsible_party","description":"Sort by responsible party","disabled":true},{"key":"with[]","value":"user","description":"Include user data","disabled":true},{"key":"with[]","value":"process","description":"Include process data"},{"key":"with[]","value":"status","description":"Include status data"},{"key":"with[]","value":"department","description":"Include department data","disabled":true},{"key":"with[]","value":"applicant","description":"Include applicant data","disabled":true},{"key":"with[]","value":"practitioner","description":"Include practitioner data","disabled":true},{"key":"with[]","value":"responsible_party","description":"Include responsible party data","disabled":true},{"key":"with[]","value":"retention_policy","description":"Include retention policy data","disabled":true},{"key":"with[]","value":"extension_policy","description":"Include extension policy data","disabled":true},{"key":"with[]","value":"policyable_state","description":"Include policy state data","disabled":true},{"key":"with[]","value":"tags","description":"Include tag data","disabled":true},{"key":"with[]","value":"transition","description":"Include transition data","disabled":true},{"key":"with[]","value":"deadline","description":"Include deadline data","disabled":true},{"key":"with[]","value":"deadline_next_status_at","description":"Include next status deadline data"},{"key":"with[]","value":"roles","description":"Include roles data","disabled":true},{"key":"with[]","value":"tree","description":"Include tree data","disabled":true},{"key":"with[]","value":"tab","description":"Include tab data","disabled":true},{"key":"with[]","value":"activities","description":"Include activities data","disabled":true},{"key":"with[]","value":"members","description":"Include members data","disabled":true},{"key":"with[]","value":"entity_ids","description":"Include entity data","disabled":true},{"key":"with[]","value":"related_matters","description":"Include data of related matters","disabled":true},{"key":"with[]","value":"settings","description":"Include settings data","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:30:36 GMT","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n            \"name\": \"2024000001\",\n            \"type\": \"standard\",\n            \"created_at\": \"2024-02-06T09:55:19.000000Z\",\n            \"meta\": {\n                \"id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n                \"type\": \"matter\"\n            },\n            \"mozard suite_email\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b.matter.cases.mozard@mail.test.mozardsuite.nl\",\n            \"tree\": {\n                \"id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\"\n            },\n            \"parties\": [\n                {\n                    \"id\": \"9b539af8-f8c5-435b-820b-e46cba71d2f0\",\n                    \"matter_id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n                    \"entity_id\": null,\n                    \"type\": \"user\",\n                    \"name\": \"Joseph Budiarto\",\n                    \"email\": \"j.budiarto@mozard.nl\",\n                    \"phone\": null,\n                    \"is_pinned\": false,\n                    \"created_at\": \"2024-02-13T14:17:25.000000Z\",\n                    \"updated_at\": \"2024-02-13T14:17:25.000000Z\",\n                    \"role\": {\n                        \"id\": \"8824dade-893c-4fe9-85c7-27a1f8e57222\",\n                        \"name\": \"Behandelaar\",\n                        \"functions\": [\n                            {\n                                \"id\": \"user\",\n                                \"name\": \"Gebruiker\"\n                            }\n                        ],\n                        \"is_editable\": false,\n                        \"is_deletable\": false,\n                        \"is_pinned\": true,\n                        \"sort_order\": 1,\n                        \"is_draggable\": false,\n                        \"group\": null\n                    },\n                    \"meta\": {\n                        \"id\": \"9b539af8-f8c5-435b-820b-e46cba71d2f0\",\n                        \"type\": \"party\"\n                    }\n                },\n                {\n                    \"id\": \"9b7160ea-07b6-4c9d-8184-53765d525ced\",\n                    \"matter_id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n                    \"entity_id\": \"9b53a317-5c03-4f31-a087-c163bc7d014f\",\n                    \"type\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n                    \"name\": \"Mozard\",\n                    \"email\": \"info@mozard.nl\",\n                    \"phone\": \"0612345678\",\n                    \"is_pinned\": false,\n                    \"created_at\": \"2024-02-28T09:29:55.000000Z\",\n                    \"updated_at\": \"2024-02-28T09:29:55.000000Z\",\n                    \"role\": {\n                        \"id\": \"9b53a1cd-4f49-42b6-a942-b928a1d63d53\",\n                        \"name\": \"Company\",\n                        \"functions\": [\n                            {\n                                \"id\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n                                \"name\": \"Bedrijf\"\n                            }\n                        ],\n                        \"is_editable\": true,\n                        \"is_deletable\": true,\n                        \"is_pinned\": false,\n                        \"sort_order\": 9,\n                        \"is_draggable\": true,\n                        \"group\": null\n                    },\n                    \"meta\": {\n                        \"id\": \"9b7160ea-07b6-4c9d-8184-53765d525ced\",\n                        \"type\": \"party\"\n                    }\n                },\n                {\n                    \"id\": \"9b716103-86aa-4ce7-b6dc-7f3547eab9db\",\n                    \"matter_id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n                    \"entity_id\": \"9b213f7f-2c85-4701-b151-04c5758d7943\",\n                    \"type\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                    \"name\": \"Joseph Budiarto\",\n                    \"email\": null,\n                    \"phone\": null,\n                    \"is_pinned\": false,\n                    \"created_at\": \"2024-02-28T09:30:12.000000Z\",\n                    \"updated_at\": \"2024-02-28T09:30:12.000000Z\",\n                    \"role\": {\n                        \"id\": \"9b53a1ad-8d6e-4a1f-83ff-7f8031145de8\",\n                        \"name\": \"Backenders\",\n                        \"functions\": [\n                            {\n                                \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                                \"name\": \"Persoon\"\n                            }\n                        ],\n                        \"is_editable\": true,\n                        \"is_deletable\": true,\n                        \"is_pinned\": false,\n                        \"sort_order\": 5,\n                        \"is_draggable\": true,\n                        \"group\": {\n                            \"id\": \"9b53a11f-92a9-4cc8-b248-d1a5e4be8ba9\",\n                            \"name\": \"Developers\",\n                            \"description\": null,\n                            \"type\": \"party\",\n                            \"is_pinned\": false,\n                            \"is_custom_list\": false,\n                            \"is_custom_list_appendable\": false,\n                            \"is_bag_object\": false,\n                            \"sort_order\": 1,\n                            \"created_at\": \"2024-02-13 15:34:37\",\n                            \"meta\": {\n                                \"id\": \"9b53a11f-92a9-4cc8-b248-d1a5e4be8ba9\",\n                                \"type\": \"process.template.group\"\n                            },\n                            \"process\": {\n                                \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n                                \"name\": \"Forms integration\",\n                                \"description\": \"\",\n                                \"icon\": \"mdi-dmozard suite\",\n                                \"max_duration\": 0,\n                                \"is_template\": false,\n                                \"created_at\": \"2024-02-06T09:30:09.000000Z\",\n                                \"meta\": {\n                                    \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n                                    \"type\": \"process\",\n                                    \"statuses_count\": null\n                                }\n                            }\n                        }\n                    },\n                    \"meta\": {\n                        \"id\": \"9b716103-86aa-4ce7-b6dc-7f3547eab9db\",\n                        \"type\": \"party\"\n                    }\n                },\n                {\n                    \"id\": \"9b71611a-b516-47b5-8a45-a91f169021f6\",\n                    \"matter_id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n                    \"entity_id\": \"9b2140b8-d434-4781-a689-0ea0c4fdf3f5\",\n                    \"type\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                    \"name\": \"Isabelle Smits\",\n                    \"email\": \"i.smits@mozard.nl\",\n                    \"phone\": null,\n                    \"is_pinned\": false,\n                    \"created_at\": \"2024-02-28T09:30:27.000000Z\",\n                    \"updated_at\": \"2024-02-28T09:30:27.000000Z\",\n                    \"role\": {\n                        \"id\": \"f125c5dd-b530-4a46-a834-9a7a502d103d\",\n                        \"name\": \"Aanvrager\",\n                        \"functions\": [\n                            {\n                                \"id\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n                                \"name\": \"Bedrijf\"\n                            },\n                            {\n                                \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                                \"name\": \"Persoon\"\n                            }\n                        ],\n                        \"is_editable\": true,\n                        \"is_deletable\": false,\n                        \"is_pinned\": true,\n                        \"sort_order\": 3,\n                        \"is_draggable\": false,\n                        \"group\": null\n                    },\n                    \"meta\": {\n                        \"id\": \"9b71611a-b516-47b5-8a45-a91f169021f6\",\n                        \"type\": \"party\"\n                    }\n                }\n            ],\n            \"process\": {\n                \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n                \"name\": \"Forms integration\",\n                \"description\": \"\",\n                \"icon\": \"mdi-dmozard suite\",\n                \"max_duration\": 0,\n                \"is_template\": false,\n                \"created_at\": \"2024-02-06T09:30:09.000000Z\",\n                \"meta\": {\n                    \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n                    \"type\": \"process\",\n                    \"statuses_count\": null\n                }\n            },\n            \"status\": {\n                \"id\": \"9b451f71-4521-4fa8-a435-016ece013d66\",\n                \"name\": \"first\",\n                \"name_external\": \"first\",\n                \"color\": \"#F4C761\",\n                \"description\": null,\n                \"duration\": 1,\n                \"is_default\": false,\n                \"is_final\": false,\n                \"is_plannable\": false,\n                \"is_paused\": false,\n                \"has_statusables\": false,\n                \"created_at\": \"2024-02-06T09:30:25.000000Z\",\n                \"pivot\": null,\n                \"meta\": {\n                    \"id\": \"9b451f71-4521-4fa8-a435-016ece013d66\",\n                    \"type\": \"process.status\",\n                    \"incoming_count\": null,\n                    \"outgoing_count\": null\n                },\n                \"process\": {\n                    \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n                    \"name\": \"Forms integration\",\n                    \"description\": \"\",\n                    \"icon\": \"mdi-dmozard suite\",\n                    \"max_duration\": 0,\n                    \"is_template\": false,\n                    \"created_at\": \"2024-02-06T09:30:09.000000Z\"\n                }\n            },\n            \"deadline_next_status_at\": {\n                \"status\": \"late\",\n                \"date\": \"2024-02-14T22:59:59.999999Z\",\n                \"is_deadline_extended\": false,\n                \"duration\": {\n                    \"human\": \"1 week ago\",\n                    \"minutes\": 20790,\n                    \"hours\": 346,\n                    \"days\": 14.4\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"98080a65-e6ba-4c2c-8979-a8fc23bfd6af"},{"name":"Read Matter","id":"9a37b0e8-d4b1-4e5d-80e9-38d6c7a373c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/{{matter_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","{{matter_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include fields data</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include party data</p>\n","type":"text/plain"},"key":"with[]","value":"parties"},{"disabled":true,"description":{"content":"<p>Include address data</p>\n","type":"text/plain"},"key":"with[]","value":"address"},{"disabled":true,"description":{"content":"<p>Include user data</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include process data</p>\n","type":"text/plain"},"key":"with[]","value":"process"},{"disabled":true,"description":{"content":"<p>Include status data</p>\n","type":"text/plain"},"key":"with[]","value":"status"},{"disabled":true,"description":{"content":"<p>Include department data</p>\n","type":"text/plain"},"key":"with[]","value":"department"},{"disabled":true,"description":{"content":"<p>Include applicant data</p>\n","type":"text/plain"},"key":"with[]","value":"applicant"},{"disabled":true,"description":{"content":"<p>Include practitioner data</p>\n","type":"text/plain"},"key":"with[]","value":"practitioner"},{"disabled":true,"description":{"content":"<p>Include responsible party data</p>\n","type":"text/plain"},"key":"with[]","value":"responsible_party"},{"disabled":true,"description":{"content":"<p>Include retention policy data</p>\n","type":"text/plain"},"key":"with[]","value":"retention_policy"},{"disabled":true,"description":{"content":"<p>Include extension policy data</p>\n","type":"text/plain"},"key":"with[]","value":"extension_policy"},{"disabled":true,"description":{"content":"<p>Include policy state data</p>\n","type":"text/plain"},"key":"with[]","value":"policyable_state"},{"disabled":true,"description":{"content":"<p>Include tag data</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include transition data</p>\n","type":"text/plain"},"key":"with[]","value":"transition"},{"disabled":true,"description":{"content":"<p>Include deadline data</p>\n","type":"text/plain"},"key":"with[]","value":"deadline"},{"disabled":true,"description":{"content":"<p>Include next status deadline data</p>\n","type":"text/plain"},"key":"with[]","value":"deadline_next_status_at"},{"disabled":true,"description":{"content":"<p>Include roles data</p>\n","type":"text/plain"},"key":"with[]","value":"roles"},{"disabled":true,"description":{"content":"<p>Include tree data</p>\n","type":"text/plain"},"key":"with[]","value":"tree"},{"disabled":true,"description":{"content":"<p>Include tab data</p>\n","type":"text/plain"},"key":"with[]","value":"tab"},{"disabled":true,"description":{"content":"<p>Include activities data</p>\n","type":"text/plain"},"key":"with[]","value":"activities"},{"disabled":true,"description":{"content":"<p>Include member data</p>\n","type":"text/plain"},"key":"with[]","value":"members"},{"disabled":true,"description":{"content":"<p>Include entity data</p>\n","type":"text/plain"},"key":"with[]","value":"entity_ids"},{"disabled":true,"description":{"content":"<p>Include data of related matters</p>\n","type":"text/plain"},"key":"with[]","value":"related_matters"},{"disabled":true,"description":{"content":"<p>Include settings data</p>\n","type":"text/plain"},"key":"with[]","value":"settings"}],"variable":[]}},"response":[{"id":"1aae48ca-3109-40f8-98ca-a3d201459a2b","name":"Read Matter","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/9b452858-3e20-47e0-b6fd-21652cfdcf5b?with[]=fields&with[]=parties","host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"path":["v1","matters","9b452858-3e20-47e0-b6fd-21652cfdcf5b"],"query":[{"key":"with[]","value":"fields","description":"Include fields data"},{"key":"with[]","value":"parties","description":"Include party data"},{"key":"with[]","value":"address","description":"Include address data","disabled":true},{"key":"with[]","value":"user","description":"Include user data","disabled":true},{"key":"with[]","value":"process","description":"Include process data","disabled":true},{"key":"with[]","value":"status","description":"Include status data","disabled":true},{"key":"with[]","value":"department","description":"Include department data","disabled":true},{"key":"with[]","value":"applicant","description":"Include applicant data","disabled":true},{"key":"with[]","value":"practitioner","description":"Include practitioner data","disabled":true},{"key":"with[]","value":"responsible_party","description":"Include responsible party data","disabled":true},{"key":"with[]","value":"retention_policy","description":"Include retention policy data","disabled":true},{"key":"with[]","value":"extension_policy","description":"Include extension policy data","disabled":true},{"key":"with[]","value":"policyable_state","description":"Include policy state data","disabled":true},{"key":"with[]","value":"tags","description":"Include tag data","disabled":true},{"key":"with[]","value":"transition","description":"Include transition data","disabled":true},{"key":"with[]","value":"deadline","description":"Include deadline data","disabled":true},{"key":"with[]","value":"deadline_next_status_at","description":"Include next status deadline data","disabled":true},{"key":"with[]","value":"roles","description":"Include roles data","disabled":true},{"key":"with[]","value":"tree","description":"Include tree data","disabled":true},{"key":"with[]","value":"tab","description":"Include tab data","disabled":true},{"key":"with[]","value":"activities","description":"Include activities data","disabled":true},{"key":"with[]","value":"members","description":"Include member data","disabled":true},{"key":"with[]","value":"entity_ids","description":"Include entity data","disabled":true},{"key":"with[]","value":"related_matters","description":"Include data of related matters","disabled":true},{"key":"with[]","value":"settings","description":"Include settings data","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:33:21 GMT","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n    \"name\": \"2024000001\",\n    \"type\": \"standard\",\n    \"created_at\": \"2024-02-06T09:55:19.000000Z\",\n    \"meta\": {\n        \"id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n        \"type\": \"matter\"\n    },\n    \"mozard suite_email\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b.matter.cases.mozard@mail.test.mozardsuite.nl\",\n    \"tree\": {\n        \"id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\"\n    },\n    \"fields\": [\n        {\n            \"id\": \"9b5f7d68-7a8b-4c4d-ad01-73917ff1f1f6\",\n            \"name\": \"Mozarders\",\n            \"human\": \"Joseph\",\n            \"value\": {\n                \"id\": \"9b3749c0-0bb5-4851-9947-71c2f3fd0b72\",\n                \"name\": \"Joseph\",\n                \"attributes\": [\n                    {\n                        \"Naam\": {\n                            \"id\": \"9abc46eb-cc54-4070-9885-0af22a16e4c5\",\n                            \"name\": \"Naam\",\n                            \"type\": \"text\",\n                            \"human\": \"Joseph\",\n                            \"value\": \"Joseph\"\n                        }\n                    },\n                    {\n                        \"Age\": {\n                            \"id\": \"9abc46f7-3f4a-4b4b-b4df-97e6b3b9069f\",\n                            \"name\": \"Age\",\n                            \"type\": \"number\",\n                            \"human\": \"31\",\n                            \"value\": \"31\"\n                        }\n                    },\n                    {\n                        \"Function\": {\n                            \"id\": \"9abc46fc-f401-4fbc-a513-38237c9d4bf3\",\n                            \"name\": \"Function\",\n                            \"type\": \"foreign\",\n                            \"human\": \"Backend\",\n                            \"value\": \"Backend\"\n                        }\n                    },\n                    {\n                        \"Image\": {\n                            \"id\": \"9b1eeb26-d05f-456c-ba68-6ac6e0c0420d\",\n                            \"name\": \"Image\",\n                            \"type\": \"file\",\n                            \"human\": \"http://mozard.mozard suite-accounts-api.test/storage/media/9b375689-e356-4d9c-9cc1-b77eb1a5ebbc/cat.jpeg\",\n                            \"value\": \"http://mozard.mozard suite-accounts-api.test/storage/media/9b375689-e356-4d9c-9cc1-b77eb1a5ebbc/cat.jpeg\"\n                        }\n                    }\n                ]\n            },\n            \"type\": \"custom_list\",\n            \"placeholder\": null,\n            \"description\": null,\n            \"is_pinned\": false,\n            \"is_pinned_process\": false,\n            \"is_disabled\": false,\n            \"is_editable\": true,\n            \"is_hidden\": false,\n            \"sort_order\": 127,\n            \"source\": \"9abc46eb-cabb-48da-bcd6-ae54fe4eced0\",\n            \"is_required\": false,\n            \"options\": null,\n            \"requirement\": null,\n            \"is_complete\": true,\n            \"group\": null\n        },\n        {\n            \"id\": \"9b613807-6bed-4a7f-acca-8c4857528a75\",\n            \"name\": \"Checkbox with default values\",\n            \"human\": \"1, 2, 3\",\n            \"value\": [\n                \"62036830-4a74-4457-ad5e-ce0c6d1a6933\",\n                \"b839840b-6e67-4fa4-bd64-a9adef70f0a7\",\n                \"e0ef3330-bf05-4909-b72b-46d4255f9e73\"\n            ],\n            \"type\": \"checkbox\",\n            \"placeholder\": null,\n            \"description\": null,\n            \"is_pinned\": false,\n            \"is_pinned_process\": false,\n            \"is_disabled\": false,\n            \"is_editable\": true,\n            \"is_hidden\": false,\n            \"sort_order\": 161,\n            \"source\": null,\n            \"is_required\": false,\n            \"options\": [\n                {\n                    \"id\": \"62036830-4a74-4457-ad5e-ce0c6d1a6933\",\n                    \"label\": \"1\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"id\": \"b839840b-6e67-4fa4-bd64-a9adef70f0a7\",\n                    \"label\": \"2\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"id\": \"e0ef3330-bf05-4909-b72b-46d4255f9e73\",\n                    \"label\": \"3\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"id\": \"ed55ac0c-316f-4809-ad8e-91a3a5ab1af3\",\n                    \"label\": \"4\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"id\": \"14fcee27-6a87-4718-b049-ec6491568baf\",\n                    \"label\": \"5\",\n                    \"value\": \"5\"\n                },\n                {\n                    \"id\": \"05efaf0d-0a6a-4b7d-af43-2b8b340dcca6\",\n                    \"label\": \"6\",\n                    \"value\": \"6\"\n                }\n            ],\n            \"requirement\": null,\n            \"is_complete\": true,\n            \"group\": {\n                \"id\": \"9b53a236-51fb-48c1-b04c-c32874d18665\",\n                \"name\": \"Metadata\",\n                \"description\": null,\n                \"type\": \"field\",\n                \"is_pinned\": false,\n                \"is_custom_list\": false,\n                \"is_custom_list_appendable\": false,\n                \"is_bag_object\": false,\n                \"sort_order\": 1,\n                \"created_at\": \"2024-02-13 15:37:40\"\n            }\n        },\n        {\n            \"id\": \"9b61382a-bb60-4f13-8a13-cef110254323\",\n            \"name\": \"Functies\",\n            \"human\": \"Backend\",\n            \"value\": {\n                \"id\": \"9abc46c9-f1b9-44c1-ab7f-1b278146b09b\",\n                \"name\": \"Backend\",\n                \"attributes\": [\n                    {\n                        \"Naam\": {\n                            \"id\": \"9abc466e-ec24-4812-a078-5adbce88737e\",\n                            \"name\": \"Naam\",\n                            \"type\": \"text\",\n                            \"human\": \"Backend\",\n                            \"value\": \"Backend\"\n                        }\n                    }\n                ]\n            },\n            \"type\": \"custom_list\",\n            \"placeholder\": null,\n            \"description\": null,\n            \"is_pinned\": false,\n            \"is_pinned_process\": false,\n            \"is_disabled\": false,\n            \"is_editable\": true,\n            \"is_hidden\": false,\n            \"sort_order\": 171,\n            \"source\": \"9abc466e-e37a-476e-a031-eb3dbf830ef5\",\n            \"is_required\": false,\n            \"options\": null,\n            \"requirement\": null,\n            \"is_complete\": true,\n            \"group\": {\n                \"id\": \"9b53a236-51fb-48c1-b04c-c32874d18665\",\n                \"name\": \"Metadata\",\n                \"description\": null,\n                \"type\": \"field\",\n                \"is_pinned\": false,\n                \"is_custom_list\": false,\n                \"is_custom_list_appendable\": false,\n                \"is_bag_object\": false,\n                \"sort_order\": 1,\n                \"created_at\": \"2024-02-13 15:37:40\"\n            }\n        }\n    ],\n    \"parties\": [\n        {\n            \"id\": \"9b539af8-f8c5-435b-820b-e46cba71d2f0\",\n            \"matter_id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n            \"entity_id\": null,\n            \"type\": \"user\",\n            \"name\": \"Joseph Budiarto\",\n            \"email\": \"j.budiarto@mozard.nl\",\n            \"phone\": null,\n            \"is_pinned\": false,\n            \"created_at\": \"2024-02-13T14:17:25.000000Z\",\n            \"updated_at\": \"2024-02-13T14:17:25.000000Z\",\n            \"role\": {\n                \"id\": \"8824dade-893c-4fe9-85c7-27a1f8e57222\",\n                \"name\": \"Behandelaar\",\n                \"functions\": [\n                    {\n                        \"id\": \"user\",\n                        \"name\": \"Gebruiker\"\n                    }\n                ],\n                \"is_editable\": false,\n                \"is_deletable\": false,\n                \"is_pinned\": true,\n                \"sort_order\": 1,\n                \"is_draggable\": false,\n                \"group\": null\n            },\n            \"meta\": {\n                \"id\": \"9b539af8-f8c5-435b-820b-e46cba71d2f0\",\n                \"type\": \"party\"\n            },\n            \"fields\": []\n        },\n        {\n            \"id\": \"9b7160ea-07b6-4c9d-8184-53765d525ced\",\n            \"matter_id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n            \"entity_id\": \"9b53a317-5c03-4f31-a087-c163bc7d014f\",\n            \"type\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n            \"name\": \"Mozard\",\n            \"email\": \"info@mozard.nl\",\n            \"phone\": \"0612345678\",\n            \"is_pinned\": false,\n            \"created_at\": \"2024-02-28T09:29:55.000000Z\",\n            \"updated_at\": \"2024-02-28T09:29:55.000000Z\",\n            \"role\": {\n                \"id\": \"9b53a1cd-4f49-42b6-a942-b928a1d63d53\",\n                \"name\": \"Company\",\n                \"functions\": [\n                    {\n                        \"id\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n                        \"name\": \"Bedrijf\"\n                    }\n                ],\n                \"is_editable\": true,\n                \"is_deletable\": true,\n                \"is_pinned\": false,\n                \"sort_order\": 9,\n                \"is_draggable\": true,\n                \"group\": null\n            },\n            \"meta\": {\n                \"id\": \"9b7160ea-07b6-4c9d-8184-53765d525ced\",\n                \"type\": \"party\"\n            },\n            \"fields\": []\n        },\n        {\n            \"id\": \"9b716103-86aa-4ce7-b6dc-7f3547eab9db\",\n            \"matter_id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n            \"entity_id\": \"9b213f7f-2c85-4701-b151-04c5758d7943\",\n            \"type\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n            \"name\": \"Joseph Budiarto\",\n            \"email\": null,\n            \"phone\": null,\n            \"is_pinned\": false,\n            \"created_at\": \"2024-02-28T09:30:12.000000Z\",\n            \"updated_at\": \"2024-02-28T09:30:12.000000Z\",\n            \"role\": {\n                \"id\": \"9b53a1ad-8d6e-4a1f-83ff-7f8031145de8\",\n                \"name\": \"Backenders\",\n                \"functions\": [\n                    {\n                        \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                        \"name\": \"Persoon\"\n                    }\n                ],\n                \"is_editable\": true,\n                \"is_deletable\": true,\n                \"is_pinned\": false,\n                \"sort_order\": 5,\n                \"is_draggable\": true,\n                \"group\": {\n                    \"id\": \"9b53a11f-92a9-4cc8-b248-d1a5e4be8ba9\",\n                    \"name\": \"Developers\",\n                    \"description\": null,\n                    \"type\": \"party\",\n                    \"is_pinned\": false,\n                    \"is_custom_list\": false,\n                    \"is_custom_list_appendable\": false,\n                    \"is_bag_object\": false,\n                    \"sort_order\": 1,\n                    \"created_at\": \"2024-02-13 15:34:37\",\n                    \"meta\": {\n                        \"id\": \"9b53a11f-92a9-4cc8-b248-d1a5e4be8ba9\",\n                        \"type\": \"process.template.group\"\n                    }\n                }\n            },\n            \"meta\": {\n                \"id\": \"9b716103-86aa-4ce7-b6dc-7f3547eab9db\",\n                \"type\": \"party\"\n            },\n            \"fields\": []\n        },\n        {\n            \"id\": \"9b71611a-b516-47b5-8a45-a91f169021f6\",\n            \"matter_id\": \"9b452858-3e20-47e0-b6fd-21652cfdcf5b\",\n            \"entity_id\": \"9b2140b8-d434-4781-a689-0ea0c4fdf3f5\",\n            \"type\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n            \"name\": \"Isabelle Smits\",\n            \"email\": \"i.smits@mozard.nl\",\n            \"phone\": null,\n            \"is_pinned\": false,\n            \"created_at\": \"2024-02-28T09:30:27.000000Z\",\n            \"updated_at\": \"2024-02-28T09:30:27.000000Z\",\n            \"role\": {\n                \"id\": \"f125c5dd-b530-4a46-a834-9a7a502d103d\",\n                \"name\": \"Aanvrager\",\n                \"functions\": [\n                    {\n                        \"id\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n                        \"name\": \"Bedrijf\"\n                    },\n                    {\n                        \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                        \"name\": \"Persoon\"\n                    }\n                ],\n                \"is_editable\": true,\n                \"is_deletable\": false,\n                \"is_pinned\": true,\n                \"sort_order\": 3,\n                \"is_draggable\": false,\n                \"group\": null\n            },\n            \"meta\": {\n                \"id\": \"9b71611a-b516-47b5-8a45-a91f169021f6\",\n                \"type\": \"party\"\n            },\n            \"fields\": []\n        }\n    ]\n}"}],"_postman_id":"9a37b0e8-d4b1-4e5d-80e9-38d6c7a373c1"},{"name":"Update matter","id":"e793f138-a1dc-4954-962c-60d692121830","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"2024000001","description":"<p>Matter name</p>\n","type":"text"},{"key":"type","value":"standard","description":"<p>standard, private</p>\n","type":"text"},{"key":"department","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Department UUID</p>\n","type":"text"},{"key":"process","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Process UUID</p>\n","type":"text"},{"key":"status[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Status UUID</p>\n","type":"text"},{"key":"fields[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Field UUID</p>\n","type":"text"},{"key":"fields[value]","value":"Beslissing niet eens","description":"<p>Text</p>\n","type":"text"},{"key":"responsible_party","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>User UUID, Department UUID</p>\n","type":"text"},{"key":"retention_policy[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Retention policy UUID</p>\n","type":"text"},{"key":"extension_policy[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Extension policy UUID</p>\n","type":"text"},{"key":"tags[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Tag UUID</p>\n","type":"text"},{"key":"members[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>User UUID</p>\n","type":"text"},{"key":"members[is_owner]","value":"true","description":"<p>true, false</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/99cd6ba8-1aa7-4f7c-949a-fdab262f4414","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","99cd6ba8-1aa7-4f7c-949a-fdab262f4414"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"e793f138-a1dc-4954-962c-60d692121830"},{"name":"Delete matter","id":"0dbb7722-5a5d-40c8-9576-a24afa1c4600","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/matters/99cd6ba8-1aa7-4f7c-949a-fdab262f4414","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","matters","99cd6ba8-1aa7-4f7c-949a-fdab262f4414"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"0dbb7722-5a5d-40c8-9576-a24afa1c4600"}],"id":"899a03b7-691d-4bdc-85a5-b4736c0be89f","_postman_id":"899a03b7-691d-4bdc-85a5-b4736c0be89f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Media","item":[{"name":"List Media","id":"fe9de422-a287-4959-b2b4-117c1ff4ed27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/media","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include target</p>\n","type":"text/plain"},"key":"with[]","value":"target"},{"disabled":true,"description":{"content":"<p>Include links</p>\n","type":"text/plain"},"key":"with[]","value":"links"},{"disabled":true,"description":{"content":"<p>Media UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Media UUID</p>\n","type":"text/plain"},"key":"filters[ids][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Search by file name</p>\n","type":"text/plain"},"key":"filters[search]","value":"contract"},{"disabled":true,"description":{"content":"<p>Text</p>\n","type":"text/plain"},"key":"filters[name]","value":"template"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[users][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>UUID</p>\n","type":"text/plain"},"key":"filters[target_id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matters][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>UUID</p>\n","type":"text/plain"},"key":"filters[target_ids][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[has_retention]","value":"true"},{"disabled":true,"description":{"content":"<p>Submission UUID</p>\n","type":"text/plain"},"key":"filters[created_from_submission]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Text</p>\n","type":"text/plain"},"key":"filters[collection]","value":"pdf"},{"disabled":true,"description":{"content":"<p>Text</p>\n","type":"text/plain"},"key":"filters[collections][]","value":"pdf"},{"disabled":true,"description":{"content":"<p>Include retention policy</p>\n","type":"text/plain"},"key":"with[]","value":"retention_policy"},{"disabled":true,"description":{"content":"<p>Include extension policy</p>\n","type":"text/plain"},"key":"with[]","value":"extension_policy"},{"disabled":true,"description":{"content":"<p>Include policy state</p>\n","type":"text/plain"},"key":"with[]","value":"policyable_state"},{"disabled":true,"description":{"content":"<p>Include group item</p>\n","type":"text/plain"},"key":"with[]","value":"item"},{"disabled":true,"description":{"content":"<p>Include transaction</p>\n","type":"text/plain"},"key":"with[]","value":"transaction"},{"disabled":true,"description":{"content":"<p>Include custom properties</p>\n","type":"text/plain"},"key":"with[]","value":"custom_properties"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"}],"variable":[]}},"response":[],"_postman_id":"fe9de422-a287-4959-b2b4-117c1ff4ed27"},{"name":"Fetch Media","id":"d57d5a8b-1801-4454-b39e-85919aa5b4d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/media/{{media_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media","{{media_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include links</p>\n","type":"text/plain"},"key":"with[]","value":"links"},{"disabled":true,"description":{"content":"<p>Include target</p>\n","type":"text/plain"},"key":"with[]","value":"target"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include custom properties</p>\n","type":"text/plain"},"key":"with[]","value":"custom_properties"},{"disabled":true,"description":{"content":"<p>Include retention policy</p>\n","type":"text/plain"},"key":"with[]","value":"retention_policy"},{"disabled":true,"description":{"content":"<p>Include extension policy</p>\n","type":"text/plain"},"key":"with[]","value":"extension_policy"},{"disabled":true,"description":{"content":"<p>Include policy state</p>\n","type":"text/plain"},"key":"with[]","value":"policyable_state"},{"disabled":true,"description":{"content":"<p>Include group item</p>\n","type":"text/plain"},"key":"with[]","value":"item"},{"disabled":true,"description":{"content":"<p>Include transaction</p>\n","type":"text/plain"},"key":"with[]","value":"transaction"}],"variable":[]}},"response":[],"_postman_id":"d57d5a8b-1801-4454-b39e-85919aa5b4d6"},{"name":"Create Media","event":[{"listen":"test","script":{"id":"0e1e8d53-a9b4-4ab6-ba65-ff163a8af4aa","exec":["var data = JSON.parse(responseBody);","","if (data.id) {","    postman.setEnvironmentVariable(\"media_id\", data.id);","}"],"type":"text/javascript","packages":{}}}],"id":"9661c5f6-1dde-48e7-9198-3df4d9aab8ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"target[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>UUID</p>\n","type":"text"},{"key":"target[type]","value":"matter","description":"<p>matter, matter.task, package</p>\n","type":"text","uuid":"18cbc76b-476e-4a7f-9892-81a3902c20ea"},{"key":"collection","value":"pdf","description":"<p>Text</p>\n","type":"text"},{"key":"file","description":"<p>File</p>\n","type":"file","value":null},{"key":"label","value":"Lorem ipsum","description":"<p>Text</p>\n","type":"text"},{"key":"files[]","description":"<p>File</p>\n","type":"file","value":null},{"key":"sort_order","value":"1","description":"<p>Number</p>\n","type":"text"},{"key":"retention_policy[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Policy UUID</p>\n","type":"text"},{"key":"extension_policy[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Policy UUID</p>\n","type":"text"},{"key":"group[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Group UUID</p>\n","type":"text","uuid":"f9261dda-5dc9-4c7c-8bb8-0cbb0532fc5b"},{"key":"item[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Group item UUID</p>\n","type":"text","uuid":"a6989656-a77e-4293-9544-e56240a1122c"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/media","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"key":"with[]","value":"links"}],"variable":[]}},"response":[],"_postman_id":"9661c5f6-1dde-48e7-9198-3df4d9aab8ee"},{"name":"Update Media","id":"e75fb213-84ca-4775-9453-ec5f99cbd499","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"target","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>DENIED, cant update after creation</p>\n","type":"text"},{"key":"collection","value":"pdf","description":"<p>Text</p>\n","type":"text"},{"key":"file","description":"<p>DENIED, cant update after creation</p>\n","type":"file","value":null},{"key":"label","value":"Lorem ipsum","description":"<p>Text</p>\n","type":"text"},{"key":"files[]","description":"<p>DENIED, cant update after creation</p>\n","type":"file","value":null},{"key":"sort_order","value":"1","description":"<p>Number</p>\n","type":"text"},{"key":"description","value":"Lorem ipsum","description":"<p>Text</p>\n","type":"text"},{"key":"show_in_report","value":"true","description":"<p>true, false</p>\n","type":"text"},{"key":"retention_policy[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Policy UUID</p>\n","type":"text"},{"key":"extension_policy[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Policy UUID</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/media/{{media_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media","{{media_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"e75fb213-84ca-4775-9453-ec5f99cbd499"},{"name":"Delete Media","id":"180ac484-b4ee-4e59-af12-25ca3c07499d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/media/{{media_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media","{{media_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"180ac484-b4ee-4e59-af12-25ca3c07499d"}],"id":"252ba2f6-851f-4cf4-864e-b00ebc05f2c3","_postman_id":"252ba2f6-851f-4cf4-864e-b00ebc05f2c3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Messages","item":[{"name":"List Messages","id":"555869a4-0d1b-444a-97a9-4c43ff6e38b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/messages?with[]=data","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","messages"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"key":"filters[target_type]","value":"matter"},{"disabled":true,"key":"filters[target_types][]","value":"matter"},{"disabled":true,"description":{"content":"<p>Either entity UUID, matter UUID, media UUID or Task UUID</p>\n","type":"text/plain"},"key":"filters[target]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3"},{"disabled":true,"description":{"content":"<p>Either entity UUID, matter UUID, media UUID or Task UUID</p>\n","type":"text/plain"},"key":"filters[targets][]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3"},{"disabled":true,"description":{"content":"<p>Message UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3"},{"disabled":true,"description":{"content":"<p>Message UUID</p>\n","type":"text/plain"},"key":"filters[ids][]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3"},{"disabled":true,"description":{"content":"<p>Search message body</p>\n","type":"text/plain"},"key":"filters[search]","value":"Matter has been created"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[author]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[authors][]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3"},{"disabled":true,"description":{"content":"<p>External id</p>\n","type":"text/plain"},"key":"filters[external]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3"},{"disabled":true,"description":{"content":"<p>External id</p>\n","type":"text/plain"},"key":"filters[externals][]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3"},{"disabled":true,"description":{"content":"<p>attribute, comment, notification, status, sync, json, applicant, email, contact_moment, process_type</p>\n","type":"text/plain"},"key":"filters[type]","value":"notification"},{"disabled":true,"description":{"content":"<p>attribute, comment, notification, status, sync, json, applicant, email, contact_moment, process_type</p>\n","type":"text/plain"},"key":"filters[types][]","value":"notification"},{"disabled":true,"description":{"content":"<p>matter, entity, media, task</p>\n","type":"text/plain"},"key":"filters[targetType]","value":"matter"},{"disabled":true,"description":{"content":"<p>matter, entity, media, task</p>\n","type":"text/plain"},"key":"filters[targetTypes][]","value":"matter"},{"disabled":true,"description":{"content":"<p>JJJJ-MM-DD</p>\n","type":"text/plain"},"key":"filters[created_at][from]","value":"2024-02-28"},{"disabled":true,"description":{"content":"<p>JJJJ-MM-DD</p>\n","type":"text/plain"},"key":"filters[created_at][to]","value":"2024-02-29"},{"disabled":true,"description":{"content":"<p>true/false</p>\n","type":"text/plain"},"key":"filters[is_deleted]","value":"true"},{"disabled":true,"description":{"content":"<p>Sort by created date</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by created date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include media</p>\n","type":"text/plain"},"key":"with[]","value":"media"},{"disabled":true,"description":{"content":"<p>Include matter (enabled by default)</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"description":{"content":"<p>Include data</p>\n","type":"text/plain"},"key":"with[]","value":"data"},{"disabled":true,"description":{"content":"<p>Include author (enabled by default)</p>\n","type":"text/plain"},"key":"with[]","value":"author"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include target (enabled by default)</p>\n","type":"text/plain"},"key":"with[]","value":"target"},{"disabled":true,"description":{"content":"<p>When this parameter is added, it will only return the following for the messages: id, type, is_deleted, created_at, updated_at.</p>\n<p>In addition, the only include (with[]) that works in combination with as_simple_data is the tags include.</p>\n","type":"text/plain"},"key":"as_simple_data","value":""}],"variable":[]}},"response":[{"id":"f5c9761d-1e74-4b71-b9b4-88c9be0d0698","name":"List Messages","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/messages?with[]=data","host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"path":["v1","messages"],"query":[{"key":"filters[target_type]","value":"matter","disabled":true},{"key":"filters[target_types][]","value":"matter","type":"text","disabled":true},{"key":"filters[target]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3","type":"text","description":"Either entity UUID, matter UUID, media UUID or Task UUID","disabled":true},{"key":"filters[targets][]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3","type":"text","description":"Either entity UUID, matter UUID, media UUID or Task UUID","disabled":true},{"key":"filters[id]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3","description":"Message UUID","type":"text","disabled":true},{"key":"filters[ids][]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3","description":"Message UUID","type":"text","disabled":true},{"key":"filters[search]","value":"Matter has been created","description":"Search message body","type":"text","disabled":true},{"key":"filters[author]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3","description":"User UUID","type":"text","disabled":true},{"key":"filters[authors][]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3","description":"User UUID","type":"text","disabled":true},{"key":"filters[external]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3","description":"External id","disabled":true},{"key":"filters[externals][]","value":"61e42ca8-4c60-4ce0-94d8-6a49c465c7a3","description":"External id","disabled":true},{"key":"filters[type]","value":"notification","description":"attribute, comment, notification, status, sync, json, applicant, email, contact_moment, process_type","disabled":true},{"key":"filters[types][]","value":"notification","description":"attribute, comment, notification, status, sync, json, applicant, email, contact_moment, process_type","disabled":true},{"key":"filters[targetType]","value":"matter","description":"matter, entity, media, task","type":"text","disabled":true},{"key":"filters[targetTypes][]","value":"matter","description":"matter, entity, media, task","disabled":true},{"key":"filters[created_at][from]","value":"2024-02-28","description":"JJJJ-MM-DD","disabled":true},{"key":"filters[created_at][to]","value":"2024-02-29","description":"JJJJ-MM-DD","disabled":true},{"key":"sort","value":"default","description":"Sort by created date","type":"text","disabled":true},{"key":"sort","value":"created_at","description":"Sort by created date","type":"text","disabled":true},{"key":"sort","value":"id","description":"Sort by UUID","type":"text","disabled":true},{"key":"sort","value":"updated_at","description":"Sort by update date","type":"text","disabled":true},{"key":"with[]","value":"media","description":"Include media","type":"text","disabled":true},{"key":"with[]","value":"matter","description":"Include matter (enabled by default)","type":"text","disabled":true},{"key":"with[]","value":"data","description":"Include data"},{"key":"with[]","value":"author","description":"Include author (enabled by default)","type":"text","disabled":true},{"key":"with[]","value":"target","description":"Include target (enabled by default)","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:48:16 GMT","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 24,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 2,\n    \"next_page_url\": \"http://mozard.mozard suite-cases-api.test/v1/messages?with%5B0%5D=data&page=2\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 15,\n    \"data\": [\n        {\n            \"id\": \"9b672d21-d162-4061-a2a0-89bbf7ce9daa\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-23T07:46:51.000000Z\",\n            \"updated_at\": \"2024-02-23T07:46:51.000000Z\",\n            \"meta\": {\n                \"id\": \"9b672d21-d162-4061-a2a0-89bbf7ce9daa\",\n                \"type\": \"message\"\n            },\n            \"author\": null,\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b672d21-c807-412d-a74f-f7afdec209b9\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b672d21-c807-412d-a74f-f7afdec209b9\",\n                    \"name\": \"2024000003\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b615773-441c-43a1-ba88-5314ec0260b8\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-20T10:10:13.000000Z\",\n            \"updated_at\": \"2024-02-20T10:10:13.000000Z\",\n            \"meta\": {\n                \"id\": \"9b615773-441c-43a1-ba88-5314ec0260b8\",\n                \"type\": \"message\"\n            },\n            \"author\": null,\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b615773-3494-4d48-9c8c-99ad09a5545a\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b615773-3494-4d48-9c8c-99ad09a5545a\",\n                    \"name\": \"2024000006\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b5f5069-ee01-415c-9626-a9c2316c9b66\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-19T09:58:53.000000Z\",\n            \"updated_at\": \"2024-02-19T09:58:53.000000Z\",\n            \"meta\": {\n                \"id\": \"9b5f5069-ee01-415c-9626-a9c2316c9b66\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b5f5069-e37e-4ea9-8dbc-d99c9dfeffd0\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b5f5069-e37e-4ea9-8dbc-d99c9dfeffd0\",\n                    \"name\": \"2024000005\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b5f5002-b8b3-4e1a-8165-9e85cf001e1e\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-19T09:57:45.000000Z\",\n            \"updated_at\": \"2024-02-19T09:57:45.000000Z\",\n            \"meta\": {\n                \"id\": \"9b5f5002-b8b3-4e1a-8165-9e85cf001e1e\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b5f5002-a3c9-4855-9462-bb3bd3906358\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b5f5002-a3c9-4855-9462-bb3bd3906358\",\n                    \"name\": \"2024000004\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b5918cc-cf6c-4d34-a689-846da9278d60\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-16T07:48:24.000000Z\",\n            \"updated_at\": \"2024-02-16T07:48:24.000000Z\",\n            \"meta\": {\n                \"id\": \"9b5918cc-cf6c-4d34-a689-846da9278d60\",\n                \"type\": \"message\"\n            },\n            \"author\": null,\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b5918cc-c044-4720-8a12-616e419146b2\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b5918cc-c044-4720-8a12-616e419146b2\",\n                    \"name\": \"2024000003\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b55ac20-8783-4c4c-8ff8-9bef83d83947\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T14:57:03.000000Z\",\n            \"updated_at\": \"2024-02-14T14:57:03.000000Z\",\n            \"meta\": {\n                \"id\": \"9b55ac20-8783-4c4c-8ff8-9bef83d83947\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b55ac20-7f62-424b-806a-ac41f27f5c5e\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b55ac20-7f62-424b-806a-ac41f27f5c5e\",\n                    \"name\": \"2024000013\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557c04-6939-4726-8925-15da3c1014e5\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:42:31.000000Z\",\n            \"updated_at\": \"2024-02-14T12:42:31.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557c04-6939-4726-8925-15da3c1014e5\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557c04-619e-494a-b7c9-41671bd337b7\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557c04-619e-494a-b7c9-41671bd337b7\",\n                    \"name\": \"2024000012\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557b9e-87f2-448e-b4ed-359c193effd7\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:41:25.000000Z\",\n            \"updated_at\": \"2024-02-14T12:41:25.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557b9e-87f2-448e-b4ed-359c193effd7\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557b9e-81e7-4638-b009-7f5507686cd6\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557b9e-81e7-4638-b009-7f5507686cd6\",\n                    \"name\": \"2024000011\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557b8f-197b-41e8-b8e5-1f76c1c34cbf\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:41:15.000000Z\",\n            \"updated_at\": \"2024-02-14T12:41:15.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557b8f-197b-41e8-b8e5-1f76c1c34cbf\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557b8f-1379-4201-81c4-443cc5c33059\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557b8f-1379-4201-81c4-443cc5c33059\",\n                    \"name\": \"2024000010\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557b7c-8a80-4b87-ac7c-432551e75067\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:41:02.000000Z\",\n            \"updated_at\": \"2024-02-14T12:41:02.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557b7c-8a80-4b87-ac7c-432551e75067\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557b7c-83b8-4570-8e1f-1025fe6bab5f\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557b7c-83b8-4570-8e1f-1025fe6bab5f\",\n                    \"name\": \"2024000009\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557b68-dc3f-4301-9c7b-0444cde0eb3b\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:40:49.000000Z\",\n            \"updated_at\": \"2024-02-14T12:40:49.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557b68-dc3f-4301-9c7b-0444cde0eb3b\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557b68-d3ea-40a9-8850-d29957f1e61d\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557b68-d3ea-40a9-8850-d29957f1e61d\",\n                    \"name\": \"2024000008\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557b53-41b0-4a05-bd16-fc46c3054ef7\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:40:35.000000Z\",\n            \"updated_at\": \"2024-02-14T12:40:35.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557b53-41b0-4a05-bd16-fc46c3054ef7\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557b53-3be2-4961-a97e-7dccd306678c\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557b53-3be2-4961-a97e-7dccd306678c\",\n                    \"name\": \"2024000007\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557b44-0268-47b3-be20-ae085fab22eb\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:40:25.000000Z\",\n            \"updated_at\": \"2024-02-14T12:40:25.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557b44-0268-47b3-be20-ae085fab22eb\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557b43-fbb5-4469-b640-5849061c209e\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557b43-fbb5-4469-b640-5849061c209e\",\n                    \"name\": \"2024000006\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557b08-0423-4d06-b72d-d2f5be9abd74\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:39:46.000000Z\",\n            \"updated_at\": \"2024-02-14T12:39:46.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557b08-0423-4d06-b72d-d2f5be9abd74\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557b07-fddc-456f-9644-190d93b80c3b\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557b07-fddc-456f-9644-190d93b80c3b\",\n                    \"name\": \"2024000005\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        },\n        {\n            \"id\": \"9b557991-ce81-4a83-9433-9baeb47aff6c\",\n            \"type\": \"status\",\n            \"body\": \"\",\n            \"tag\": null,\n            \"created_at\": \"2024-02-14T12:35:41.000000Z\",\n            \"updated_at\": \"2024-02-14T12:35:41.000000Z\",\n            \"meta\": {\n                \"id\": \"9b557991-ce81-4a83-9433-9baeb47aff6c\",\n                \"type\": \"message\"\n            },\n            \"author\": {\n                \"id\": \"00000000-0000-0000-0000-000000000000\",\n                \"email\": \"system@mozardsuite.nl\",\n                \"name\": \"Systeem\",\n                \"first_name\": \"Systeem\",\n                \"last_name\": \"\",\n                \"avatar\": \"https://www.gravatar.com/avatar/4b24a15c3472fffed14edd03615ff30c?d=identicon&s=128\"\n            },\n            \"matter\": null,\n            \"target\": {\n                \"id\": \"9b557991-c62e-47da-ba52-3c46557bd961\",\n                \"type\": \"matter\"\n            },\n            \"data\": {\n                \"matter\": {\n                    \"id\": \"9b557991-c62e-47da-ba52-3c46557bd961\",\n                    \"name\": \"2024000004\"\n                },\n                \"next_status\": {\n                    \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                    \"name\": \"Start\"\n                },\n                \"previous_status\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"555869a4-0d1b-444a-97a9-4c43ff6e38b1"},{"name":"Fetch Message","id":"d0e55511-8b00-40c0-90e8-e68c1f501a0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/messages/{{message_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","messages","{{message_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include media</p>\n","type":"text/plain"},"key":"with[]","value":"media"},{"disabled":true,"description":{"content":"<p>Include matter (enabled by default)</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include data</p>\n","type":"text/plain"},"key":"with[]","value":"data"},{"disabled":true,"description":{"content":"<p>Include author (enabled by default)</p>\n","type":"text/plain"},"key":"with[]","value":"author"},{"disabled":true,"description":{"content":"<p>Include target (enabled by default)</p>\n","type":"text/plain"},"key":"with[]","value":"target"}],"variable":[]}},"response":[],"_postman_id":"d0e55511-8b00-40c0-90e8-e68c1f501a0a"},{"name":"Create Message","event":[{"listen":"test","script":{"id":"ecb6b66c-458f-4598-886b-64fece34f41a","exec":["var data = JSON.parse(responseBody);","","if (data.id) {","    postman.setEnvironmentVariable(\"message_id\", data.id);","}"],"type":"text/javascript"}}],"id":"e3027c0b-c868-4a3b-be00-a7f1eab3e144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"target","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9","description":"<p>Matter UUID, User UUID, Entity UUID or Media UUID</p>\n","type":"text"},{"key":"type","value":"applicant","description":"<p>applicant, attribute, comment, notification, email, status, sync, json, contact_moment, process_type</p>\n","type":"text"},{"key":"body","value":"Matter has been created","description":"<p>Text</p>\n","type":"text"},{"key":"tag","value":"matter-creation","description":"<p>Text</p>\n","type":"text"},{"key":"media","description":"<p>File</p>\n","type":"file","value":null}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/messages","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","messages"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3027c0b-c868-4a3b-be00-a7f1eab3e144"}],"id":"de55cdd9-193e-49ee-8f85-97e2973d4fa7","_postman_id":"de55cdd9-193e-49ee-8f85-97e2973d4fa7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Processes","item":[{"name":"Groups","item":[{"name":"List groups","id":"4d900ff2-f7e3-4680-b456-868aaf1b3f0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes/groups","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","processes","groups"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>media, field, task, party, object</p>\n","type":"text/plain"},"key":"filters[type]","value":"field"},{"disabled":true,"description":{"content":"<p>media, field, task, party, object</p>\n","type":"text/plain"},"key":"filters[types]","value":"[field, task]"},{"disabled":true,"description":{"content":"<p>Process UUID</p>\n","type":"text/plain"},"key":"filters[process]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>array of Process UUID's</p>\n","type":"text/plain"},"key":"filters[processes]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[has_items]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_custom_list]","value":"true"},{"disabled":true,"description":{"content":"<p>Target UUID</p>\n","type":"text/plain"},"key":"filters[target]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>target UUID</p>\n","type":"text/plain"},"key":"filters[targets]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>Include process data</p>\n","type":"text/plain"},"key":"with[]","value":"process"},{"disabled":true,"description":{"content":"<p>Include custom list data</p>\n","type":"text/plain"},"key":"with[]","value":"custom_list"},{"disabled":true,"description":{"content":"<p>Include permissions data</p>\n","type":"text/plain"},"key":"with[]","value":"permissions"},{"disabled":true,"description":{"content":"<p>Include settings data</p>\n","type":"text/plain"},"key":"with[]","value":"settings"},{"disabled":true,"description":{"content":"<p>Include custom properties </p>\n","type":"text/plain"},"key":"with[]","value":"custom_properties"},{"disabled":true,"description":{"content":"<p>Include list column settings</p>\n","type":"text/plain"},"key":"with[]","value":"custom_list_column_settings"},{"disabled":true,"description":{"content":"<p>default sort</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"}],"variable":[]}},"response":[],"_postman_id":"4d900ff2-f7e3-4680-b456-868aaf1b3f0e"},{"name":"Read group","id":"f6b4f8ff-8e41-4e35-81be-96f0e73115b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes/groups/985f495c-b58c-4d49-a916-00be51203363","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","processes","groups","985f495c-b58c-4d49-a916-00be51203363"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include process data</p>\n","type":"text/plain"},"key":"with[]","value":"process"},{"disabled":true,"description":{"content":"<p>Include custom list data</p>\n","type":"text/plain"},"key":"with[]","value":"custom_list"},{"disabled":true,"description":{"content":"<p>Include permissions data</p>\n","type":"text/plain"},"key":"with[]","value":"permissions"},{"disabled":true,"description":{"content":"<p>Include settings data</p>\n","type":"text/plain"},"key":"with[]","value":"settings"},{"disabled":true,"description":{"content":"<p>Include custom properties</p>\n","type":"text/plain"},"key":"with[]","value":"custom_properties"},{"disabled":true,"description":{"content":"<p>Include list column settings</p>\n","type":"text/plain"},"key":"with[]","value":"custom_list_column_settings"}],"variable":[]}},"response":[],"_postman_id":"f6b4f8ff-8e41-4e35-81be-96f0e73115b3"}],"id":"943d4f42-c883-4997-a699-0732aef13674","_postman_id":"943d4f42-c883-4997-a699-0732aef13674","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Group items","item":[{"name":"List Group Items","id":"63437f10-272e-4848-bcef-945c91b01260","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes/group-items","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","processes","group-items"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Group item UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>Array of group item UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9876e06d-7f3a-492f-af5e-6da5729eaea9, 9876e06d-7f3a-492f-af5e-6da5729eaea8]"},{"disabled":true,"description":{"content":"<p>Group UUID</p>\n","type":"text/plain"},"key":"filters[group]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>Array of group UUID's</p>\n","type":"text/plain"},"key":"filters[groups]","value":"[9876e06d-7f3a-492f-af5e-6da5729eaea9, 9876e06d-7f3a-492f-af5e-6da5729eaea8]"},{"disabled":true,"description":{"content":"<p>Process UUID</p>\n","type":"text/plain"},"key":"filters[process]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>Array of process UUID's</p>\n","type":"text/plain"},"key":"filters[processes]","value":"[9876e06d-7f3a-492f-af5e-6da5729eaea9, 9876e06d-7f3a-492f-af5e-6da5729eaea8]"},{"disabled":true,"description":{"content":"<p>media, field, task, party, object</p>\n","type":"text/plain"},"key":"filters[type]","value":"media"},{"disabled":true,"description":{"content":"<p>media, field, task, party, object</p>\n","type":"text/plain"},"key":"filters[types]","value":"[media, task]"},{"disabled":true,"description":{"content":"<p>Search by name</p>\n","type":"text/plain"},"key":"filters[search]","value":"Design"},{"disabled":true,"description":{"content":"<p>Default sort</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by id</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by created time</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by updated time</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include group </p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Include default retention policy</p>\n","type":"text/plain"},"key":"with[]","value":"default_retention_policy"},{"disabled":true,"description":{"content":"<p>Include statuses of process</p>\n","type":"text/plain"},"key":"with[]","value":"process_statuses"},{"disabled":true,"description":{"content":"<p>Include custom properties</p>\n","type":"text/plain"},"key":"with[]","value":"custom_properties"}],"variable":[]}},"response":[],"_postman_id":"63437f10-272e-4848-bcef-945c91b01260"},{"name":"Read Group Item","id":"ef9a4720-7a77-4815-93ee-3feb1415275e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes/group-items/{{process_group_item_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","processes","group-items","{{process_group_item_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include group </p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Include default retention policy</p>\n","type":"text/plain"},"key":"with[]","value":"default_retention_policy"},{"disabled":true,"description":{"content":"<p>Include statuses of process</p>\n","type":"text/plain"},"key":"with[]","value":"process_statuses"},{"disabled":true,"description":{"content":"<p>Include custom properties</p>\n","type":"text/plain"},"key":"with[]","value":"custom_properties"}],"variable":[]}},"response":[],"_postman_id":"ef9a4720-7a77-4815-93ee-3feb1415275e"}],"id":"9871d471-6033-49af-92a6-0f042b603a77","_postman_id":"9871d471-6033-49af-92a6-0f042b603a77","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Roles","item":[{"name":"List Roles","id":"e24091cf-6e7a-4ac0-a4e0-d5d3edd0a293","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes/roles","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","processes","roles"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Process role UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>Array of process role UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9876e06d-7f3a-492f-af5e-6da5729eaea9, 9876e06d-7f3a-492f-af5e-6da5729eaea8]"},{"disabled":true,"description":{"content":"<p>Search by name</p>\n","type":"text/plain"},"key":"filters[search]","value":"Behandelaar"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>Array of matter UUID's</p>\n","type":"text/plain"},"key":"filters[matters]","value":"[9876e06d-7f3a-492f-af5e-6da5729eaea9, 9876e06d-7f3a-492f-af5e-6da5729eaea8]"},{"disabled":true,"description":{"content":"<p>Process UUID</p>\n","type":"text/plain"},"key":"filters[process]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>Array of process UUID's</p>\n","type":"text/plain"},"key":"filters[processes]","value":"[9876e06d-7f3a-492f-af5e-6da5729eaea9, 9876e06d-7f3a-492f-af5e-6da5729eaea8]"},{"disabled":true,"description":{"content":"<p>Function name</p>\n","type":"text/plain"},"key":"filters[function]","value":"User"},{"disabled":true,"description":{"content":"<p>Array of function names</p>\n","type":"text/plain"},"key":"filters[functions]","value":"[user, department]"},{"disabled":true,"description":{"content":"<p>Group UUID</p>\n","type":"text/plain"},"key":"filters[group]","value":"9876e06d-7f3a-492f-af5e-6da5729eaea9"},{"disabled":true,"description":{"content":"<p>Array of group UUID's</p>\n","type":"text/plain"},"key":"filters[groups]","value":"[9876e06d-7f3a-492f-af5e-6da5729eaea9, 9876e06d-7f3a-492f-af5e-6da5729eaea8]"},{"disabled":true,"description":{"content":"<p>Default sort</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by created date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by updated date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include parties</p>\n","type":"text/plain"},"key":"with[]","value":"parties"},{"disabled":true,"description":{"content":"<p>Include group</p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Include departments</p>\n","type":"text/plain"},"key":"with[]","value":"departments"},{"disabled":true,"description":{"content":"<p>Include process</p>\n","type":"text/plain"},"key":"with[]","value":"process"},{"disabled":true,"description":{"content":"<p>Include permissions</p>\n","type":"text/plain"},"key":"with[]","value":"permissions"},{"disabled":true,"description":{"content":"<p>Include requirements</p>\n","type":"text/plain"},"key":"with[]","value":"requirements"}],"variable":[]}},"response":[],"_postman_id":"e24091cf-6e7a-4ac0-a4e0-d5d3edd0a293"},{"name":"Read Role","id":"60705c2f-0248-4f83-b26d-f7cd3b2a6a4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes/roles/{{process_role_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","processes","roles","{{process_role_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include parties</p>\n","type":"text/plain"},"key":"with[]","value":"parties"},{"disabled":true,"description":{"content":"<p>Include group</p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Include departments</p>\n","type":"text/plain"},"key":"with[]","value":"departments"},{"disabled":true,"description":{"content":"<p>Include process</p>\n","type":"text/plain"},"key":"with[]","value":"process"},{"disabled":true,"description":{"content":"<p>Include permissions</p>\n","type":"text/plain"},"key":"with[]","value":"permissions"},{"disabled":true,"description":{"content":"<p>Include requirements</p>\n","type":"text/plain"},"key":"with[]","value":"requirements"}],"variable":[]}},"response":[],"_postman_id":"60705c2f-0248-4f83-b26d-f7cd3b2a6a4f"}],"id":"f6430093-eb3c-48ad-9191-079f5ecccd69","_postman_id":"f6430093-eb3c-48ad-9191-079f5ecccd69","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"List Processes","id":"f5037a8f-5714-4b35-81ae-05e2567fdad1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes?filters[type]=matter&with[]=map","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","processes"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"description":{"content":"<p>Proccess type (matter or package)</p>\n","type":"text/plain"},"key":"filters[type]","value":"matter"},{"disabled":true,"description":{"content":"<p>Process UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Process UUID</p>\n","type":"text/plain"},"key":"filters[ids]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Search by name</p>\n","type":"text/plain"},"key":"filters[search]","value":"Process name"},{"disabled":true,"description":{"content":"<p>text</p>\n","type":"text/plain"},"key":"filters[name]","value":"Process name"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[has_statuses]","value":"true"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by max duration</p>\n","type":"text/plain"},"key":"sort","value":"max_duration"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Include statuses data</p>\n","type":"text/plain"},"key":"with[]","value":"statuses"},{"description":{"content":"<p>Include map data</p>\n","type":"text/plain"},"key":"with[]","value":"map"},{"disabled":true,"description":{"content":"<p>Include retention policy data</p>\n","type":"text/plain"},"key":"with[]","value":"default_retention_policy"},{"disabled":true,"description":{"content":"<p>Include sharepoint site data</p>\n","type":"text/plain"},"key":"with[]","value":"sharepoint_site"},{"disabled":true,"description":{"content":"<p>Include default status data</p>\n","type":"text/plain"},"key":"with[]","value":"default"},{"disabled":true,"description":{"content":"<p>Include roles data</p>\n","type":"text/plain"},"key":"with[]","value":"roles"},{"disabled":true,"description":{"content":"<p>Include settings data</p>\n","type":"text/plain"},"key":"with[]","value":"settings"},{"disabled":true,"description":{"content":"<p>Include groups data</p>\n","type":"text/plain"},"key":"with[]","value":"groups"},{"disabled":true,"description":{"content":"<p>Include group items data</p>\n","type":"text/plain"},"key":"with[]","value":"group_items"},{"disabled":true,"description":{"content":"<p>Include group media items data</p>\n","type":"text/plain"},"key":"with[]","value":"group_media_items"},{"disabled":true,"description":{"content":"<p>Include group object items</p>\n","type":"text/plain"},"key":"with[]","value":"group_matter_object_items"}],"variable":[]}},"response":[{"id":"be704605-d185-45ec-8710-b5e5004e896a","name":"List Processes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes?with[]=map","host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"path":["v1","processes"],"query":[{"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","type":"text","description":"Process UUID","disabled":true},{"key":"filters[ids]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","type":"text","description":"Process UUID","disabled":true},{"key":"filters[search]","value":"Process name","type":"text","description":"Search by name","disabled":true},{"key":"filters[name]","value":"Process name","type":"text","description":"text","disabled":true},{"key":"filters[has_statuses]","value":"true","description":"true, false","type":"text","disabled":true},{"key":"sort","value":"default","description":"Sort by name","type":"text","disabled":true},{"key":"sort","value":"max_duration","description":"Sort by max duration","type":"text","disabled":true},{"key":"sort","value":"name","description":"Sort by name","type":"text","disabled":true},{"key":"with[]","value":"statuses","description":"Include statuses data","type":"text","disabled":true},{"key":"with[]","value":"map","description":"Include map data"},{"key":"with[]","value":"default_retention_policy","description":"Include retention policy data","type":"text","disabled":true},{"key":"with[]","value":"sharepoint_site","description":"Include sharepoint site data","type":"text","disabled":true},{"key":"with[]","value":"default","description":"Include default status data","type":"text","disabled":true},{"key":"with[]","value":"roles","description":"Include roles data","type":"text","disabled":true},{"key":"with[]","value":"settings","description":"Include settings data","type":"text","disabled":true},{"key":"with[]","value":"groups","description":"Include groups data","type":"text","disabled":true},{"key":"with[]","value":"group_items","description":"Include group items data","type":"text","disabled":true},{"key":"with[]","value":"group_media_items","description":"Include group media items data","type":"text","disabled":true},{"key":"with[]","value":"group_matter_object_items","description":"Include group object items","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:45:37 GMT","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n            \"name\": \"Forms integration\",\n            \"description\": \"\",\n            \"icon\": \"mdi-dmozard suite\",\n            \"max_duration\": 0,\n            \"is_template\": false,\n            \"created_at\": \"2024-02-06T09:30:09.000000Z\",\n            \"meta\": {\n                \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n                \"type\": \"process\",\n                \"statuses_count\": null\n            },\n            \"map\": {\n                \"bpmn\": \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n<bpmn:definitions xmlns:xsi=\\\"http://www.w3.org/2001/XMLSchema-instance\\\" xmlns:bpmn=\\\"http://www.omg.org/spec/BPMN/20100524/MODEL\\\" xmlns:bpmndi=\\\"http://www.omg.org/spec/BPMN/20100524/DI\\\" xmlns:dc=\\\"http://www.omg.org/spec/DD/20100524/DC\\\" xmlns:bioc=\\\"http://bpmn.io/schema/bpmn/biocolor/1.0\\\" xmlns:color=\\\"http://www.omg.org/spec/BPMN/non-normative/color/1.0\\\" xmlns:di=\\\"http://www.omg.org/spec/DD/20100524/DI\\\" id=\\\"Definitions_1\\\" targetNamespace=\\\"http://bpmn.io/schema/bpmn\\\" exporter=\\\"cases (https://cases.mozardsuite.nl)\\\" exporterVersion=\\\"v1.0.0\\\"><bpmn:process id=\\\"Process_1\\\" isExecutable=\\\"false\\\"><bpmn:task id=\\\"Activity_1fo2e5q\\\" name=\\\"Start\\\" status_id=\\\"9b451f67-2286-4bb0-ba19-c63ba7df32ea\\\" original_name=\\\"Start\\\"><bpmn:outgoing>Flow_032a6n3</bpmn:outgoing></bpmn:task><bpmn:task id=\\\"Activity_1h29oa3\\\" name=\\\"first\\\" status_id=\\\"9b451f71-4521-4fa8-a435-016ece013d66\\\" original_name=\\\"first\\\"><bpmn:incoming>Flow_032a6n3</bpmn:incoming><bpmn:outgoing>Flow_1vg5t3f</bpmn:outgoing></bpmn:task><bpmn:task id=\\\"Activity_0i1cutg\\\" name=\\\"second\\\" status_id=\\\"9b451f7a-264a-45e3-a442-d71f37e10cb3\\\" original_name=\\\"second\\\"><bpmn:incoming>Flow_1vg5t3f</bpmn:incoming><bpmn:outgoing>Flow_18pnv9d</bpmn:outgoing></bpmn:task><bpmn:task id=\\\"Activity_0fwwaru\\\" name=\\\"end\\\" status_id=\\\"9b451f7f-cda6-4664-b8c8-0adc41942346\\\" original_name=\\\"end\\\"><bpmn:incoming>Flow_18pnv9d</bpmn:incoming></bpmn:task><bpmn:sequenceFlow id=\\\"Flow_032a6n3\\\" sourceRef=\\\"Activity_1fo2e5q\\\" targetRef=\\\"Activity_1h29oa3\\\" connection_id=\\\"9b451f8d-5dfe-43a2-b2a4-e368c57fd177\\\"/><bpmn:sequenceFlow id=\\\"Flow_1vg5t3f\\\" sourceRef=\\\"Activity_1h29oa3\\\" targetRef=\\\"Activity_0i1cutg\\\" connection_id=\\\"9b451f90-4e85-4ba5-8b8d-0dd006bcc46f\\\"/><bpmn:sequenceFlow id=\\\"Flow_18pnv9d\\\" sourceRef=\\\"Activity_0i1cutg\\\" targetRef=\\\"Activity_0fwwaru\\\" connection_id=\\\"9b451f94-5f59-4910-8669-89fbbb72c1d2\\\"/></bpmn:process><bpmndi:BPMNDiagram id=\\\"BPMNDiagram_1\\\"><bpmndi:BPMNPlane id=\\\"BPMNPlane_1\\\" bpmnElement=\\\"Process_1\\\"><bpmndi:BPMNShape id=\\\"Activity_1fo2e5q_di\\\" bpmnElement=\\\"Activity_1fo2e5q\\\" bioc:stroke=\\\"#BF10AE\\\" bioc:fill=\\\"#BF10AE\\\" color:background-color=\\\"#BF10AE\\\" color:border-color=\\\"#BF10AE\\\"><dc:Bounds x=\\\"150\\\" y=\\\"150\\\" width=\\\"100\\\" height=\\\"80\\\"/><bpmndi:BPMNLabel/></bpmndi:BPMNShape><bpmndi:BPMNShape id=\\\"Activity_1h29oa3_di\\\" bpmnElement=\\\"Activity_1h29oa3\\\" bioc:stroke=\\\"#F4C761\\\" bioc:fill=\\\"#F4C761\\\" color:background-color=\\\"#F4C761\\\" color:border-color=\\\"#F4C761\\\"><dc:Bounds x=\\\"300\\\" y=\\\"150\\\" width=\\\"100\\\" height=\\\"80\\\"/><bpmndi:BPMNLabel/></bpmndi:BPMNShape><bpmndi:BPMNShape id=\\\"Activity_0i1cutg_di\\\" bpmnElement=\\\"Activity_0i1cutg\\\" bioc:stroke=\\\"#C31BB7\\\" bioc:fill=\\\"#C31BB7\\\" color:background-color=\\\"#C31BB7\\\" color:border-color=\\\"#C31BB7\\\"><dc:Bounds x=\\\"460\\\" y=\\\"150\\\" width=\\\"100\\\" height=\\\"80\\\"/><bpmndi:BPMNLabel/></bpmndi:BPMNShape><bpmndi:BPMNShape id=\\\"Activity_0fwwaru_di\\\" bpmnElement=\\\"Activity_0fwwaru\\\" bioc:stroke=\\\"#A723DE\\\" bioc:fill=\\\"#A723DE\\\" color:background-color=\\\"#A723DE\\\" color:border-color=\\\"#A723DE\\\"><dc:Bounds x=\\\"610\\\" y=\\\"150\\\" width=\\\"100\\\" height=\\\"80\\\"/><bpmndi:BPMNLabel/></bpmndi:BPMNShape><bpmndi:BPMNEdge id=\\\"Flow_032a6n3_di\\\" bpmnElement=\\\"Flow_032a6n3\\\"><di:waypoint x=\\\"250\\\" y=\\\"190\\\"/><di:waypoint x=\\\"300\\\" y=\\\"190\\\"/></bpmndi:BPMNEdge><bpmndi:BPMNEdge id=\\\"Flow_1vg5t3f_di\\\" bpmnElement=\\\"Flow_1vg5t3f\\\"><di:waypoint x=\\\"400\\\" y=\\\"190\\\"/><di:waypoint x=\\\"460\\\" y=\\\"190\\\"/></bpmndi:BPMNEdge><bpmndi:BPMNEdge id=\\\"Flow_18pnv9d_di\\\" bpmnElement=\\\"Flow_18pnv9d\\\"><di:waypoint x=\\\"560\\\" y=\\\"190\\\"/><di:waypoint x=\\\"610\\\" y=\\\"190\\\"/></bpmndi:BPMNEdge></bpmndi:BPMNPlane></bpmndi:BPMNDiagram></bpmn:definitions>\",\n                \"created_at\": \"2024-02-06T09:30:19.000000Z\",\n                \"updated_at\": \"2024-02-06T09:31:16.000000Z\",\n                \"meta\": {\n                    \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n                    \"type\": \"process.map\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"f5037a8f-5714-4b35-81ae-05e2567fdad1"},{"name":"Read Process","id":"e06513fa-8de9-45e9-a79c-620e0602fa2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes/{{process_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","processes","{{process_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include statuses data</p>\n","type":"text/plain"},"key":"with[]","value":"statuses"},{"disabled":true,"description":{"content":"<p>Include map data</p>\n","type":"text/plain"},"key":"with[]","value":"map"},{"disabled":true,"description":{"content":"<p>Include retention policy data</p>\n","type":"text/plain"},"key":"with[]","value":"default_retention_policy"},{"disabled":true,"description":{"content":"<p>Include sharepoint site data</p>\n","type":"text/plain"},"key":"with[]","value":"sharepoint_site"},{"disabled":true,"description":{"content":"<p>Include default status data</p>\n","type":"text/plain"},"key":"with[]","value":"default"},{"disabled":true,"description":{"content":"<p>Include roles data</p>\n","type":"text/plain"},"key":"with[]","value":"roles"},{"disabled":true,"description":{"content":"<p>Include settings data</p>\n","type":"text/plain"},"key":"with[]","value":"settings"},{"disabled":true,"description":{"content":"<p>Include groups data</p>\n","type":"text/plain"},"key":"with[]","value":"groups"},{"disabled":true,"description":{"content":"<p>Include group items data</p>\n","type":"text/plain"},"key":"with[]","value":"group_items"},{"disabled":true,"description":{"content":"<p>Include group media items data</p>\n","type":"text/plain"},"key":"with[]","value":"group_media_items"},{"disabled":true,"description":{"content":"<p>Include group object items</p>\n","type":"text/plain"},"key":"with[]","value":"group_matter_object_items"}],"variable":[]}},"response":[{"id":"16cf6f1a-ad46-4851-903c-e8b623c03386","name":"Read Process","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/processes/9b451f58-db09-4f69-bb55-8c420056ea34?with[]=statuses&with[]=map&with[]=roles&with[]=groups&with[]=group_items","host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"path":["v1","processes","9b451f58-db09-4f69-bb55-8c420056ea34"],"query":[{"key":"with[]","value":"statuses","description":"Include statuses data","type":"text"},{"key":"with[]","value":"map","description":"Include map data","type":"text"},{"key":"with[]","value":"default_retention_policy","description":"Include retention policy data","type":"text","disabled":true},{"key":"with[]","value":"sharepoint_site","description":"Include sharepoint site data","type":"text","disabled":true},{"key":"with[]","value":"default","description":"Include default status data","type":"text","disabled":true},{"key":"with[]","value":"roles","description":"Include roles data","type":"text"},{"key":"with[]","value":"settings","description":"Include settings data","disabled":true},{"key":"with[]","value":"groups","description":"Include groups data"},{"key":"with[]","value":"group_items","description":"Include group items data"},{"key":"with[]","value":"group_media_items","description":"Include group media items data","disabled":true},{"key":"with[]","value":"group_matter_object_items","description":"Include group object items","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:46:53 GMT","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n    \"name\": \"Forms integration\",\n    \"description\": \"\",\n    \"icon\": \"mdi-dmozard suite\",\n    \"max_duration\": 0,\n    \"is_template\": false,\n    \"created_at\": \"2024-02-06T09:30:09.000000Z\",\n    \"meta\": {\n        \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n        \"type\": \"process\",\n        \"statuses_count\": null\n    },\n    \"statuses\": [\n        {\n            \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n            \"name\": \"Start\",\n            \"name_external\": \"Start\",\n            \"color\": \"#BF10AE\",\n            \"description\": null,\n            \"duration\": 1,\n            \"is_default\": true,\n            \"is_final\": false,\n            \"is_plannable\": false,\n            \"is_paused\": false,\n            \"has_statusables\": false,\n            \"created_at\": \"2024-02-06T09:30:19.000000Z\",\n            \"pivot\": null,\n            \"meta\": {\n                \"id\": \"9b451f67-2286-4bb0-ba19-c63ba7df32ea\",\n                \"type\": \"process.status\",\n                \"incoming_count\": null,\n                \"outgoing_count\": null\n            }\n        },\n        {\n            \"id\": \"9b451f71-4521-4fa8-a435-016ece013d66\",\n            \"name\": \"first\",\n            \"name_external\": \"first\",\n            \"color\": \"#F4C761\",\n            \"description\": null,\n            \"duration\": 1,\n            \"is_default\": false,\n            \"is_final\": false,\n            \"is_plannable\": false,\n            \"is_paused\": false,\n            \"has_statusables\": false,\n            \"created_at\": \"2024-02-06T09:30:25.000000Z\",\n            \"pivot\": null,\n            \"meta\": {\n                \"id\": \"9b451f71-4521-4fa8-a435-016ece013d66\",\n                \"type\": \"process.status\",\n                \"incoming_count\": null,\n                \"outgoing_count\": null\n            }\n        },\n        {\n            \"id\": \"9b451f7a-264a-45e3-a442-d71f37e10cb3\",\n            \"name\": \"second\",\n            \"name_external\": \"second\",\n            \"color\": \"#C31BB7\",\n            \"description\": null,\n            \"duration\": null,\n            \"is_default\": false,\n            \"is_final\": false,\n            \"is_plannable\": false,\n            \"is_paused\": false,\n            \"has_statusables\": false,\n            \"created_at\": \"2024-02-06T09:30:31.000000Z\",\n            \"pivot\": null,\n            \"meta\": {\n                \"id\": \"9b451f7a-264a-45e3-a442-d71f37e10cb3\",\n                \"type\": \"process.status\",\n                \"incoming_count\": null,\n                \"outgoing_count\": null\n            }\n        },\n        {\n            \"id\": \"9b451f7f-cda6-4664-b8c8-0adc41942346\",\n            \"name\": \"end\",\n            \"name_external\": \"end\",\n            \"color\": \"#A723DE\",\n            \"description\": null,\n            \"duration\": null,\n            \"is_default\": false,\n            \"is_final\": true,\n            \"is_plannable\": false,\n            \"is_paused\": false,\n            \"has_statusables\": false,\n            \"created_at\": \"2024-02-06T09:30:35.000000Z\",\n            \"pivot\": null,\n            \"meta\": {\n                \"id\": \"9b451f7f-cda6-4664-b8c8-0adc41942346\",\n                \"type\": \"process.status\",\n                \"incoming_count\": null,\n                \"outgoing_count\": null\n            }\n        }\n    ],\n    \"map\": {\n        \"bpmn\": \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n<bpmn:definitions xmlns:xsi=\\\"http://www.w3.org/2001/XMLSchema-instance\\\" xmlns:bpmn=\\\"http://www.omg.org/spec/BPMN/20100524/MODEL\\\" xmlns:bpmndi=\\\"http://www.omg.org/spec/BPMN/20100524/DI\\\" xmlns:dc=\\\"http://www.omg.org/spec/DD/20100524/DC\\\" xmlns:bioc=\\\"http://bpmn.io/schema/bpmn/biocolor/1.0\\\" xmlns:color=\\\"http://www.omg.org/spec/BPMN/non-normative/color/1.0\\\" xmlns:di=\\\"http://www.omg.org/spec/DD/20100524/DI\\\" id=\\\"Definitions_1\\\" targetNamespace=\\\"http://bpmn.io/schema/bpmn\\\" exporter=\\\"cases (https://cases.mozardsuite.nl)\\\" exporterVersion=\\\"v1.0.0\\\"><bpmn:process id=\\\"Process_1\\\" isExecutable=\\\"false\\\"><bpmn:task id=\\\"Activity_1fo2e5q\\\" name=\\\"Start\\\" status_id=\\\"9b451f67-2286-4bb0-ba19-c63ba7df32ea\\\" original_name=\\\"Start\\\"><bpmn:outgoing>Flow_032a6n3</bpmn:outgoing></bpmn:task><bpmn:task id=\\\"Activity_1h29oa3\\\" name=\\\"first\\\" status_id=\\\"9b451f71-4521-4fa8-a435-016ece013d66\\\" original_name=\\\"first\\\"><bpmn:incoming>Flow_032a6n3</bpmn:incoming><bpmn:outgoing>Flow_1vg5t3f</bpmn:outgoing></bpmn:task><bpmn:task id=\\\"Activity_0i1cutg\\\" name=\\\"second\\\" status_id=\\\"9b451f7a-264a-45e3-a442-d71f37e10cb3\\\" original_name=\\\"second\\\"><bpmn:incoming>Flow_1vg5t3f</bpmn:incoming><bpmn:outgoing>Flow_18pnv9d</bpmn:outgoing></bpmn:task><bpmn:task id=\\\"Activity_0fwwaru\\\" name=\\\"end\\\" status_id=\\\"9b451f7f-cda6-4664-b8c8-0adc41942346\\\" original_name=\\\"end\\\"><bpmn:incoming>Flow_18pnv9d</bpmn:incoming></bpmn:task><bpmn:sequenceFlow id=\\\"Flow_032a6n3\\\" sourceRef=\\\"Activity_1fo2e5q\\\" targetRef=\\\"Activity_1h29oa3\\\" connection_id=\\\"9b451f8d-5dfe-43a2-b2a4-e368c57fd177\\\"/><bpmn:sequenceFlow id=\\\"Flow_1vg5t3f\\\" sourceRef=\\\"Activity_1h29oa3\\\" targetRef=\\\"Activity_0i1cutg\\\" connection_id=\\\"9b451f90-4e85-4ba5-8b8d-0dd006bcc46f\\\"/><bpmn:sequenceFlow id=\\\"Flow_18pnv9d\\\" sourceRef=\\\"Activity_0i1cutg\\\" targetRef=\\\"Activity_0fwwaru\\\" connection_id=\\\"9b451f94-5f59-4910-8669-89fbbb72c1d2\\\"/></bpmn:process><bpmndi:BPMNDiagram id=\\\"BPMNDiagram_1\\\"><bpmndi:BPMNPlane id=\\\"BPMNPlane_1\\\" bpmnElement=\\\"Process_1\\\"><bpmndi:BPMNShape id=\\\"Activity_1fo2e5q_di\\\" bpmnElement=\\\"Activity_1fo2e5q\\\" bioc:stroke=\\\"#BF10AE\\\" bioc:fill=\\\"#BF10AE\\\" color:background-color=\\\"#BF10AE\\\" color:border-color=\\\"#BF10AE\\\"><dc:Bounds x=\\\"150\\\" y=\\\"150\\\" width=\\\"100\\\" height=\\\"80\\\"/><bpmndi:BPMNLabel/></bpmndi:BPMNShape><bpmndi:BPMNShape id=\\\"Activity_1h29oa3_di\\\" bpmnElement=\\\"Activity_1h29oa3\\\" bioc:stroke=\\\"#F4C761\\\" bioc:fill=\\\"#F4C761\\\" color:background-color=\\\"#F4C761\\\" color:border-color=\\\"#F4C761\\\"><dc:Bounds x=\\\"300\\\" y=\\\"150\\\" width=\\\"100\\\" height=\\\"80\\\"/><bpmndi:BPMNLabel/></bpmndi:BPMNShape><bpmndi:BPMNShape id=\\\"Activity_0i1cutg_di\\\" bpmnElement=\\\"Activity_0i1cutg\\\" bioc:stroke=\\\"#C31BB7\\\" bioc:fill=\\\"#C31BB7\\\" color:background-color=\\\"#C31BB7\\\" color:border-color=\\\"#C31BB7\\\"><dc:Bounds x=\\\"460\\\" y=\\\"150\\\" width=\\\"100\\\" height=\\\"80\\\"/><bpmndi:BPMNLabel/></bpmndi:BPMNShape><bpmndi:BPMNShape id=\\\"Activity_0fwwaru_di\\\" bpmnElement=\\\"Activity_0fwwaru\\\" bioc:stroke=\\\"#A723DE\\\" bioc:fill=\\\"#A723DE\\\" color:background-color=\\\"#A723DE\\\" color:border-color=\\\"#A723DE\\\"><dc:Bounds x=\\\"610\\\" y=\\\"150\\\" width=\\\"100\\\" height=\\\"80\\\"/><bpmndi:BPMNLabel/></bpmndi:BPMNShape><bpmndi:BPMNEdge id=\\\"Flow_032a6n3_di\\\" bpmnElement=\\\"Flow_032a6n3\\\"><di:waypoint x=\\\"250\\\" y=\\\"190\\\"/><di:waypoint x=\\\"300\\\" y=\\\"190\\\"/></bpmndi:BPMNEdge><bpmndi:BPMNEdge id=\\\"Flow_1vg5t3f_di\\\" bpmnElement=\\\"Flow_1vg5t3f\\\"><di:waypoint x=\\\"400\\\" y=\\\"190\\\"/><di:waypoint x=\\\"460\\\" y=\\\"190\\\"/></bpmndi:BPMNEdge><bpmndi:BPMNEdge id=\\\"Flow_18pnv9d_di\\\" bpmnElement=\\\"Flow_18pnv9d\\\"><di:waypoint x=\\\"560\\\" y=\\\"190\\\"/><di:waypoint x=\\\"610\\\" y=\\\"190\\\"/></bpmndi:BPMNEdge></bpmndi:BPMNPlane></bpmndi:BPMNDiagram></bpmn:definitions>\",\n        \"created_at\": \"2024-02-06T09:30:19.000000Z\",\n        \"updated_at\": \"2024-02-06T09:31:16.000000Z\",\n        \"meta\": {\n            \"id\": \"9b451f58-db09-4f69-bb55-8c420056ea34\",\n            \"type\": \"process.map\"\n        }\n    },\n    \"roles\": [\n        {\n            \"id\": \"9b456763-c658-4341-8757-3cda35b926d9\",\n            \"name\": \"Role\",\n            \"functions\": [\n                {\n                    \"id\": \"department\",\n                    \"name\": \"Gebruikersgroep\"\n                }\n            ],\n            \"is_editable\": true,\n            \"is_deletable\": true,\n            \"is_pinned\": false,\n            \"sort_order\": 5,\n            \"is_draggable\": true,\n            \"group\": null\n        },\n        {\n            \"id\": \"9b53a1ad-8d6e-4a1f-83ff-7f8031145de8\",\n            \"name\": \"Backenders\",\n            \"functions\": [\n                {\n                    \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                    \"name\": \"Persoon\"\n                }\n            ],\n            \"is_editable\": true,\n            \"is_deletable\": true,\n            \"is_pinned\": false,\n            \"sort_order\": 1,\n            \"is_draggable\": true,\n            \"group\": {\n                \"id\": \"9b53a11f-92a9-4cc8-b248-d1a5e4be8ba9\",\n                \"name\": \"Developers\",\n                \"description\": null,\n                \"type\": \"party\",\n                \"is_pinned\": false,\n                \"is_custom_list\": false,\n                \"is_custom_list_appendable\": false,\n                \"is_bag_object\": false,\n                \"sort_order\": 1,\n                \"created_at\": \"2024-02-13 15:34:37\",\n                \"meta\": {\n                    \"id\": \"9b53a11f-92a9-4cc8-b248-d1a5e4be8ba9\",\n                    \"type\": \"process.template.group\"\n                }\n            }\n        },\n        {\n            \"id\": \"9b53a1cd-4f49-42b6-a942-b928a1d63d53\",\n            \"name\": \"Company\",\n            \"functions\": [\n                {\n                    \"id\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n                    \"name\": \"Bedrijf\"\n                },\n                {\n                    \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                    \"name\": \"Persoon\"\n                }\n            ],\n            \"is_editable\": true,\n            \"is_deletable\": true,\n            \"is_pinned\": false,\n            \"sort_order\": 1,\n            \"is_draggable\": true,\n            \"group\": {\n                \"id\": \"9b53a1bd-9742-48e5-9119-8d3fcb752974\",\n                \"name\": \"Top DOG\",\n                \"description\": null,\n                \"type\": \"party\",\n                \"is_pinned\": false,\n                \"is_custom_list\": false,\n                \"is_custom_list_appendable\": false,\n                \"is_bag_object\": false,\n                \"sort_order\": 3,\n                \"created_at\": \"2024-02-13 15:36:21\",\n                \"meta\": {\n                    \"id\": \"9b53a1bd-9742-48e5-9119-8d3fcb752974\",\n                    \"type\": \"process.template.group\"\n                }\n            }\n        }\n    ],\n    \"groups\": [\n        {\n            \"id\": \"9b452617-e4b6-40a6-8206-43fe8313c1da\",\n            \"name\": \"Rivm\",\n            \"description\": null,\n            \"type\": \"media\",\n            \"is_pinned\": false,\n            \"is_custom_list\": false,\n            \"is_custom_list_appendable\": false,\n            \"is_bag_object\": false,\n            \"sort_order\": 1,\n            \"created_at\": \"2024-02-06 10:49:01\",\n            \"meta\": {\n                \"id\": \"9b452617-e4b6-40a6-8206-43fe8313c1da\",\n                \"type\": \"process.template.group\"\n            }\n        },\n        {\n            \"id\": \"9b476480-faea-43bd-a613-9a77115b070a\",\n            \"name\": \"Datalijst\",\n            \"description\": null,\n            \"type\": \"object\",\n            \"is_pinned\": false,\n            \"is_custom_list\": true,\n            \"is_custom_list_appendable\": false,\n            \"is_bag_object\": false,\n            \"sort_order\": 1,\n            \"created_at\": \"2024-02-07 13:35:11\",\n            \"meta\": {\n                \"id\": \"9b476480-faea-43bd-a613-9a77115b070a\",\n                \"type\": \"process.template.group\"\n            }\n        },\n        {\n            \"id\": \"9b53a11f-92a9-4cc8-b248-d1a5e4be8ba9\",\n            \"name\": \"Developers\",\n            \"description\": null,\n            \"type\": \"party\",\n            \"is_pinned\": false,\n            \"is_custom_list\": false,\n            \"is_custom_list_appendable\": false,\n            \"is_bag_object\": false,\n            \"sort_order\": 1,\n            \"created_at\": \"2024-02-13 15:34:37\",\n            \"meta\": {\n                \"id\": \"9b53a11f-92a9-4cc8-b248-d1a5e4be8ba9\",\n                \"type\": \"process.template.group\"\n            }\n        },\n        {\n            \"id\": \"9b53a236-51fb-48c1-b04c-c32874d18665\",\n            \"name\": \"Metadata\",\n            \"description\": null,\n            \"type\": \"field\",\n            \"is_pinned\": false,\n            \"is_custom_list\": false,\n            \"is_custom_list_appendable\": false,\n            \"is_bag_object\": false,\n            \"sort_order\": 1,\n            \"created_at\": \"2024-02-13 15:37:40\",\n            \"meta\": {\n                \"id\": \"9b53a236-51fb-48c1-b04c-c32874d18665\",\n                \"type\": \"process.template.group\"\n            }\n        },\n        {\n            \"id\": \"9b53a1bd-9742-48e5-9119-8d3fcb752974\",\n            \"name\": \"Top DOG\",\n            \"description\": null,\n            \"type\": \"party\",\n            \"is_pinned\": false,\n            \"is_custom_list\": false,\n            \"is_custom_list_appendable\": false,\n            \"is_bag_object\": false,\n            \"sort_order\": 3,\n            \"created_at\": \"2024-02-13 15:36:21\",\n            \"meta\": {\n                \"id\": \"9b53a1bd-9742-48e5-9119-8d3fcb752974\",\n                \"type\": \"process.template.group\"\n            }\n        }\n    ],\n    \"group_items\": [\n        {\n            \"id\": \"9b476496-001e-43d5-86cb-a026ee8b0827\",\n            \"name\": \"Backender\",\n            \"is_pinned\": false,\n            \"is_required\": false,\n            \"is_party_restricted\": false,\n            \"is_draggable\": true,\n            \"is_mozard suite_forms\": false,\n            \"is_custom_list\": true,\n            \"is_bag_object\": false,\n            \"description\": null,\n            \"created_at\": \"2024-02-07T12:35:25.000000Z\",\n            \"group\": {\n                \"id\": \"9b476480-faea-43bd-a613-9a77115b070a\",\n                \"name\": \"Datalijst\",\n                \"description\": null,\n                \"type\": \"object\",\n                \"is_pinned\": false,\n                \"is_custom_list\": true,\n                \"is_custom_list_appendable\": false,\n                \"is_bag_object\": false,\n                \"sort_order\": 1,\n                \"created_at\": \"2024-02-07 13:35:11\",\n                \"meta\": {\n                    \"id\": \"9b476480-faea-43bd-a613-9a77115b070a\",\n                    \"type\": \"process.template.group\"\n                }\n            }\n        },\n        {\n            \"id\": \"9b659179-5e1d-41f8-81f1-0b523c2b0b01\",\n            \"name\": \"should use case/process policy\",\n            \"is_pinned\": false,\n            \"is_required\": false,\n            \"is_party_restricted\": false,\n            \"is_draggable\": true,\n            \"is_mozard suite_forms\": false,\n            \"is_custom_list\": false,\n            \"is_bag_object\": false,\n            \"description\": null,\n            \"created_at\": \"2024-02-22T12:35:46.000000Z\",\n            \"group\": {\n                \"id\": \"9b452617-e4b6-40a6-8206-43fe8313c1da\",\n                \"name\": \"Rivm\",\n                \"description\": null,\n                \"type\": \"media\",\n                \"is_pinned\": false,\n                \"is_custom_list\": false,\n                \"is_custom_list_appendable\": false,\n                \"is_bag_object\": false,\n                \"sort_order\": 1,\n                \"created_at\": \"2024-02-06 10:49:01\",\n                \"meta\": {\n                    \"id\": \"9b452617-e4b6-40a6-8206-43fe8313c1da\",\n                    \"type\": \"process.template.group\"\n                }\n            }\n        },\n        {\n            \"id\": \"9b65918a-5bb4-4cf0-982d-c18b81129ea8\",\n            \"name\": \"should use item policy\",\n            \"is_pinned\": false,\n            \"is_required\": false,\n            \"is_party_restricted\": false,\n            \"is_draggable\": true,\n            \"is_mozard suite_forms\": false,\n            \"is_custom_list\": false,\n            \"is_bag_object\": false,\n            \"description\": null,\n            \"created_at\": \"2024-02-22T12:35:57.000000Z\",\n            \"group\": {\n                \"id\": \"9b452617-e4b6-40a6-8206-43fe8313c1da\",\n                \"name\": \"Rivm\",\n                \"description\": null,\n                \"type\": \"media\",\n                \"is_pinned\": false,\n                \"is_custom_list\": false,\n                \"is_custom_list_appendable\": false,\n                \"is_bag_object\": false,\n                \"sort_order\": 1,\n                \"created_at\": \"2024-02-06 10:49:01\",\n                \"meta\": {\n                    \"id\": \"9b452617-e4b6-40a6-8206-43fe8313c1da\",\n                    \"type\": \"process.template.group\"\n                }\n            }\n        },\n        {\n            \"id\": \"9b6591a4-071a-4df7-9679-cd57b81ebd9b\",\n            \"name\": \"use from template or fallback\",\n            \"is_pinned\": false,\n            \"is_required\": false,\n            \"is_party_restricted\": false,\n            \"is_draggable\": true,\n            \"is_mozard suite_forms\": false,\n            \"is_custom_list\": false,\n            \"is_bag_object\": false,\n            \"description\": null,\n            \"created_at\": \"2024-02-22T12:36:14.000000Z\",\n            \"group\": {\n                \"id\": \"9b452617-e4b6-40a6-8206-43fe8313c1da\",\n                \"name\": \"Rivm\",\n                \"description\": null,\n                \"type\": \"media\",\n                \"is_pinned\": false,\n                \"is_custom_list\": false,\n                \"is_custom_list_appendable\": false,\n                \"is_bag_object\": false,\n                \"sort_order\": 1,\n                \"created_at\": \"2024-02-06 10:49:01\",\n                \"meta\": {\n                    \"id\": \"9b452617-e4b6-40a6-8206-43fe8313c1da\",\n                    \"type\": \"process.template.group\"\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"e06513fa-8de9-45e9-a79c-620e0602fa2d"}],"id":"e3e3a1e1-eb71-41ef-af2b-673b580dc25c","_postman_id":"e3e3a1e1-eb71-41ef-af2b-673b580dc25c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Roles","item":[{"name":"List Roles","id":"209fad97-5620-4108-9b85-523202f7c3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/roles","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","roles"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"209fad97-5620-4108-9b85-523202f7c3fa"}],"id":"26495b82-5f65-4257-8b96-3a2243ae4611","_postman_id":"26495b82-5f65-4257-8b96-3a2243ae4611","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Parties","item":[{"name":"List Parties","id":"79bed4a0-519f-494a-97e7-59d0c688ecff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/parties","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","parties"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Party UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Party UUID</p>\n","type":"text/plain"},"key":"filters[id][]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matters][]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[entity]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[entities][]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Group UUID</p>\n","type":"text/plain"},"key":"filters[group]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Group UUID</p>\n","type":"text/plain"},"key":"filters[groups][]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Role UUID</p>\n","type":"text/plain"},"key":"filters[role]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Role UUID</p>\n","type":"text/plain"},"key":"filters[roles][]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>company, person, user, departmnet, entity_group</p>\n","type":"text/plain"},"key":"filters[type]","value":"company"},{"disabled":true,"description":{"content":"<p>company, person, user, departmnet, entity_group</p>\n","type":"text/plain"},"key":"filters[types][]","value":"company"},{"disabled":true,"description":{"content":"<p>Search by name</p>\n","type":"text/plain"},"key":"filters[search]","value":"John Doe"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[hasEmail]","value":"true"},{"disabled":true,"description":{"content":"<p>Sort by UUID</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include department</p>\n","type":"text/plain"},"key":"with[]","value":"department"},{"disabled":true,"description":{"content":"<p>Include entity type</p>\n","type":"text/plain"},"key":"with[]","value":"entity_type"},{"disabled":true,"description":{"content":"<p>Include fields</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include address</p>\n","type":"text/plain"},"key":"with[]","value":"address"},{"disabled":true,"description":{"content":"<p>Include role (included by default)</p>\n","type":"text/plain"},"key":"with[]","value":"role"}],"variable":[]}},"response":[],"_postman_id":"79bed4a0-519f-494a-97e7-59d0c688ecff"},{"name":"Read Party","id":"b712735c-cfe0-4378-bd6b-22b44f6e9940","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/parties/{{party_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","parties","{{party_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include department</p>\n","type":"text/plain"},"key":"with[]","value":"department"},{"disabled":true,"description":{"content":"<p>Include entity type</p>\n","type":"text/plain"},"key":"with[]","value":"entity_type"},{"disabled":true,"description":{"content":"<p>Include fields</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include address</p>\n","type":"text/plain"},"key":"with[]","value":"address"},{"disabled":true,"description":{"content":"<p>Include role (included by default)</p>\n","type":"text/plain"},"key":"with[]","value":"role"}],"variable":[]}},"response":[],"_postman_id":"b712735c-cfe0-4378-bd6b-22b44f6e9940"},{"name":"Create Party","id":"96d40ebc-b7c3-469b-9999-8107b6fe3670","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"role[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Role UUID</p>\n","type":"text"},{"key":"matter[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Matter UUID</p>\n","type":"text"},{"key":"user[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>User UUID</p>\n","type":"text"},{"key":"department[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Department UUID</p>\n","type":"text"},{"key":"external","value":"","description":"<p>Text</p>\n","type":"text"},{"key":"name","value":"John Doe","description":"<p>Text</p>\n","type":"text"},{"key":"email","value":"john.doe@example.com","description":"<p>Text</p>\n","type":"text"},{"key":"phone","value":"0612345678","description":"<p>Text</p>\n","type":"text"},{"key":"entity[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Entity UUID</p>\n","type":"text"},{"key":"entity[type][id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Entity type UUID</p>\n","type":"text"},{"key":"entity[name]","value":"John Doe","description":"<p>Text</p>\n","type":"text"},{"key":"entity[email]","value":"john.doe@example.com","description":"<p>Email</p>\n","type":"text"},{"key":"entity[phone]","value":"0612345678","description":"<p>Text</p>\n","type":"text"},{"key":"entity[fields][id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Field UUID</p>\n","type":"text"},{"key":"entity[fields][value]","value":"Lorem ipsum","description":"<p>Text</p>\n","type":"text"},{"key":"entity[address][post_code]","value":"1101 BE","description":"<p>Text</p>\n","type":"text"},{"key":"entity[address][number]","value":"56R","description":"<p>Text</p>\n","type":"text"},{"key":"entity[address][street]","value":"Hoogoorddreef","description":"<p>Text</p>\n","type":"text"},{"key":"entity[address][city]","value":"Amsterdam","description":"<p>Text</p>\n","type":"text"},{"key":"values[name]","value":"Name","description":"<p>Text</p>\n","type":"text"},{"key":"values[value]","value":"John Doe","description":"<p>Text</p>\n","type":"text"},{"key":"fields[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f","description":"<p>Field UUID</p>\n","type":"text"},{"key":"fields[value]","value":"Lorem Ipsum","description":"<p>Text</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/parties","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","parties"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"96d40ebc-b7c3-469b-9999-8107b6fe3670"},{"name":"Delete Party","id":"71318e3a-1e82-44d4-8d30-dfa028c92b4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/entities/{{party_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entities","{{party_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"71318e3a-1e82-44d4-8d30-dfa028c92b4a"}],"id":"e5df2b89-6c8f-4331-85ec-ce4a94ccf3d7","_postman_id":"e5df2b89-6c8f-4331-85ec-ce4a94ccf3d7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Audits","item":[{"name":"List Audits","id":"cc00f564-8fe7-4841-8389-dde2ecd6d001","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/audits","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","audits"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Audit ID</p>\n","type":"text/plain"},"key":"filters[id]","value":"1"},{"disabled":true,"description":{"content":"<p>Audit ID</p>\n","type":"text/plain"},"key":"filters[ids][]","value":"1"},{"disabled":true,"description":{"content":"<p>auditable model</p>\n","type":"text/plain"},"key":"filters[model_type]","value":"matter"},{"disabled":true,"description":{"content":"<p>created, deleted, updated, retrieved</p>\n","type":"text/plain"},"key":"filters[event]","value":"created"},{"disabled":true,"description":{"content":"<p>created, deleted, updated, retrieved</p>\n","type":"text/plain"},"key":"filters[events][]","value":"created"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_console]","value":"true"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[users][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matters][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Role slug</p>\n","type":"text/plain"},"key":"filters[role]","value":"admin"},{"disabled":true,"description":{"content":"<p>Role slug</p>\n","type":"text/plain"},"key":"filters[roles][]","value":"admin"},{"disabled":true,"description":{"content":"<p>JJJJ-MM-DD HH:MM</p>\n","type":"text/plain"},"key":"filters[created_before]","value":"2024-02-28 00:00"},{"disabled":true,"description":{"content":"<p>JJJJ-MM-DD HH:MM</p>\n","type":"text/plain"},"key":"filters[created_after]","value":"2024-02-28 00:00"},{"disabled":true,"description":{"content":"<p>Project UUID</p>\n","type":"text/plain"},"key":"filters[project]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Project UUID</p>\n","type":"text/plain"},"key":"filters[projects][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created"},{"disabled":true,"description":{"content":"<p>Include values</p>\n","type":"text/plain"},"key":"with[]","value":"values"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include model</p>\n","type":"text/plain"},"key":"with[]","value":"model"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"}],"variable":[]}},"response":[],"_postman_id":"cc00f564-8fe7-4841-8389-dde2ecd6d001"},{"name":"Read Audit","id":"df1c6500-5982-4f66-ab51-d12e5827cec9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/audits/{{audit_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","audits","{{audit_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include values</p>\n","type":"text/plain"},"key":"with[]","value":"values"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include model</p>\n","type":"text/plain"},"key":"with[]","value":"model"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"}],"variable":[]}},"response":[],"_postman_id":"df1c6500-5982-4f66-ab51-d12e5827cec9"}],"id":"f5b1ae3b-41b0-4802-b560-bee6f24bfa8c","_postman_id":"f5b1ae3b-41b0-4802-b560-bee6f24bfa8c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Projects","item":[{"name":"List Projects","id":"c6140069-9e88-4776-a4f1-35072fdd396a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/projects","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","projects"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Project UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Project UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Search by project name</p>\n","type":"text/plain"},"key":"filters[search]","value":"My project"},{"disabled":true,"description":{"content":"<p>Process UUID</p>\n","type":"text/plain"},"key":"filters[process]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Process UUID's</p>\n","type":"text/plain"},"key":"filters[processes]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Arrray of User UUID's</p>\n","type":"text/plain"},"key":"filters[users]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Matter UUID's</p>\n","type":"text/plain"},"key":"filters[matters]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>JJJJ-MM-DD HH:MM</p>\n","type":"text/plain"},"key":"filters[period][starts_at]","value":"2024-02-28 00:00"},{"disabled":true,"description":{"content":"<p>JJJJ-MM-DD HH:MM</p>\n","type":"text/plain"},"key":"filters[period][ends_at]","value":"2024-02-28 00:00"},{"disabled":true,"description":{"content":"<p>Sort by default (UUID)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by start date</p>\n","type":"text/plain"},"key":"sort","value":"starts_at"},{"disabled":true,"description":{"content":"<p>Sort by end date</p>\n","type":"text/plain"},"key":"sort","value":"ends_at"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include process</p>\n","type":"text/plain"},"key":"with[]","value":"process"},{"disabled":true,"description":{"content":"<p>Include matters</p>\n","type":"text/plain"},"key":"with[]","value":"matters"}],"variable":[]}},"response":[],"_postman_id":"c6140069-9e88-4776-a4f1-35072fdd396a"},{"name":"Read Project","id":"cd4d527b-11b1-44b4-8853-41fd8c722f2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/projects/{{project_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","projects","{{project_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include process</p>\n","type":"text/plain"},"key":"with[]","value":"process"},{"disabled":true,"description":{"content":"<p>Include matters</p>\n","type":"text/plain"},"key":"with[]","value":"matters"}],"variable":[]}},"response":[],"_postman_id":"cd4d527b-11b1-44b4-8853-41fd8c722f2f"},{"name":"Delete Project","id":"a01203f8-f76c-43fd-b455-44e20d2350fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/projects/{{project_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","projects","{{project_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"a01203f8-f76c-43fd-b455-44e20d2350fa"},{"name":"Create Project","id":"5ab5ae30-96b3-40a4-9d53-dd465cd89cd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"My project","description":"<p>Text (required)</p>\n","type":"text"},{"key":"starts_at","value":"2024-2-27 00:00","description":"<p>Y-m-d H:i:s (required)</p>\n","type":"text"},{"key":"ends_at","value":"2024-2-27 00:00","description":"<p>Y-m-d H:i:s (required)</p>\n","type":"text"},{"key":"process[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Process UUID (required)</p>\n","type":"text"},{"key":"user[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>User UUID</p>\n","type":"text"},{"key":"matters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Matter UUID</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/projects","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","projects"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ab5ae30-96b3-40a4-9d53-dd465cd89cd5"},{"name":"Update Project","id":"728cc86e-6848-4cfc-9945-90694ef014ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"My project","description":"<p>Text</p>\n","type":"text"},{"key":"starts_at","value":"2024-2-27 00:00","description":"<p>Y-m-d H:i:s </p>\n","type":"text"},{"key":"ends_at","value":"2024-2-27 00:00","description":"<p>Y-m-d H:i:s </p>\n","type":"text"},{"key":"process[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Process UUID </p>\n","type":"text"},{"key":"user[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>User UUID</p>\n","type":"text"},{"key":"matters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Matter UUID</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/projects/{{project_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","projects","{{project_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"728cc86e-6848-4cfc-9945-90694ef014ad"}],"id":"627d3507-8dce-47c0-8d1e-641574b3b595","_postman_id":"627d3507-8dce-47c0-8d1e-641574b3b595","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Records","item":[{"name":"List Records","id":"f2cdbc5c-f7c4-4749-ac4a-fe508738893d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/records","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","records"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Record UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Record UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Tag UUID</p>\n","type":"text/plain"},"key":"filters[tag]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Tag UUID's</p>\n","type":"text/plain"},"key":"filters[tags]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_deleted]","value":"true"},{"disabled":true,"description":{"content":"<p>Policy UUID</p>\n","type":"text/plain"},"key":"filters[retention_policy]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Policy UUID's</p>\n","type":"text/plain"},"key":"filters[retention_policies]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Policy UUID</p>\n","type":"text/plain"},"key":"filters[extension_policy]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Policy UUID's</p>\n","type":"text/plain"},"key":"filters[extension_policies]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_deleted]","value":"true"},{"disabled":true,"description":{"content":"<p>Y-m-d H:i:s</p>\n","type":"text/plain"},"key":"filters[expires_at]","value":"2024-02-28 00:00:00"},{"disabled":true,"description":{"content":"<p>Sort by default (UUID)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include retention policy</p>\n","type":"text/plain"},"key":"with[]","value":"retention_policy"},{"disabled":true,"description":{"content":"<p>Include extension policy</p>\n","type":"text/plain"},"key":"with[]","value":"extension_policy"},{"disabled":true,"description":{"content":"<p>Include policyable state</p>\n","type":"text/plain"},"key":"with[]","value":"policyable_state"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include file</p>\n","type":"text/plain"},"key":"with[]","value":"file"},{"disabled":true,"description":{"content":"<p>Include email</p>\n","type":"text/plain"},"key":"with[]","value":"email"}],"variable":[]}},"response":[],"_postman_id":"f2cdbc5c-f7c4-4749-ac4a-fe508738893d"},{"name":"Read Record","id":"f556557f-ded7-4f36-926b-79a71f23f73f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/records/{{record_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","records","{{record_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include retention policy</p>\n","type":"text/plain"},"key":"with[]","value":"retention_policy"},{"disabled":true,"description":{"content":"<p>Include extension policy</p>\n","type":"text/plain"},"key":"with[]","value":"extension_policy"},{"disabled":true,"description":{"content":"<p>Include policyable state</p>\n","type":"text/plain"},"key":"with[]","value":"policyable_state"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include file</p>\n","type":"text/plain"},"key":"with[]","value":"file"},{"disabled":true,"description":{"content":"<p>Include email</p>\n","type":"text/plain"},"key":"with[]","value":"email"}],"variable":[]}},"response":[],"_postman_id":"f556557f-ded7-4f36-926b-79a71f23f73f"},{"name":"Delete Record","id":"fe77afe9-313c-4881-a929-aacf8a1f2e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/records/{{record_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","records","{{record_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe77afe9-313c-4881-a929-aacf8a1f2e7d"},{"name":"Create Record","id":"9ca2dafc-3fad-4db6-b9c0-7592dcd3656e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"My record","description":"<p>Text</p>\n","type":"text"},{"key":"retention_policy[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Policy UUID</p>\n","type":"text"},{"key":"extension_policy[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Policy UUID</p>\n","type":"text"},{"key":"tags[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Tag UUID</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/records","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","records"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ca2dafc-3fad-4db6-b9c0-7592dcd3656e"}],"id":"d13ca944-8bb9-4992-8a95-8010ba320517","_postman_id":"d13ca944-8bb9-4992-8a95-8010ba320517","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Knowledge","item":[{"name":"Folder","item":[{"name":"List Folders","id":"b5fa1a2e-e999-4b02-8fee-ff997d1e71da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/folders","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","folders"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Folder UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of Folder UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Search by folder title</p>\n","type":"text/plain"},"key":"filters[search]","value":"My folder"},{"disabled":true,"description":{"content":"<p>library, changelist, article</p>\n","type":"text/plain"},"key":"filters[type]","value":"library"},{"disabled":true,"description":{"content":"<p>Parent folder UUID</p>\n","type":"text/plain"},"key":"filters[parent]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of parent folder UUID's</p>\n","type":"text/plain"},"key":"filters[parents]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Sort by default (sort_order)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by sort_order</p>\n","type":"text/plain"},"key":"sort","value":"sort_order"},{"disabled":true,"description":{"content":"<p>Sort by title</p>\n","type":"text/plain"},"key":"sort","value":"title"},{"disabled":true,"description":{"content":"<p>Include parent</p>\n","type":"text/plain"},"key":"with[]","value":"parent"},{"disabled":true,"description":{"content":"<p>Include folders</p>\n","type":"text/plain"},"key":"with[]","value":"folders"},{"disabled":true,"description":{"content":"<p>Include articles</p>\n","type":"text/plain"},"key":"with[]","value":"articles"},{"disabled":true,"description":{"content":"<p>Include child folders</p>\n","type":"text/plain"},"key":"with[]","value":"children"}],"variable":[]}},"response":[],"_postman_id":"b5fa1a2e-e999-4b02-8fee-ff997d1e71da"},{"name":"Read Folder","id":"37d497b6-9583-46fa-b120-aac93217ae23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/folders/{{folder_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","folders","{{folder_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include parent</p>\n","type":"text/plain"},"key":"with[]","value":"parent"},{"disabled":true,"description":{"content":"<p>Include folders</p>\n","type":"text/plain"},"key":"with[]","value":"folders"},{"disabled":true,"description":{"content":"<p>Include articles</p>\n","type":"text/plain"},"key":"with[]","value":"articles"},{"disabled":true,"description":{"content":"<p>Include child folders</p>\n","type":"text/plain"},"key":"with[]","value":"children"}],"variable":[]}},"response":[],"_postman_id":"37d497b6-9583-46fa-b120-aac93217ae23"},{"name":"Delete Folder","id":"2bfe4738-b9f2-420f-a6aa-b03642bbad5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/folders/{{folder_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","folders","{{folder_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"2bfe4738-b9f2-420f-a6aa-b03642bbad5b"},{"name":"Create Folder","id":"f21e696d-2f5a-4332-bde9-5b660f213ded","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"My folder","description":"<p>Text (required)</p>\n","type":"text"},{"key":"type","value":"article","description":"<p>article, library, changelist (required)</p>\n","type":"text"},{"key":"parents[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Parent folder UUID</p>\n","type":"text"},{"key":"sort_order","value":"1","description":"<p>Number</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/folders","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","folders"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"f21e696d-2f5a-4332-bde9-5b660f213ded"},{"name":"Update Folder","id":"b333a866-d3b0-48ea-9013-58398a086668","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"My folder","description":"<p>Text</p>\n","type":"text"},{"key":"type","value":"article","description":"<p>article, library, changelist </p>\n","type":"text"},{"key":"parents[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Parent folder UUID</p>\n","type":"text"},{"key":"sort_order","value":"1","description":"<p>Number</p>\n","type":"text"},{"key":"sorting[position]","value":"first","description":"<p>first, last, after</p>\n","type":"text"},{"key":"sorting[rel_id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Folder or article UUID</p>\n","type":"text"},{"key":"sorting[rel_model]","value":"folder","description":"<p>folder or article</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/folders/{{folder_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","folders","{{folder_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"b333a866-d3b0-48ea-9013-58398a086668"}],"id":"b20fa9c1-2a82-4635-9cbe-ce9e4cfea971","_postman_id":"b20fa9c1-2a82-4635-9cbe-ce9e4cfea971","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Article","item":[{"name":"List Articles","id":"b97ec179-1b62-411d-9ee4-046c37cd90fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/articles","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","articles"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Article UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9"},{"disabled":true,"description":{"content":"<p>Array of article UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9, 9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f8]"},{"disabled":true,"description":{"content":"<p>Search by article title</p>\n","type":"text/plain"},"key":"filters[search]","value":"My article"},{"disabled":true,"description":{"content":"<p>draft, released</p>\n","type":"text/plain"},"key":"filters[status]","value":"draft"},{"disabled":true,"description":{"content":"<p>draft, released</p>\n","type":"text/plain"},"key":"filters[statuses]","value":"[draft, released]"},{"disabled":true,"description":{"content":"<p>Sort by default (sort_order)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by title</p>\n","type":"text/plain"},"key":"sort","value":"title"},{"disabled":true,"description":{"content":"<p>Sort by sort_order</p>\n","type":"text/plain"},"key":"sort","value":"sort_order"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by release date</p>\n","type":"text/plain"},"key":"sort","value":"released_at"},{"disabled":true,"description":{"content":"<p>Include folder</p>\n","type":"text/plain"},"key":"with[]","value":"folder"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include media</p>\n","type":"text/plain"},"key":"with[]","value":"media"}],"variable":[]}},"response":[],"_postman_id":"b97ec179-1b62-411d-9ee4-046c37cd90fa"},{"name":"Read Article","id":"9e6645c9-37a4-45ab-b40b-d6ef24e80f01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/articles/{{article_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","articles","{{article_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include folder</p>\n","type":"text/plain"},"key":"with[]","value":"folder"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include media</p>\n","type":"text/plain"},"key":"with[]","value":"media"}],"variable":[]}},"response":[],"_postman_id":"9e6645c9-37a4-45ab-b40b-d6ef24e80f01"},{"name":"Delete Article","id":"b8f890e6-52f9-4765-b2e2-04a37abd4805","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/articles/{{article_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","articles","{{article_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8f890e6-52f9-4765-b2e2-04a37abd4805"},{"name":"Create Article","id":"aa69692c-e37b-4e96-86d0-434d88ffcf80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"folder[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Folder UUID (required)</p>\n","type":"text"},{"key":"title","value":"My article","description":"<p>Text (required)</p>\n","type":"text"},{"key":"status","value":"draft","description":"<p>draft, released</p>\n","type":"text"},{"key":"description","value":"Lorem Ipsum","description":"<p>Text</p>\n","type":"text"},{"key":"released_at","value":"2024-02-27 00:00:00","description":"<p>Y-m-d H:i:s</p>\n","type":"text"},{"key":"sort_order","value":"1","description":"<p>Number</p>\n","type":"text"},{"key":"user[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>User UUID</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/articles","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","articles"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa69692c-e37b-4e96-86d0-434d88ffcf80"},{"name":"Update Article","id":"56bfeb1c-c6bc-44b5-b306-910671e248d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"folder[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Folder UUID </p>\n","type":"text"},{"key":"title","value":"My article","description":"<p>Text</p>\n","type":"text"},{"key":"status","value":"released","description":"<p>draft, released</p>\n","type":"text"},{"key":"description","value":"Lorem Ipsum","description":"<p>Text</p>\n","type":"text"},{"key":"released_at","value":"2024-02-27 00:00:00","description":"<p>Y-m-d H:i:s</p>\n","type":"text"},{"key":"sort_order","value":"1","description":"<p>Number</p>\n","type":"text"},{"key":"user[id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>User UUID</p>\n","type":"text"},{"key":"sorting[position]","value":"first","description":"<p>first, last, after</p>\n","type":"text"},{"key":"sorting[rel_id]","value":"9b46f9e4-3b4f-4c1b-b29a-6da6c967d2f9","description":"<p>Folder or article UUID</p>\n","type":"text"},{"key":"sorting[rel_model]","value":"article","description":"<p>folder, article</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/knowledge/articles/{{article_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","knowledge","articles","{{article_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"56bfeb1c-c6bc-44b5-b306-910671e248d9"}],"id":"fea05bd9-1912-41ff-bfa9-cbeb1d0d8282","_postman_id":"fea05bd9-1912-41ff-bfa9-cbeb1d0d8282","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}}],"id":"41d327ae-8918-4e76-9347-97fc828c7762","_postman_id":"41d327ae-8918-4e76-9347-97fc828c7762","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Events","item":[{"name":"List Events","id":"854018e6-d5f0-4d84-8bb4-af8c2f55f55b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/events","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","events"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Filter by event UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"99830bce-fb43-4b7d-bb97-951b8afce865"},{"disabled":true,"description":{"content":"<p>Filter by multiple event UUID's</p>\n","type":"text/plain"},"key":"filters[ids][]","value":"99830bce-fb43-4b7d-bb97-951b8afce865"},{"disabled":true,"description":{"content":"<p>Filter by start period</p>\n","type":"text/plain"},"key":"filters[period][starts_at]","value":"2024-02-28"},{"disabled":true,"description":{"content":"<p>Filter by end period</p>\n","type":"text/plain"},"key":"filters[period][ends_at]","value":"2024-02-29"},{"disabled":true,"description":{"content":"<p>Filter by type, can be appointment, availability or holiday</p>\n","type":"text/plain"},"key":"filters[type]","value":"appointment"},{"disabled":true,"description":{"content":"<p>Filter by multiple types, can be appointment, availability or holiday</p>\n","type":"text/plain"},"key":"filters[types][]","value":"appointment"},{"disabled":true,"description":{"content":"<p>Filter by matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"9b46ffb2-fbb7-4bf1-8927-a70f109a620d"},{"disabled":true,"description":{"content":"<p>Filter by multiple matter UUID's</p>\n","type":"text/plain"},"key":"filters[matters][]","value":"9b46ffb2-fbb7-4bf1-8927-a70f109a620d"},{"disabled":true,"description":{"content":"<p>Filter by status, can be draft, planned, canceled or completed</p>\n","type":"text/plain"},"key":"filters[status]","value":"draft"},{"disabled":true,"description":{"content":"<p>Filter by multiple statuses, can be draft, planned, canceled or completed</p>\n","type":"text/plain"},"key":"filters[statuses][]","value":"draft"},{"disabled":true,"description":{"content":"<p>Filter by user UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by multiple user UUID's</p>\n","type":"text/plain"},"key":"filters[users][]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by entity UUID</p>\n","type":"text/plain"},"key":"filters[entity]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by multiple entity UUID's</p>\n","type":"text/plain"},"key":"filters[entities][]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Sort by default (starts_at)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by status</p>\n","type":"text/plain"},"key":"sort","value":"status"},{"disabled":true,"description":{"content":"<p>Sort by start date</p>\n","type":"text/plain"},"key":"sort","value":"starts_at"},{"disabled":true,"description":{"content":"<p>Sort by event creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by event update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include users</p>\n","type":"text/plain"},"key":"with[]","value":"users"},{"disabled":true,"description":{"content":"<p>Include user that created the event</p>\n","type":"text/plain"},"key":"with[]","value":"created_by_user"},{"disabled":true,"description":{"content":"<p>Include event group</p>\n","type":"text/plain"},"key":"with[]","value":"event_group"},{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"}],"variable":[]}},"response":[],"_postman_id":"854018e6-d5f0-4d84-8bb4-af8c2f55f55b"},{"name":"Read Event","id":"3f48b398-3b58-45b9-b8a9-653072c8b24e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/events/{{event_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","events","{{event_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include users</p>\n","type":"text/plain"},"key":"with[]","value":"users"},{"disabled":true,"description":{"content":"<p>Include user that created the event</p>\n","type":"text/plain"},"key":"with[]","value":"created_by_user"},{"disabled":true,"description":{"content":"<p>Include event group</p>\n","type":"text/plain"},"key":"with[]","value":"event_group"},{"disabled":true,"description":{"content":"<p>Include matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"}],"variable":[]}},"response":[],"_postman_id":"3f48b398-3b58-45b9-b8a9-653072c8b24e"},{"name":"Create Event","id":"3691e7a4-4e56-440b-a182-8037e996f05e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"user[id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>User UUID. (Required if users array is not present)</p>\n","type":"text"},{"key":"type","value":"appointment","description":"<p>Text, can be appointment, availability or holiday (Required)</p>\n","type":"text"},{"key":"status","value":"draft","description":"<p>Text, can be draft, planned, canceled or completed</p>\n","type":"text"},{"key":"description","value":"My description","description":"<p>Text</p>\n","type":"text"},{"key":"name","value":"My event","description":"<p>Text</p>\n","type":"text"},{"key":"starts_at","value":"2024-02-28 00:00:00","description":"<p>Date with format: Y-m-d H:i:s. (Required)</p>\n","type":"text"},{"key":"ends_at","value":"2024-02-29 00:00:00","description":"<p>Date with format: Y-m-d H:i:s. (Required)</p>\n","type":"text"},{"key":"users[0][id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>Array of user ids. (Required if single user id is not present)</p>\n","type":"text"},{"key":"contact_moment[id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>Moment UUID</p>\n","type":"text"},{"key":"matter[id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>Matter UUID</p>\n","type":"text"},{"key":"entity[id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>Entity UUID</p>\n","type":"text"},{"key":"notify","value":"true","description":"<p>true, false</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/events","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","events"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"3691e7a4-4e56-440b-a182-8037e996f05e"},{"name":"Delete Event","id":"e036fa54-7122-4598-aa25-0604649f5bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/events/{{event_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","events","{{event_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"e036fa54-7122-4598-aa25-0604649f5bbb"},{"name":"Update Event","id":"2f41179f-964c-4f5d-953d-09feba14429e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"user[id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>User UUID</p>\n","type":"text"},{"key":"type","value":"appointment","description":"<p>Text, can be appointment, availability or holiday </p>\n","type":"text"},{"key":"status","value":"draft","description":"<p>Text, can be draft, planned, canceled or completed</p>\n","type":"text"},{"key":"description","value":"My description","description":"<p>Text</p>\n","type":"text"},{"key":"name","value":"My event","description":"<p>Text</p>\n","type":"text"},{"key":"starts_at","value":"2024-02-28 00:00:00","description":"<p>Date with format: Y-m-d H:i:s. </p>\n","type":"text"},{"key":"ends_at","value":"2024-02-29 00:00:00","description":"<p>Date with format: Y-m-d H:i:s. </p>\n","type":"text"},{"key":"users[0][id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>Array of user ids. </p>\n","type":"text"},{"key":"contact_moment[id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>Moment UUID</p>\n","type":"text"},{"key":"matter[id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>Matter UUID</p>\n","type":"text"},{"key":"entity[id]","value":"00000000-0000-0000-0000-000000000000","description":"<p>Entity UUID</p>\n","type":"text"},{"key":"notify","value":"true","description":"<p>true, false</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/events/{{event_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","events","{{event_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f41179f-964c-4f5d-953d-09feba14429e"}],"id":"cf1c01cb-f7b2-4234-b2e5-50436ee8eedb","_postman_id":"cf1c01cb-f7b2-4234-b2e5-50436ee8eedb","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Exports","item":[{"name":"List exports","id":"ce775fb7-eeae-4a18-bd96-5313156059b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/exports","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","exports"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[auth_creator]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[auth_users]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7"},{"disabled":true,"description":{"content":"<p>pending, processing, available, expired, failed</p>\n","type":"text/plain"},"key":"filters[status]","value":"pending"},{"disabled":true,"description":{"content":"<p>pending, processing, available, expired, failed</p>\n","type":"text/plain"},"key":"filters[statuses][]","value":"pending"},{"disabled":true,"description":{"content":"<p>Exportable morph alias</p>\n","type":"text/plain"},"key":"filters[model_type]","value":"custom_list"},{"disabled":true,"description":{"content":"<p>return expired export records</p>\n","type":"text/plain"},"key":"filters[is_expired]","value":"true"},{"disabled":true,"description":{"content":"<p>return export that has files attached to it</p>\n","type":"text/plain"},"key":"filters[has_file]","value":"true"},{"disabled":true,"description":{"content":"<p>return export created before date</p>\n","type":"text/plain"},"key":"filters[created_before]","value":"2024-01-01"},{"disabled":true,"description":{"content":"<p>return export created after date</p>\n","type":"text/plain"},"key":"filters[created_after]","value":"2024-01-01"},{"disabled":true,"description":{"content":"<p>id of the export to filter</p>\n","type":"text/plain"},"key":"filters[id]","value":"62478f4b-c1fb-4610-ae3d-c8306f21a42e"},{"disabled":true,"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>include the export file</p>\n","type":"text/plain"},"key":"with[]","value":"file"},{"disabled":true,"description":{"content":"<p>include the applied filters when doing the import</p>\n","type":"text/plain"},"key":"with[]","value":"filters"},{"disabled":true,"description":{"content":"<p>include the tags of the import</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>include the creator (user) of the import</p>\n","type":"text/plain"},"key":"with[]","value":"creator"},{"disabled":true,"description":{"content":"<p>include the users who can see the export</p>\n","type":"text/plain"},"key":"with[]","value":"users"}],"variable":[]}},"response":[],"_postman_id":"ce775fb7-eeae-4a18-bd96-5313156059b8"}],"id":"a0e2a7cb-5366-44ed-a8c7-222dfd4013fd","_postman_id":"a0e2a7cb-5366-44ed-a8c7-222dfd4013fd","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Forms","item":[{"name":"List Forms","id":"5a5a0b77-955a-4f69-8556-c47031cbe041","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/atabase-forms/forms","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","atabase-forms","forms"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Filter by Process UUID</p>\n","type":"text/plain"},"key":"filters[process]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple Process UUID's</p>\n","type":"text/plain"},"key":"filters[processes][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_create]","value":"true"},{"disabled":true,"description":{"content":"<p>Filter by Form UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Filter by multiple Form UUID's </p>\n","type":"text/plain"},"key":"filters[ids][]","value":"9b46f9d9-1397-40cd-b060-38de5f8bcb7f"},{"disabled":true,"description":{"content":"<p>Sort by default (UUID)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include process</p>\n","type":"text/plain"},"key":"with[]","value":"process"}],"variable":[]}},"response":[],"_postman_id":"5a5a0b77-955a-4f69-8556-c47031cbe041"},{"name":"Read Form","id":"553a6d5f-6b3e-4afb-9d69-7bdbd8c18de3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/atabase-forms/forms/{{form_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","atabase-forms","forms","{{form_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include process</p>\n","type":"text/plain"},"key":"with[]","value":"process"}],"variable":[]}},"response":[],"_postman_id":"553a6d5f-6b3e-4afb-9d69-7bdbd8c18de3"}],"id":"4eee3dcb-8c28-4e87-8989-84dd380a4408","_postman_id":"4eee3dcb-8c28-4e87-8989-84dd380a4408","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Notifications","item":[{"name":"List Notifications","id":"6691d1bf-7daa-49d8-ad33-a71a21e29b8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/notifications","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","notifications"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Filter by UUID of model to notify</p>\n","type":"text/plain"},"key":"filters[notifiable_id]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by multiple UUID's of model to notify</p>\n","type":"text/plain"},"key":"filters[notifiable_ids][]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by user UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by multiple user UUID's</p>\n","type":"text/plain"},"key":"filters[users][]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by type. Options: automation, event, message.created, party.assigned, signature, task.assigned</p>\n","type":"text/plain"},"key":"filters[type]","value":"event"},{"disabled":true,"description":{"content":"<p>Filter by type. Options: automation, event, message.created, party.assigned, signature, task.assigned</p>\n","type":"text/plain"},"key":"filters[types][]","value":"event"},{"disabled":true,"description":{"content":"<p>Filter notifications that are read. Options: true, false</p>\n","type":"text/plain"},"key":"filters[is_read]","value":"true"},{"disabled":true,"description":{"content":"<p>Sort by default (created_at)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by update date</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Include metadata</p>\n","type":"text/plain"},"key":"with[]","value":"meta"}],"variable":[]}},"response":[],"_postman_id":"6691d1bf-7daa-49d8-ad33-a71a21e29b8e"},{"name":"Read Notification","id":"3f2b517b-46c5-42c9-b001-4cc8a4aa07ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/notifications/{{notification_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","notifications","{{notification_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include metadata</p>\n","type":"text/plain"},"key":"with[]","value":"meta"}],"variable":[]}},"response":[],"_postman_id":"3f2b517b-46c5-42c9-b001-4cc8a4aa07ef"},{"name":"Update Notification","id":"25f3bf39-7446-48e8-8fca-ba11886443e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"read_at","value":"2024-02-28 00:00:00","description":"<p>Date Y-m-d H:i:s</p>\n","type":"text"},{"key":"is_read","value":"true","description":"<p>true, false</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/notifications/{{notification_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","notifications","{{notification_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"25f3bf39-7446-48e8-8fca-ba11886443e7"}],"id":"230a94a2-9465-4a0a-8725-cce5a50561ae","_postman_id":"230a94a2-9465-4a0a-8725-cce5a50561ae","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Departments","item":[{"name":"List Departments","id":"4c68d2fb-86c0-44ea-962a-025e466a634f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/departments","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","departments"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"key":"with[]","value":"reports"},{"disabled":true,"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"filters[id]","value":""},{"disabled":true,"description":{"content":"<p>string[]</p>\n","type":"text/plain"},"key":"filters[ids]","value":""},{"disabled":true,"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"filters[search]","value":""},{"disabled":true,"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"filters[name]","value":""},{"disabled":true,"key":"sort","value":"name"},{"disabled":true,"key":"sort","value":"id"},{"disabled":true,"key":"sort","value":"created_at"},{"disabled":true,"key":"with[]","value":"parent"},{"disabled":true,"key":"with[]","value":"children"},{"disabled":true,"key":"filters[process_role]","value":"9816de61-20d8-4d20-85cc-3bd662f64f34"}],"variable":[]}},"response":[],"_postman_id":"4c68d2fb-86c0-44ea-962a-025e466a634f"},{"name":"Fetch Department","id":"dadb0d00-8615-476e-b2e9-2c79696e87da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/departments/{{department_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","departments","{{department_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"dadb0d00-8615-476e-b2e9-2c79696e87da"},{"name":"Create Department","event":[{"listen":"test","script":{"id":"c52945bb-63a1-4b28-81cb-e8eaa6f9d640","exec":["var data = JSON.parse(responseBody);","","if (data.id) {","    postman.setEnvironmentVariable(\"department_id\", data.id);","}"],"type":"text/javascript","packages":{}}}],"id":"3431a0c4-aa52-4588-a824-7ba2ca158219","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"parent\": {\n        \"id\": \"{{department_id}}\"\n    },\n    \"name\": \"Tesaaat2\"\n}","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/departments?with[]=parent","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","departments"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"key":"with[]","value":"parent"}],"variable":[]}},"response":[],"_postman_id":"3431a0c4-aa52-4588-a824-7ba2ca158219"},{"name":"Update Department","id":"5819062a-8b29-46d8-aac6-549f4b5a9ee7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test23\",\n    \"statuses\": [\n        {\n            \"id\": \"{{process_status_id}}\",\n            \"pivot\": {\n                \"is_editable\": true\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/departments/{{department_id}}?with[]=process_statuses","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","departments","{{department_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"key":"with[]","value":"process_statuses"}],"variable":[]}},"response":[],"_postman_id":"5819062a-8b29-46d8-aac6-549f4b5a9ee7"},{"name":"Delete Department","id":"a7929ba1-81ea-4e04-ae79-228440a81e57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/departments/{{department_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","departments","{{department_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7929ba1-81ea-4e04-ae79-228440a81e57"}],"id":"5fd987e6-bbb8-406b-aefb-d59e9cf6e9cf","_postman_id":"5fd987e6-bbb8-406b-aefb-d59e9cf6e9cf","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Users","item":[{"name":"List Users","id":"e1dfeabc-5273-4cce-bc6d-68c225e26b47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/users?filters[current]=1","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","users"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"key":"with[]","value":"token"},{"disabled":true,"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"filters[id]","value":""},{"disabled":true,"description":{"content":"<p>string[]</p>\n","type":"text/plain"},"key":"filters[ids]","value":""},{"disabled":true,"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"filters[department_division]","value":"97eeb78c-33a8-4645-9340-c3dda9a60210"},{"disabled":true,"description":{"content":"<p>string[]</p>\n","type":"text/plain"},"key":"filters[name]","value":""},{"disabled":true,"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>string</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"key":"sort","value":"created_at"},{"key":"filters[current]","value":"1"}],"variable":[]}},"response":[],"_postman_id":"e1dfeabc-5273-4cce-bc6d-68c225e26b47"},{"name":"Fetch User","id":"3aef6693-8a34-40c8-84b3-e1492c15b1b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/users/{{user_id}}?with[]=departments&with[]=settings&with[]=targets","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","users","{{user_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"disabled":true,"key":"with[]","value":"finance"},{"disabled":true,"key":"with[]","value":"contractor"},{"disabled":true,"key":"with[]","value":"reports"},{"disabled":true,"key":"with[]","value":"roles"},{"key":"with[]","value":"departments"},{"key":"with[]","value":"settings"},{"key":"with[]","value":"targets"}],"variable":[]}},"response":[],"_postman_id":"3aef6693-8a34-40c8-84b3-e1492c15b1b2"},{"name":"Update User","id":"2e71f408-7ebc-4d42-b010-e3b762575767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Admin Example\",\n    \"departments\": [\"{{department_id}}\"],\n    \"settings\": [\n        {\n            \"id\": \"user.is_plannable\",\n            \"value\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.cases.mozardsuite.nl/v1/users/{{user_id}}?with[]=departments&with[]=settings","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","users","{{user_id}}"],"host":["https://MIJNOMGEVING.api.cases.mozardsuite.nl"],"query":[{"key":"with[]","value":"departments"},{"key":"with[]","value":"settings"}],"variable":[]}},"response":[],"_postman_id":"2e71f408-7ebc-4d42-b010-e3b762575767"}],"id":"9501a085-d403-45f6-9c66-70e2914631b9","_postman_id":"9501a085-d403-45f6-9c66-70e2914631b9","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}}],"id":"92a17519-ceea-400d-8755-d802076ef751","_postman_id":"92a17519-ceea-400d-8755-d802076ef751","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"CRM","item":[{"name":"Audits","item":[{"name":"List Audits","id":"61259ede-d91e-4013-b82c-a0a74bc64a2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/audits","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","audits"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Filter by model type of model being audited.</p>\n","type":"text/plain"},"key":"filters[model_type]","value":"entity"},{"disabled":true,"description":{"content":"<p>Filter by model type of model being audited.</p>\n","type":"text/plain"},"key":"filters[model_types][]","value":"entity"},{"disabled":true,"description":{"content":"<p>Filter by UUID of model being audited</p>\n","type":"text/plain"},"key":"filters[model_id]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by multiple UUID's of model being audited</p>\n","type":"text/plain"},"key":"filters[model_ids][]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by event. Options: created, updated, deleted, retrieved</p>\n","type":"text/plain"},"key":"filters[event]","value":"created"},{"disabled":true,"description":{"content":"<p>Filter by multiple events. Options: created, updated, deleted, retrieved</p>\n","type":"text/plain"},"key":"filters[events][]","value":"created"},{"disabled":true,"description":{"content":"<p>Filter by is_console boolean</p>\n","type":"text/plain"},"key":"filters[is_console]","value":"true"},{"disabled":true,"description":{"content":"<p>Filter by user UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by multiple user UUID's</p>\n","type":"text/plain"},"key":"filters[users][]","value":"00000000-0000-0000-0000-000000000000"},{"disabled":true,"description":{"content":"<p>Filter by entity UUID</p>\n","type":"text/plain"},"key":"filters[entity]","value":"1797bb09-8ecc-4477-8ab7-6c2478a26e8a"},{"disabled":true,"description":{"content":"<p>Return all notifications created before given date</p>\n","type":"text/plain"},"key":"filters[created_before]","value":"2024-02-26 00:00:00"},{"disabled":true,"description":{"content":"<p>Return all notifications created after given date</p>\n","type":"text/plain"},"key":"filters[created_after]","value":"2024-02-26 00:00:00"},{"disabled":true,"description":{"content":"<p>Filter by user email</p>\n","type":"text/plain"},"key":"filters[email]","value":"john.doe@example.com"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created"},{"disabled":true,"description":{"content":"<p>Include values</p>\n","type":"text/plain"},"key":"with[]","value":"values"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include model</p>\n","type":"text/plain"},"key":"with[]","value":"model"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include target </p>\n","type":"text/plain"},"key":"with[]","value":"target"}],"variable":[]}},"response":[],"_postman_id":"61259ede-d91e-4013-b82c-a0a74bc64a2f"},{"name":"Read Audit","id":"a9b145f5-e792-4ce6-a6e0-895b987eda76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/audits/{{audit_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","audits","{{audit_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include values</p>\n","type":"text/plain"},"key":"with[]","value":"values"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include model</p>\n","type":"text/plain"},"key":"with[]","value":"model"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include target</p>\n","type":"text/plain"},"key":"with[]","value":"target"}],"variable":[]}},"response":[],"_postman_id":"a9b145f5-e792-4ce6-a6e0-895b987eda76"}],"id":"843814dd-ad65-4e5c-9898-a474ea737cbb","_postman_id":"843814dd-ad65-4e5c-9898-a474ea737cbb","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Contact Moments","item":[{"name":"List Contact Moment","id":"c3cb35ba-f8ab-4e9a-949c-0b22e272f52c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include label</p>\n","type":"text/plain"},"key":"with[]","value":"label"},{"disabled":true,"description":{"content":"<p>Include project</p>\n","type":"text/plain"},"key":"with[]","value":"project"},{"disabled":true,"description":{"content":"<p>Include result label</p>\n","type":"text/plain"},"key":"with[]","value":"result"},{"disabled":true,"description":{"content":"<p>Include contact moment users</p>\n","type":"text/plain"},"key":"with[]","value":"users"},{"disabled":true,"description":{"content":"<p>Include entity</p>\n","type":"text/plain"},"key":"with[]","value":"entity"},{"disabled":true,"description":{"content":"<p>Include related cases matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"},{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Contact moment UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Contact moment UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Contact moment UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Contact moment UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Filter by summary, subject, label name or result label name</p>\n","type":"text/plain"},"key":"filters[search]","value":"Afgerond"},{"disabled":true,"description":{"content":"<p>planned, completed, cancelled</p>\n","type":"text/plain"},"key":"filters[status]","value":"planned"},{"disabled":true,"description":{"content":"<p>planned, completed, cancelled</p>\n","type":"text/plain"},"key":"filters[statuses]","value":"[planned, completed]"},{"disabled":true,"description":{"content":"<p>Label UUID</p>\n","type":"text/plain"},"key":"filters[label]","value":"475d9450-48be-495f-bb58-70c351e082dc"},{"disabled":true,"description":{"content":"<p>Array of Label UUID's</p>\n","type":"text/plain"},"key":"filters[labels]","value":"[475d9450-48be-495f-bb58-70c351e082dc, 8bdd6a10-aa05-4f28-a8cf-ec0743f335fd]"},{"disabled":true,"description":{"content":"<p>Project UUID</p>\n","type":"text/plain"},"key":"filters[project]","value":"475d9450-48be-495f-bb58-70c351e082dc"},{"disabled":true,"description":{"content":"<p>Array of Project UUID's</p>\n","type":"text/plain"},"key":"filters[projects]","value":"[475d9450-48be-495f-bb58-70c351e082dc, 8bdd6a10-aa05-4f28-a8cf-ec0743f335fd]"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[entity]","value":"475d9450-48be-495f-bb58-70c351e082dc"},{"disabled":true,"description":{"content":"<p>Array of Entity UUID's</p>\n","type":"text/plain"},"key":"filters[entities]","value":"[475d9450-48be-495f-bb58-70c351e082dc, 8bdd6a10-aa05-4f28-a8cf-ec0743f335fd]"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"475d9450-48be-495f-bb58-70c351e082dc"},{"disabled":true,"description":{"content":"<p>Array of User UUID's</p>\n","type":"text/plain"},"key":"filters[users]","value":"[475d9450-48be-495f-bb58-70c351e082dc, 8bdd6a10-aa05-4f28-a8cf-ec0743f335fd]"},{"disabled":true,"description":{"content":"<p>Label UUID</p>\n","type":"text/plain"},"key":"filters[result]","value":"475d9450-48be-495f-bb58-70c351e082dc"},{"disabled":true,"description":{"content":"<p>Array of Label UUID's</p>\n","type":"text/plain"},"key":"filters[results]","value":"[475d9450-48be-495f-bb58-70c351e082dc, 8bdd6a10-aa05-4f28-a8cf-ec0743f335fd]"},{"disabled":true,"description":{"content":"<p>Cases matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"475d9450-48be-495f-bb58-70c351e082dc"},{"disabled":true,"description":{"content":"<p>Array of Cases matter UUID's</p>\n","type":"text/plain"},"key":"filters[matters]","value":"[475d9450-48be-495f-bb58-70c351e082dc, 8bdd6a10-aa05-4f28-a8cf-ec0743f335fd]"},{"disabled":true,"description":{"content":"<p>Filter by creation date period (start date) Both start and end dates need to be present to work</p>\n","type":"text/plain"},"key":"filters[period][starts_at]","value":"2024-01-10"},{"disabled":true,"description":{"content":"<p>Filter by creation period (end date) Both start and end dates need to be present to work</p>\n","type":"text/plain"},"key":"filters[period][ends_at]","value":"2024-12-30"},{"disabled":true,"description":{"content":"<p>Default sort (starts_at)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by contact moment start datetime</p>\n","type":"text/plain"},"key":"sort","value":"starts_at"},{"disabled":true,"description":{"content":"<p>Sort by contact moment end datetime</p>\n","type":"text/plain"},"key":"sort","value":"ends_at"},{"disabled":true,"description":{"content":"<p>Sort by contact moment UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by contact moments creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by contact moment update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"disabled":true,"description":{"content":"<p>Sort by contact moment projcet UUID</p>\n","type":"text/plain"},"key":"sort","value":"project"},{"disabled":true,"description":{"content":"<p>Sort by contact moment entity UUID</p>\n","type":"text/plain"},"key":"sort","value":"entity"},{"disabled":true,"description":{"content":"<p>Sort by contact moment label UUID</p>\n","type":"text/plain"},"key":"sort","value":"label"}],"variable":[]}},"response":[],"_postman_id":"c3cb35ba-f8ab-4e9a-949c-0b22e272f52c"},{"name":"Read Contact Moment","id":"ee43b74a-e554-4cf6-a845-b4d521637040","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments/{{moment_id}}?with[]=label&with[]=project&with[]=result&with[]=users&with[]=entity&with[]=matter","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments","{{moment_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"description":{"content":"<p>Include label</p>\n","type":"text/plain"},"key":"with[]","value":"label"},{"description":{"content":"<p>Include project</p>\n","type":"text/plain"},"key":"with[]","value":"project"},{"description":{"content":"<p>Include result label</p>\n","type":"text/plain"},"key":"with[]","value":"result"},{"description":{"content":"<p>Include contact moment users</p>\n","type":"text/plain"},"key":"with[]","value":"users"},{"description":{"content":"<p>Include entity</p>\n","type":"text/plain"},"key":"with[]","value":"entity"},{"description":{"content":"<p>Include related cases matter</p>\n","type":"text/plain"},"key":"with[]","value":"matter"}],"variable":[]}},"response":[],"_postman_id":"ee43b74a-e554-4cf6-a845-b4d521637040"},{"name":"Create Contact Moment","id":"1812cd8b-b1b4-4543-a038-04f5e29bd121","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"project.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Project UUID (required without entity.id)</p>\n"},{"key":"entity.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Entity UUID (required without project.id)</p>\n"},{"key":"label.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Label UUID (required)</p>\n"},{"key":"result.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Result Label UUID</p>\n"},{"key":"summary","value":"Summary description","type":"text","description":"<p>Summary of contact moment</p>\n"},{"key":"subject","value":"Gebeld door Henk","type":"text","description":"<p>Subject of contact moment</p>\n"},{"key":"users","value":"[{\"id\" => \"14f72354-38be-4f14-9071-19b1728f805d\"}]","type":"text","description":"<p>Array of users (required)</p>\n"},{"key":"users.*.id","value":"14f72354-38be-4f14-9071-19b1728f805d","type":"text","description":"<p>User UUID</p>\n"},{"key":"starts_at","value":"2024-01-01 11:11:00","type":"text","description":"<p>Contact moment start date (datetime)</p>\n"},{"key":"ends_at","value":"2024-01-05 11:11:00","type":"text","description":"<p>Contact moment end date (datetime)</p>\n"},{"key":"matter.id","value":"f406e097-54e3-4335-b477-00a75613fe08","type":"text","description":"<p>Related cases matter UUID</p>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"1812cd8b-b1b4-4543-a038-04f5e29bd121"},{"name":"Update Contact Moment","id":"fe702683-850f-4a57-a464-45c4f8a35399","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"project.id","value":"DENY","type":"text","description":"<p>Project UUID</p>\n"},{"key":"entity.id","value":"DENY","type":"text","description":"<p>Entity UUID</p>\n"},{"key":"label.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Label UUID</p>\n"},{"key":"result.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Result Label UUID</p>\n"},{"key":"summary","value":"Summary description","type":"text","description":"<p>Summary of contact moment</p>\n"},{"key":"subject","value":"Gebeld door Henk","type":"text","description":"<p>Subject of contact moment</p>\n"},{"key":"users","value":"[{\"id\" => \"14f72354-38be-4f14-9071-19b1728f805d\"}]","type":"text","description":"<p>Array of users (required)</p>\n"},{"key":"users.*.id","value":"14f72354-38be-4f14-9071-19b1728f805d","type":"text","description":"<p>User UUID</p>\n"},{"key":"starts_at","value":"2024-01-01 11:11:00","type":"text","description":"<p>Contact moment start date (datetime)</p>\n"},{"key":"ends_at","value":"2024-01-05 11:11:00","type":"text","description":"<p>Contact moment end date (datetime)</p>\n"},{"key":"matter.id","value":"f406e097-54e3-4335-b477-00a75613fe08","type":"text","description":"<p>Related cases matter UUID</p>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments/{{moment_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments","{{moment_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe702683-850f-4a57-a464-45c4f8a35399"},{"name":"Delete Contact Moment","id":"df337544-4bb6-46d9-92dc-3823a78f133b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments/{{moment_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments","{{moment_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"df337544-4bb6-46d9-92dc-3823a78f133b"}],"id":"d0f240b0-314e-4f63-b2c7-e35ae3a76a3b","_postman_id":"d0f240b0-314e-4f63-b2c7-e35ae3a76a3b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Entity Types","item":[{"name":"Fields","item":[{"name":"List Entity Type Fields","id":"310fe6c0-8940-453a-ade1-82faace0603f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entity-types/fields","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entity-types","fields"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include field options</p>\n","type":"text/plain"},"key":"with[]","value":"options"},{"disabled":true,"description":{"content":"<p>Include group of field</p>\n","type":"text/plain"},"key":"with[]","value":"group"},{"disabled":true,"description":{"content":"<p>Field UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Array of Field UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Field UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Field UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Search by field name and description</p>\n","type":"text/plain"},"key":"filters[search]","value":"Company name"},{"disabled":true,"description":{"content":"<p>'checkbox', 'date', 'embed', 'number', 'radio', 'select', 'switch', 'text', 'text_area', 'url', 'currency', 'user'</p>\n","type":"text/plain"},"key":"filters[type]","value":"text"},{"disabled":true,"description":{"content":"<p>'checkbox', 'date', 'embed', 'number', 'radio', 'select', 'switch', 'text', 'text_area', 'url', 'currency', 'user'</p>\n","type":"text/plain"},"key":"filters[types]","value":"[text, text_area]"},{"disabled":true,"description":{"content":"<p>Tag UUID</p>\n","type":"text/plain"},"key":"filters[tag]","value":"1d7c9444-8e37-4626-909a-b85c798d065a"},{"disabled":true,"description":{"content":"<p>Array of Tag UUID's</p>\n","type":"text/plain"},"key":"filters[tags]","value":"[ea455aca-7c4d-4f19-a021-e131c9adf6f4, f1348634-20eb-4953-825d-c02353ff9de7]"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_hidden]","value":"false"},{"disabled":true,"description":{"content":"<p>Filtering by the entity type id</p>\n","type":"text/plain"},"key":"filters[entity_type]","value":"1d7c9444-8e37-4626-909a-b85c798d065a"},{"disabled":true,"description":{"content":"<p>Filtering by the entity type ids</p>\n","type":"text/plain"},"key":"filters[entity_types][]","value":"1d7c9444-8e37-4626-909a-b85c798d065a"},{"disabled":true,"description":{"content":"<p>Default sort (order)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by field sort_order</p>\n","type":"text/plain"},"key":"sort","value":"order"},{"disabled":true,"description":{"content":"<p>Sort by field UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by field creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by field update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[],"_postman_id":"310fe6c0-8940-453a-ade1-82faace0603f"},{"name":"Read Entity Type Field","id":"d5246e48-61d1-4799-b778-69ff16d75869","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entity-types/fields/{{field_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entity-types","fields","{{field_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include field options</p>\n","type":"text/plain"},"key":"with[]","value":"options"},{"disabled":true,"description":{"content":"<p>Include group of field</p>\n","type":"text/plain"},"key":"with[]","value":"group"}],"variable":[]}},"response":[],"_postman_id":"d5246e48-61d1-4799-b778-69ff16d75869"}],"id":"eddfe1e0-ab01-40ee-ae3e-03816f8c0c71","_postman_id":"eddfe1e0-ab01-40ee-ae3e-03816f8c0c71","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"List Entity Type","id":"bdf8b0bc-c958-4c4d-a5ca-dc9bf6e874f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entity-types","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entity-types"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include field groups, each with their fields</p>\n","type":"text/plain"},"key":"with[]","value":"groups"},{"disabled":true,"description":{"content":"<p>Include all fields</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include entity count with this type</p>\n","type":"text/plain"},"key":"with[]","value":"count"},{"disabled":true,"description":{"content":"<p>Include name fields</p>\n","type":"text/plain"},"key":"with[]","value":"name_fields"},{"disabled":true,"description":{"content":"<p>Entity Type UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Array of Entity Type UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Entity Type UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Entity Type UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Search by Entity Type name</p>\n","type":"text/plain"},"key":"filters[name]","value":"Bedrijf"},{"disabled":true,"description":{"content":"<p>Default sort (id)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by Entity Type name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by Entity Type UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by form creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by form update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[{"id":"423bf9cd-5f76-4c52-963e-20ef5195d1ba","name":"List Entity Type","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entity-types","host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"path":["v1","entity-types"],"query":[{"key":"page","value":"1","type":"text","description":"Page number","disabled":true},{"key":"limit","value":"15","type":"text","description":"Items per page","disabled":true},{"key":"with[]","value":"groups","type":"text","description":"Include field groups, each with their fields","disabled":true},{"key":"with[]","value":"fields","type":"text","description":"Include all fields","disabled":true},{"key":"with[]","value":"count","type":"text","description":"Include entity count with this type","disabled":true},{"key":"with[]","value":"name_fields","type":"text","description":"Include name fields","disabled":true},{"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270","type":"text","description":"Entity Type UUID","disabled":true},{"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","type":"text","description":"Array of Entity Type UUID's","disabled":true},{"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759","type":"text","description":"Entity Type UUID to exclude from result","disabled":true},{"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","type":"text","description":"Array of Entity Type UUID's to exclude from result","disabled":true},{"key":"filters[name]","value":"Bedrijf","type":"text","description":"Search by Entity Type name","disabled":true},{"key":"sort","value":"default","type":"text","description":"Default sort (id)","disabled":true},{"key":"sort","value":"name","type":"text","description":"Sort by Entity Type name","disabled":true},{"key":"sort","value":"id","type":"text","description":"Sort by Entity Type UUID","disabled":true},{"key":"sort","value":"created_at","type":"text","description":"Sort by form creation datetime","disabled":true},{"key":"sort","value":"updated_at","type":"text","description":"Sort by form update datetime","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:55:24 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"497","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 2,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 2,\n    \"data\": [\n        {\n            \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n            \"name\": \"Persoon\",\n            \"icon\": null,\n            \"description\": null,\n            \"is_editable\": true,\n            \"is_deleteable\": true,\n            \"created_at\": \"2023-11-10T12:31:05.000000Z\",\n            \"meta\": {\n                \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n                \"type\": \"entity.type\"\n            }\n        },\n        {\n            \"id\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n            \"name\": \"Bedrijf\",\n            \"icon\": null,\n            \"description\": null,\n            \"is_editable\": true,\n            \"is_deleteable\": true,\n            \"created_at\": \"2023-11-10T12:31:05.000000Z\",\n            \"meta\": {\n                \"id\": \"7303a79c-a711-4b90-9775-772eae32f5ef\",\n                \"type\": \"entity.type\"\n            }\n        }\n    ]\n}"}],"_postman_id":"bdf8b0bc-c958-4c4d-a5ca-dc9bf6e874f3"},{"name":"Read Entity Type","id":"c2109336-62df-4330-a98f-4faebba1355e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entity-types/{{entity_type_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entity-types","{{entity_type_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include field groups, each with their fields</p>\n","type":"text/plain"},"key":"with[]","value":"groups"},{"disabled":true,"description":{"content":"<p>Include all fields</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include entity count with this type</p>\n","type":"text/plain"},"key":"with[]","value":"count"},{"disabled":true,"description":{"content":"<p>Include name fields</p>\n","type":"text/plain"},"key":"with[]","value":"name_fields"}],"variable":[]}},"response":[{"id":"1df8e928-82c3-4b92-96f0-57bc19f4ee00","name":"Read Entity Type","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entity-types/1336b9ab-abb5-490a-9f64-a182ff209916?with[]=groups&with[]=fields&with[]=count","host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"path":["v1","entity-types","1336b9ab-abb5-490a-9f64-a182ff209916"],"query":[{"key":"with[]","value":"groups","type":"text","description":"Include field groups, each with their fields"},{"key":"with[]","value":"fields","type":"text","description":"Include all fields"},{"key":"with[]","value":"count","description":"Include entity count with this type"},{"key":"with[]","value":"name_fields","type":"text","description":"Include name fields","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:02:04 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"497","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n    \"name\": \"Persoon\",\n    \"icon\": null,\n    \"description\": null,\n    \"is_editable\": true,\n    \"is_deleteable\": true,\n    \"created_at\": \"2023-11-10T12:31:05.000000Z\",\n    \"meta\": {\n        \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n        \"type\": \"entity.type\"\n    },\n    \"groups\": [\n        {\n            \"id\": \"9aaca26e-41cb-4a47-a529-919b4553a9a3\",\n            \"type\": \"field\",\n            \"name\": \"Personal Details\",\n            \"description\": null,\n            \"is_pinned\": false,\n            \"sort_order\": 1,\n            \"created_at\": \"2023-11-22 15:15:01\",\n            \"fields\": [\n                {\n                    \"id\": \"9ad8a168-a43e-4637-98f9-c578928f1525\",\n                    \"type\": \"text\",\n                    \"name\": \"Voornaam\",\n                    \"default\": \"Joseph\",\n                    \"placeholder\": \"\",\n                    \"description\": \"\",\n                    \"is_required\": false,\n                    \"sort_order\": 1,\n                    \"created_at\": \"2023-12-14T11:08:36.000000Z\",\n                    \"updated_at\": \"2024-01-18T14:49:22.000000Z\",\n                    \"group\": {\n                        \"id\": \"9aaca26e-41cb-4a47-a529-919b4553a9a3\"\n                    },\n                    \"name_priority\": 1,\n                    \"is_portal\": false,\n                    \"is_portal_editable\": false,\n                    \"name_portal\": null,\n                    \"is_top_level_column\": false,\n                    \"options\": [],\n                    \"meta\": {\n                        \"id\": \"9ad8a168-a43e-4637-98f9-c578928f1525\",\n                        \"type\": \"group.field\"\n                    }\n                },\n                {\n                    \"id\": \"9ad8a178-9af3-48c4-94da-d7fb74f6ab42\",\n                    \"type\": \"text\",\n                    \"name\": \"Achternaam\",\n                    \"default\": \"Budiarto\",\n                    \"placeholder\": \"\",\n                    \"description\": \"\",\n                    \"is_required\": false,\n                    \"sort_order\": 3,\n                    \"created_at\": \"2023-12-14T11:08:46.000000Z\",\n                    \"updated_at\": \"2024-01-18T14:49:28.000000Z\",\n                    \"group\": {\n                        \"id\": \"9aaca26e-41cb-4a47-a529-919b4553a9a3\"\n                    },\n                    \"name_priority\": 2,\n                    \"is_portal\": false,\n                    \"is_portal_editable\": false,\n                    \"name_portal\": null,\n                    \"is_top_level_column\": false,\n                    \"options\": [],\n                    \"meta\": {\n                        \"id\": \"9ad8a178-9af3-48c4-94da-d7fb74f6ab42\",\n                        \"type\": \"group.field\"\n                    }\n                }\n            ]\n        }\n    ],\n    \"fields\": [\n        {\n            \"id\": \"9ad8a168-a43e-4637-98f9-c578928f1525\",\n            \"type\": \"text\",\n            \"name\": \"Voornaam\",\n            \"default\": \"Joseph\",\n            \"placeholder\": \"\",\n            \"description\": \"\",\n            \"is_required\": false,\n            \"sort_order\": 1,\n            \"created_at\": \"2023-12-14T11:08:36.000000Z\",\n            \"updated_at\": \"2024-01-18T14:49:22.000000Z\",\n            \"group\": {\n                \"id\": \"9aaca26e-41cb-4a47-a529-919b4553a9a3\"\n            },\n            \"name_priority\": 1,\n            \"is_portal\": false,\n            \"is_portal_editable\": false,\n            \"name_portal\": null,\n            \"is_top_level_column\": false,\n            \"options\": [],\n            \"meta\": {\n                \"id\": \"9ad8a168-a43e-4637-98f9-c578928f1525\",\n                \"type\": \"group.field\"\n            }\n        },\n        {\n            \"id\": \"9ad8a178-9af3-48c4-94da-d7fb74f6ab42\",\n            \"type\": \"text\",\n            \"name\": \"Achternaam\",\n            \"default\": \"Budiarto\",\n            \"placeholder\": \"\",\n            \"description\": \"\",\n            \"is_required\": false,\n            \"sort_order\": 3,\n            \"created_at\": \"2023-12-14T11:08:46.000000Z\",\n            \"updated_at\": \"2024-01-18T14:49:28.000000Z\",\n            \"group\": {\n                \"id\": \"9aaca26e-41cb-4a47-a529-919b4553a9a3\"\n            },\n            \"name_priority\": 2,\n            \"is_portal\": false,\n            \"is_portal_editable\": false,\n            \"name_portal\": null,\n            \"is_top_level_column\": false,\n            \"options\": [],\n            \"meta\": {\n                \"id\": \"9ad8a178-9af3-48c4-94da-d7fb74f6ab42\",\n                \"type\": \"group.field\"\n            }\n        },\n        {\n            \"id\": \"9b2753a8-d8f6-4ccd-a1cc-6de5befef910\",\n            \"type\": \"checkbox\",\n            \"name\": \"Checkbox\",\n            \"default\": [\n                \"6730baf4-ff75-4501-9666-da98d19f5bbe\"\n            ],\n            \"placeholder\": \"\",\n            \"description\": \"\",\n            \"is_required\": false,\n            \"sort_order\": 5,\n            \"created_at\": \"2024-01-22T14:01:36.000000Z\",\n            \"updated_at\": \"2024-01-22T14:01:42.000000Z\",\n            \"group\": null,\n            \"name_priority\": null,\n            \"is_portal\": true,\n            \"is_portal_editable\": true,\n            \"name_portal\": \"Checkbox\",\n            \"is_top_level_column\": false,\n            \"options\": [\n                {\n                    \"id\": \"6730baf4-ff75-4501-9666-da98d19f5bbe\",\n                    \"field_id\": \"9b2753a8-d8f6-4ccd-a1cc-6de5befef910\",\n                    \"label\": \"Opt 1\",\n                    \"value\": \"Opt 1\",\n                    \"sort_order\": 1,\n                    \"created_at\": \"2024-01-22T14:01:36.000000Z\",\n                    \"updated_at\": \"2024-01-22T14:01:36.000000Z\"\n                },\n                {\n                    \"id\": \"ab417c99-c8c3-4958-99b9-73972c152153\",\n                    \"field_id\": \"9b2753a8-d8f6-4ccd-a1cc-6de5befef910\",\n                    \"label\": \"Opt 2\",\n                    \"value\": \"Opt 2\",\n                    \"sort_order\": 3,\n                    \"created_at\": \"2024-01-22T14:01:36.000000Z\",\n                    \"updated_at\": \"2024-01-22T14:01:36.000000Z\"\n                },\n                {\n                    \"id\": \"be222675-6968-4ee1-b88d-47d6d6c8cf76\",\n                    \"field_id\": \"9b2753a8-d8f6-4ccd-a1cc-6de5befef910\",\n                    \"label\": \"Opt 3\",\n                    \"value\": \"Opt 3\",\n                    \"sort_order\": 5,\n                    \"created_at\": \"2024-01-22T14:01:36.000000Z\",\n                    \"updated_at\": \"2024-01-22T14:01:36.000000Z\"\n                },\n                {\n                    \"id\": \"5cded8a9-c5d4-4f83-8fc4-bfafcb26fd0f\",\n                    \"field_id\": \"9b2753a8-d8f6-4ccd-a1cc-6de5befef910\",\n                    \"label\": \"Opt 4\",\n                    \"value\": \"Opt 4\",\n                    \"sort_order\": 7,\n                    \"created_at\": \"2024-01-22T14:01:36.000000Z\",\n                    \"updated_at\": \"2024-01-22T14:01:36.000000Z\"\n                }\n            ],\n            \"meta\": {\n                \"id\": \"9b2753a8-d8f6-4ccd-a1cc-6de5befef910\",\n                \"type\": \"group.field\"\n            }\n        }\n    ],\n    \"count\": {\n        \"total\": 3\n    }\n}"}],"_postman_id":"c2109336-62df-4330-a98f-4faebba1355e"}],"id":"08c06573-6921-4447-91e7-016e3d39c1e0","_postman_id":"08c06573-6921-4447-91e7-016e3d39c1e0","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Entities","item":[{"name":"List Entities","id":"fd8afa16-164f-480f-9f3a-a274cdf63ddb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entities","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entities"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include addresses</p>\n","type":"text/plain"},"key":"with[]","value":"addresses"},{"disabled":true,"description":{"content":"<p>Include emails</p>\n","type":"text/plain"},"key":"with[]","value":"emails"},{"disabled":true,"description":{"content":"<p>Include phones</p>\n","type":"text/plain"},"key":"with[]","value":"phones"},{"disabled":true,"description":{"content":"<p>Include projects</p>\n","type":"text/plain"},"key":"with[]","value":"projects"},{"disabled":true,"description":{"content":"<p>Include media</p>\n","type":"text/plain"},"key":"with[]","value":"media"},{"disabled":true,"description":{"content":"<p>Include fields including values (with top level fields)</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include entity fields including values (without top level fields)</p>\n","type":"text/plain"},"key":"with[]","value":"entity_fields"},{"disabled":true,"description":{"content":"<p>Include top level fields including values</p>\n","type":"text/plain"},"key":"with[]","value":"top_level_fields"},{"disabled":true,"description":{"content":"<p>Include fields for portal including values</p>\n","type":"text/plain"},"key":"with[]","value":"portal_fields"},{"disabled":true,"description":{"content":"<p>Include entity type</p>\n","type":"text/plain"},"key":"with[]","value":"entity_type"},{"disabled":true,"description":{"content":"<p>Include primary address, phone and email</p>\n","type":"text/plain"},"key":"with[]","value":"primary"},{"disabled":true,"description":{"content":"<p>Include entity relations</p>\n","type":"text/plain"},"key":"with[]","value":"relations"},{"disabled":true,"description":{"content":"<p>Include integrations</p>\n","type":"text/plain"},"key":"with[]","value":"integrations"},{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Array of Entity UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Entity UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Entity UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Filter by entity emails</p>\n","type":"text/plain"},"key":"filters[email]","value":"henk@mozard.nl"},{"disabled":true,"description":{"content":"<p>Filter by entity phone numbers</p>\n","type":"text/plain"},"key":"filters[phone]","value":"0612345678"},{"disabled":true,"description":{"content":"<p>Filter by entity name</p>\n","type":"text/plain"},"key":"filters[name]","value":"Henk"},{"disabled":true,"description":{"content":"<p>Filter by entity type UUID</p>\n","type":"text/plain"},"key":"filters[entity_type]","value":"1d7c9444-8e37-4626-909a-b85c798d065a"},{"disabled":true,"description":{"content":"<p>Filter by entity type UUIDs</p>\n","type":"text/plain"},"key":"filters[entity_types]","value":"[ea455aca-7c4d-4f19-a021-e131c9adf6f4, f1348634-20eb-4953-825d-c02353ff9de7]"},{"disabled":true,"description":{"content":"<p>Default sort (name)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by entity name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by entity UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by entity creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by entity update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[{"id":"184ed3b8-37a0-4bf7-8707-f72dc2f8d6b4","name":"List Entities","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entities","host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"path":["v1","entities"],"query":[{"key":"with[]","value":"addresses","type":"text","description":"Include addresses","disabled":true},{"key":"with[]","value":"emails","type":"text","description":"Include emails","disabled":true},{"key":"with[]","value":"phones","type":"text","description":"Include phones","disabled":true},{"key":"with[]","value":"projects","type":"text","description":"Include projects","disabled":true},{"key":"with[]","value":"media","type":"text","description":"Include media","disabled":true},{"key":"with[]","value":"fields","type":"text","description":"Include fields including values (with top level fields)","disabled":true},{"key":"with[]","value":"entity_fields","type":"text","description":"Include entity fields including values (without top level fields)","disabled":true},{"key":"with[]","value":"top_level_fields","type":"text","description":"Include top level fields including values","disabled":true},{"key":"with[]","value":"portal_fields","type":"text","description":"Include fields for portal including values","disabled":true},{"key":"with[]","value":"entity_type","type":"text","description":"Include entity type","disabled":true},{"key":"with[]","value":"primary","type":"text","description":"Include primary address, phone and email","disabled":true},{"key":"with[]","value":"relations","type":"text","description":"Include entity relations","disabled":true},{"key":"with[]","value":"integrations","type":"text","description":"Include integrations","disabled":true},{"key":"page","value":"1","type":"text","description":"Page number","disabled":true},{"key":"limit","value":"15","type":"text","description":"Items per page","disabled":true},{"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270","type":"text","description":"Entity UUID","disabled":true},{"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","type":"text","description":"Array of Entity UUID's","disabled":true},{"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759","type":"text","description":"Entity UUID to exclude from result","disabled":true},{"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","type":"text","description":"Array of Entity UUID's to exclude from result","disabled":true},{"key":"filters[email]","value":"henk@mozard.nl","type":"text","description":"Filter by entity emails","disabled":true},{"key":"filters[phone]","value":"0612345678","type":"text","description":"Filter by entity phone numbers","disabled":true},{"key":"filters[name]","value":"Henk","type":"text","description":"Filter by entity name","disabled":true},{"key":"filters[entity_type]","value":"1d7c9444-8e37-4626-909a-b85c798d065a","type":"text","description":"Filter by entity type UUID","disabled":true},{"key":"filters[entity_types]","value":"[ea455aca-7c4d-4f19-a021-e131c9adf6f4, f1348634-20eb-4953-825d-c02353ff9de7]","type":"text","description":"Filter by entity type UUIDs","disabled":true},{"key":"sort","value":"default","type":"text","description":"Default sort (name)","disabled":true},{"key":"sort","value":"name","type":"text","description":"Sort by entity name","disabled":true},{"key":"sort","value":"id","type":"text","description":"Sort by entity UUID","disabled":true},{"key":"sort","value":"created_at","type":"text","description":"Sort by entity creation datetime","disabled":true},{"key":"sort","value":"updated_at","type":"text","description":"Sort by entity update datetime","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:54:10 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"498","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 4,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 4,\n    \"data\": [\n        {\n            \"id\": \"9b2141c5-7613-46fb-a814-a4d5cd22dd02\",\n            \"name\": \"Alex Rood\",\n            \"username\": null,\n            \"is_active\": true,\n            \"created_at\": \"2024-01-19T13:36:36.000000Z\",\n            \"meta\": {\n                \"id\": \"9b2141c5-7613-46fb-a814-a4d5cd22dd02\",\n                \"type\": \"entity\"\n            }\n        },\n        {\n            \"id\": \"9b53a317-5c03-4f31-a087-c163bc7d014f\",\n            \"name\": \"Mozard\",\n            \"username\": null,\n            \"is_active\": true,\n            \"created_at\": \"2024-02-13T14:40:08.000000Z\",\n            \"meta\": {\n                \"id\": \"9b53a317-5c03-4f31-a087-c163bc7d014f\",\n                \"type\": \"entity\"\n            }\n        },\n        {\n            \"id\": \"9b2140b8-d434-4781-a689-0ea0c4fdf3f5\",\n            \"name\": \"Isabelle Smits\",\n            \"username\": null,\n            \"is_active\": true,\n            \"created_at\": \"2024-01-19T13:33:40.000000Z\",\n            \"meta\": {\n                \"id\": \"9b2140b8-d434-4781-a689-0ea0c4fdf3f5\",\n                \"type\": \"entity\"\n            }\n        },\n        {\n            \"id\": \"9b213f7f-2c85-4701-b151-04c5758d7943\",\n            \"name\": \"Joseph Budiarto\",\n            \"username\": null,\n            \"is_active\": true,\n            \"created_at\": \"2024-01-19T13:30:15.000000Z\",\n            \"meta\": {\n                \"id\": \"9b213f7f-2c85-4701-b151-04c5758d7943\",\n                \"type\": \"entity\"\n            }\n        }\n    ]\n}"}],"_postman_id":"fd8afa16-164f-480f-9f3a-a274cdf63ddb"},{"name":"Read Entity","id":"d8e69fd6-25e7-44db-8baf-c05ed4ca0bbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entities/{{entity_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entities","{{entity_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include addresses</p>\n","type":"text/plain"},"key":"with[]","value":"addresses"},{"disabled":true,"description":{"content":"<p>Include emails</p>\n","type":"text/plain"},"key":"with[]","value":"emails"},{"disabled":true,"description":{"content":"<p>Include phones</p>\n","type":"text/plain"},"key":"with[]","value":"phones"},{"disabled":true,"description":{"content":"<p>Include projects</p>\n","type":"text/plain"},"key":"with[]","value":"projects"},{"disabled":true,"description":{"content":"<p>Include media</p>\n","type":"text/plain"},"key":"with[]","value":"media"},{"disabled":true,"description":{"content":"<p>Include fields including values (with top level fields)</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include entity fields including values (without top level fields)</p>\n","type":"text/plain"},"key":"with[]","value":"entity_fields"},{"disabled":true,"description":{"content":"<p>Include top level fields including values</p>\n","type":"text/plain"},"key":"with[]","value":"top_level_fields"},{"disabled":true,"description":{"content":"<p>Include fields for portal including values</p>\n","type":"text/plain"},"key":"with[]","value":"portal_fields"},{"disabled":true,"description":{"content":"<p>Include entity type</p>\n","type":"text/plain"},"key":"with[]","value":"entity_type"},{"disabled":true,"description":{"content":"<p>Include primary address, phone and email</p>\n","type":"text/plain"},"key":"with[]","value":"primary"},{"disabled":true,"description":{"content":"<p>Include entity relations</p>\n","type":"text/plain"},"key":"with[]","value":"relations"},{"disabled":true,"description":{"content":"<p>Include integrations</p>\n","type":"text/plain"},"key":"with[]","value":"integrations"}],"variable":[]}},"response":[{"id":"57f3ea17-3d97-4678-abc2-377a8ebd98da","name":"Read Entity","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entities/9b213f7f-2c85-4701-b151-04c5758d7943?with[]=entity_type","host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"path":["v1","entities","9b213f7f-2c85-4701-b151-04c5758d7943"],"query":[{"key":"with[]","value":"addresses","type":"text","description":"Include addresses","disabled":true},{"key":"with[]","value":"emails","type":"text","description":"Include emails","disabled":true},{"key":"with[]","value":"phones","type":"text","description":"Include phones","disabled":true},{"key":"with[]","value":"projects","type":"text","description":"Include projects","disabled":true},{"key":"with[]","value":"media","type":"text","description":"Include media","disabled":true},{"key":"with[]","value":"fields","type":"text","description":"Include fields including values (with top level fields)","disabled":true},{"key":"with[]","value":"entity_fields","type":"text","description":"Include entity fields including values (without top level fields)","disabled":true},{"key":"with[]","value":"top_level_fields","description":"Include top level fields including values","disabled":true},{"key":"with[]","value":"portal_fields","type":"text","description":"Include fields for portal including values","disabled":true},{"key":"with[]","value":"entity_type","type":"text","description":"Include entity type"},{"key":"with[]","value":"primary","type":"text","description":"Include primary address, phone and email","disabled":true},{"key":"with[]","value":"relations","type":"text","description":"Include entity relations","disabled":true},{"key":"with[]","value":"integrations","type":"text","description":"Include integrations","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:55:04 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"498","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9b213f7f-2c85-4701-b151-04c5758d7943\",\n    \"name\": \"Joseph Budiarto\",\n    \"username\": null,\n    \"is_active\": true,\n    \"created_at\": \"2024-01-19T13:30:15.000000Z\",\n    \"meta\": {\n        \"id\": \"9b213f7f-2c85-4701-b151-04c5758d7943\",\n        \"type\": \"entity\"\n    },\n    \"entity_type\": {\n        \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n        \"name\": \"Persoon\",\n        \"icon\": null,\n        \"description\": null,\n        \"is_editable\": true,\n        \"is_deleteable\": true,\n        \"created_at\": \"2023-11-10T12:31:05.000000Z\",\n        \"meta\": {\n            \"id\": \"1336b9ab-abb5-490a-9f64-a182ff209916\",\n            \"type\": \"entity.type\"\n        }\n    }\n}"}],"_postman_id":"d8e69fd6-25e7-44db-8baf-c05ed4ca0bbe"},{"name":"Create Entity","id":"6d89f614-807c-4f2a-9677-74771f357e69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"entity_type","value":"45e5e61f-90bb-4345-884d-9cf1b3c18102","type":"text","description":"<p>Entity type UUID (required)</p>\n"},{"key":"name","value":"Henk","type":"text","description":"<p>Entity name, max 191 characters</p>\n"},{"key":"is_active","value":"true","type":"text","description":"<p>true, false</p>\n"},{"key":"emails[0][value]","value":"henk@mozard.nl","type":"text","description":"<p>Array of emails for entity. Here email address</p>\n"},{"key":"emails[0][label]","value":"work","type":"text","description":"<p>work, private, other</p>\n"},{"key":"emails[0][is_primary]","value":"true","type":"text","description":"<p>true, false. Only 1 email can be primary</p>\n"},{"key":"phones[0][value]","value":"0612345678","type":"text","description":"<p>Array of phone numbers for entity. Here phone number</p>\n"},{"key":"phones[0][label]","value":"work","type":"text","description":"<p>work, private, other</p>\n"},{"key":"phones[0][is_primary]","value":"true","type":"text","description":"<p>true, false. Only 1 phone number can be primary</p>\n"},{"key":"addresses[0][post_code]","value":"1101BE","type":"text","description":"<p>Array of addresses for entity. Here postal code</p>\n"},{"key":"addresses[0][number]","value":"56","type":"text","description":"<p>House number</p>\n"},{"key":"addresses[0][number_addition]","value":"R","type":"text","description":"<p>House number addition</p>\n"},{"key":"addresses[0][street]","value":"Hoogoorddreef","type":"text","description":"<p>Street</p>\n"},{"key":"addresses[0][city]","value":"Amsterdam","type":"text","description":"<p>City</p>\n"},{"key":"addresses[0][is_primary]","value":"true","type":"text","description":"<p>true, false. Only 1 address can be primary</p>\n"},{"key":"projects[0][id]","value":"0b9028ae-9286-48e7-aeea-8477f2aac6a3","type":"text","description":"<p>Array of project UUID's</p>\n"},{"key":"fields[0][id]","value":"f04b610d-c33f-42eb-96b2-c391a4c42af8","type":"text","description":"<p>Array of fields. Here field UUID (required)</p>\n"},{"key":"fields[0][value]","value":"Blue","type":"text","description":"<p>Field value</p>\n"},{"key":"relations[0][id]","value":"f04b610d-c33f-42eb-96b2-c391a4c42af8","type":"text","description":"<p>Array of relations. Here relation UUID (required)</p>\n"},{"key":"relations[0][function]","value":"Werkgever","type":"text","description":"<p>Function of the relation compared to you</p>\n"},{"key":"relations[0][is_primary]","value":"true","type":"text","description":"<p>true, false. Only 1 relation can be primary</p>\n"},{"key":"relations[0][is_equivalent_function]","value":"false","type":"text","description":"<p>true, false. If true the function and relation_function will be the same</p>\n"},{"key":"relations[0][relation_function]","value":"Werknemer","type":"text","description":"<p>Your function compared to the relation</p>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entities","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entities"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d89f614-807c-4f2a-9677-74771f357e69"},{"name":"Update Entity","id":"0fa957f1-1a0c-42a1-af3f-92c257004522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Henk","type":"text","description":"<p>Entity name, max 191 characters</p>\n"},{"key":"is_active","value":"true","type":"text","description":"<p>true, false</p>\n"},{"key":"emails[0][id]","value":"6ef9ee86-4161-4985-b664-f9ad647ab3f6","type":"text","description":"<p>Array of emails for entity. Here email address UUID</p>\n"},{"key":"emails[0][value]","value":"henk@mozard.nl","type":"text","description":"<p>Email address</p>\n"},{"key":"emails[0][label]","value":"work","type":"text","description":"<p>work, private, other</p>\n"},{"key":"emails[0][is_primary]","value":"true","type":"text","description":"<p>true, false. Only 1 email can be primary</p>\n"},{"key":"phones[0][id]","value":"1cd6e1ce-0cd2-47d9-9d60-5556676d8926","type":"text","description":"<p>Array of phone numbers for entity. Here phone number UUID</p>\n"},{"key":"phones[0][value]","value":"0612345678","type":"text","description":"<p>Phone number</p>\n"},{"key":"phones[0][label]","value":"work","type":"text","description":"<p>work, private, other</p>\n"},{"key":"phones[0][is_primary]","value":"true","type":"text","description":"<p>true, false. Only 1 phone number can be primary</p>\n"},{"key":"addresses[0][id]","value":"7065c869-636f-41ac-920d-ce0a2ab55712","type":"text","description":"<p>Array of addresses for entity. Here address UUID</p>\n"},{"key":"addresses[0][post_code]","value":"1101BE","type":"text","description":"<p>Postal code</p>\n"},{"key":"addresses[0][number]","value":"56","type":"text","description":"<p>House number</p>\n"},{"key":"addresses[0][number_addition]","value":"R","type":"text","description":"<p>House number addition</p>\n"},{"key":"addresses[0][street]","value":"Hoogoorddreef","type":"text","description":"<p>Street</p>\n"},{"key":"addresses[0][city]","value":"Amsterdam","type":"text","description":"<p>City</p>\n"},{"key":"addresses[0][is_primary]","value":"true","type":"text","description":"<p>true, false. Only 1 address can be primary</p>\n"},{"key":"projects[0][id]","value":"0b9028ae-9286-48e7-aeea-8477f2aac6a3","type":"text","description":"<p>Array of project UUID's</p>\n"},{"key":"fields[0][id]","value":"f04b610d-c33f-42eb-96b2-c391a4c42af8","type":"text","description":"<p>Array of fields. Here field UUID (required)</p>\n"},{"key":"fields[0][value]","value":"Blue","type":"text","description":"<p>Field value</p>\n"},{"key":"relations[0][id]","value":"f04b610d-c33f-42eb-96b2-c391a4c42af8","type":"text","description":"<p>Array of relations. Here relation UUID (required)</p>\n"},{"key":"relations[0][function]","value":"Werkgever","type":"text","description":"<p>Function of the relation compared to you</p>\n"},{"key":"relations[0][is_primary]","value":"true","type":"text","description":"<p>true, false. Only 1 relation can be primary</p>\n"},{"key":"relations[0][is_equivalent_function]","value":"false","type":"text","description":"<p>true, false. If true the function and relation_function will be the same</p>\n"},{"key":"relations[0][relation_function]","value":"Werknemer","type":"text","description":"<p>Your function compared to the relation</p>\n"},{"key":"credentials[username]","value":"henk","type":"text","description":"<p>Username of entity</p>\n"},{"key":"credentials[password]","value":"secret","type":"text","description":"<p>Password of entity</p>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entities/{{entity_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entities","{{entity_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"0fa957f1-1a0c-42a1-af3f-92c257004522"},{"name":"Delete Entity","id":"0d7eb768-5968-4229-93bc-97d23a3a0cdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/entities/{{entity_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","entities","{{entity_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d7eb768-5968-4229-93bc-97d23a3a0cdb"}],"id":"4ab98e0c-dc64-4647-b23b-12904f17c91c","_postman_id":"4ab98e0c-dc64-4647-b23b-12904f17c91c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Labels","item":[{"name":"List Labels","id":"bdc0f928-af4d-4b69-9386-8e57363ea155","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/labels","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","labels"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include addresses</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Include emails</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include phones</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Include projects</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Include media</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Include fields including values (with top level fields)</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>address, contact, contact_result, document_function, document_structure, document_status, task</p>\n","type":"text/plain"},"key":"filters[type]","value":"address"},{"disabled":true,"description":{"content":"<p>address, contact, contact_result, document_function, document_structure, document_status, task</p>\n","type":"text/plain"},"key":"filters[types]","value":"[addres, contact]"},{"disabled":true,"description":{"content":"<p>Include fields for portal including values</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Include entity type</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Include primary address, phone and email</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"key":"sort","value":"created_at"},{"disabled":true,"key":"sort","value":"updated_at"}],"variable":[]}},"response":[{"id":"9d1dc45c-7c19-4eb6-a6fe-8d653e140ea2","name":"List Labels","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/labels","host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"path":["v1","labels"],"query":[{"key":"with[]","value":"addresses","description":"Include addresses","type":"text","disabled":true},{"key":"with[]","value":"emails","description":"Include emails","type":"text","disabled":true},{"key":"with[]","value":"phones","description":"Include phones","type":"text","disabled":true},{"key":"with[]","value":"projects","description":"Include projects","type":"text","disabled":true},{"key":"with[]","value":"media","description":"Include media","type":"text","disabled":true},{"key":"with[]","value":"fields","description":"Include fields including values (with top level fields)","type":"text","disabled":true},{"key":"with[]","value":"entity_fields","description":"Include entity fields including values (without top level fields)","type":"text","disabled":true},{"key":"with[]","value":"top_level_fields","description":"Include top level fields including values","type":"text","disabled":true},{"key":"with[]","value":"portal_fields","description":"Include fields for portal including values","type":"text","disabled":true},{"key":"with[]","value":"entity_type","description":"Include entity type","type":"text","disabled":true},{"key":"with[]","value":"primary","description":"Include primary address, phone and email","type":"text","disabled":true},{"key":"with[]","value":"relations","description":"Include entity relations","type":"text","disabled":true},{"key":"with[]","value":"integrations","description":"Include integrations","type":"text","disabled":true},{"key":"page","value":"1","description":"Page number","type":"text","disabled":true},{"key":"limit","value":"15","description":"Items per page","type":"text","disabled":true},{"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270","description":"Entity UUID","type":"text","disabled":true},{"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of Entity UUID's","type":"text","disabled":true},{"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759","description":"Entity UUID to exclude from result","type":"text","disabled":true},{"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of Entity UUID's to exclude from result","type":"text","disabled":true},{"key":"filters[email]","value":"henk@mozard.nl","description":"Filter by entity emails","type":"text","disabled":true},{"key":"filters[phone]","value":"0612345678","description":"Filter by entity phone numbers","type":"text","disabled":true},{"key":"filters[name]","value":"Henk","description":"Filter by entity name","type":"text","disabled":true},{"key":"filters[entity_type]","value":"1d7c9444-8e37-4626-909a-b85c798d065a","description":"Filter by entity type UUID","type":"text","disabled":true},{"key":"filters[entity_types]","value":"[ea455aca-7c4d-4f19-a021-e131c9adf6f4, f1348634-20eb-4953-825d-c02353ff9de7]","description":"Filter by entity type UUIDs","type":"text","disabled":true},{"key":"sort","value":"default","description":"Default sort (name)","type":"text","disabled":true},{"key":"sort","value":"name","description":"Sort by entity name","type":"text","disabled":true},{"key":"sort","value":"id","description":"Sort by entity UUID","type":"text","disabled":true},{"key":"sort","value":"created_at","description":"Sort by entity creation datetime","type":"text","disabled":true},{"key":"sort","value":"updated_at","description":"Sort by entity update datetime","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:54:10 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"498","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 23,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 2,\n    \"next_page_url\": \"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/labels?page=2\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 15,\n    \"data\": [\n        {\n            \"id\": \"45054436-4034-44b4-9da3-8ab75d61e79b\",\n            \"name\": \"Anders\",\n            \"type\": \"contact\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"a35de4d1-55f5-4d9e-a96a-dd6aa4475c6c\",\n            \"name\": \"E-mail\",\n            \"type\": \"contact\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"c0aa0635-3806-4e12-9a1f-3b87be6f5d3e\",\n            \"name\": \"Fysiek\",\n            \"type\": \"contact\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"8e2ace1e-2fbf-4099-b81c-de62a4f38b4d\",\n            \"name\": \"Telefoon\",\n            \"type\": \"contact\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"f763c721-d6bd-434a-abfe-2cff8ebbedd9\",\n            \"name\": \"Geen gehoor\",\n            \"type\": \"contact_result\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"fb7838a9-e621-4a54-b060-941151cd62e0\",\n            \"name\": \"Geen interesse\",\n            \"type\": \"contact_result\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"7a116dd9-a59d-44b6-a6a0-11c12356a71b\",\n            \"name\": \"Terugbellen\",\n            \"type\": \"contact_result\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"67fac52b-0745-4295-a3b6-d29796864f7a\",\n            \"name\": \"Voicemail\",\n            \"type\": \"contact_result\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"9b8d80f7-58ba-4be4-ab4b-82b642cd2157\",\n            \"name\": \"Anders\",\n            \"type\": \"address\",\n            \"created_at\": \"2024-03-13T09:02:43.000000Z\"\n        },\n        {\n            \"id\": \"9c8b5f76-42a7-4fdb-b56c-c63595e576fe\",\n            \"name\": \"Privé\",\n            \"type\": \"address\",\n            \"created_at\": \"2024-07-17T13:49:19.000000Z\"\n        },\n        {\n            \"id\": \"9c8b5f85-7501-467f-8c9e-6a367d5e51a3\",\n            \"name\": \"Werk\",\n            \"type\": \"address\",\n            \"created_at\": \"2024-07-17T13:49:29.000000Z\"\n        },\n        {\n            \"id\": \"aa0951c6-b694-4fbd-b9f5-5b005883e1e9\",\n            \"name\": \"Aanvraag\",\n            \"type\": \"document_function\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"e0a23722-080c-41d3-96a8-ea54d9f707a5\",\n            \"name\": \"Advies\",\n            \"type\": \"document_function\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"2b05987c-58e6-476d-aa84-84e5c6221f33\",\n            \"name\": \"Beleid\",\n            \"type\": \"document_function\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        },\n        {\n            \"id\": \"795a6827-0bb4-44b4-b460-5071d6a1638e\",\n            \"name\": \"Bezwaar\",\n            \"type\": \"document_function\",\n            \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n        }\n    ]\n}"}],"_postman_id":"bdc0f928-af4d-4b69-9386-8e57363ea155"},{"name":"Read Label","id":"162bd56b-99ad-4ede-8eea-aef4c4d8c49f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/labels/{{label_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","labels","{{label_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include addresses</p>\n","type":"text/plain"},"key":"with[]","value":"addresses"},{"disabled":true,"description":{"content":"<p>Include emails</p>\n","type":"text/plain"},"key":"with[]","value":"emails"},{"disabled":true,"description":{"content":"<p>Include phones</p>\n","type":"text/plain"},"key":"with[]","value":"phones"},{"disabled":true,"description":{"content":"<p>Include projects</p>\n","type":"text/plain"},"key":"with[]","value":"projects"},{"disabled":true,"description":{"content":"<p>Include media</p>\n","type":"text/plain"},"key":"with[]","value":"media"},{"disabled":true,"description":{"content":"<p>Include fields including values (with top level fields)</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include entity fields including values (without top level fields)</p>\n","type":"text/plain"},"key":"with[]","value":"entity_fields"},{"disabled":true,"description":{"content":"<p>Include top level fields including values</p>\n","type":"text/plain"},"key":"with[]","value":"top_level_fields"},{"disabled":true,"description":{"content":"<p>Include fields for portal including values</p>\n","type":"text/plain"},"key":"with[]","value":"portal_fields"},{"disabled":true,"description":{"content":"<p>Include entity type</p>\n","type":"text/plain"},"key":"with[]","value":"entity_type"},{"disabled":true,"description":{"content":"<p>Include primary address, phone and email</p>\n","type":"text/plain"},"key":"with[]","value":"primary"},{"disabled":true,"description":{"content":"<p>Include entity relations</p>\n","type":"text/plain"},"key":"with[]","value":"relations"},{"disabled":true,"description":{"content":"<p>Include integrations</p>\n","type":"text/plain"},"key":"with[]","value":"integrations"}],"variable":[]}},"response":[{"id":"1aaa2d55-0b2b-42d1-8b5e-f560c1083b5c","name":"Read Label","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/labels/9b213f7f-2c85-4701-b151-04c5758d7943","host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"path":["v1","labels","9b213f7f-2c85-4701-b151-04c5758d7943"],"query":[{"key":"with[]","value":"addresses","description":"Include addresses","type":"text","disabled":true},{"key":"with[]","value":"emails","description":"Include emails","type":"text","disabled":true},{"key":"with[]","value":"phones","description":"Include phones","type":"text","disabled":true},{"key":"with[]","value":"projects","description":"Include projects","type":"text","disabled":true},{"key":"with[]","value":"media","description":"Include media","type":"text","disabled":true},{"key":"with[]","value":"fields","description":"Include fields including values (with top level fields)","type":"text","disabled":true},{"key":"with[]","value":"entity_fields","description":"Include entity fields including values (without top level fields)","type":"text","disabled":true},{"key":"with[]","value":"top_level_fields","description":"Include top level fields including values","disabled":true},{"key":"with[]","value":"portal_fields","description":"Include fields for portal including values","type":"text","disabled":true},{"key":"with[]","value":"primary","description":"Include primary address, phone and email","type":"text","disabled":true},{"key":"with[]","value":"relations","description":"Include entity relations","type":"text","disabled":true},{"key":"with[]","value":"integrations","description":"Include integrations","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:55:04 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"498","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"45054436-4034-44b4-9da3-8ab75d61e79b\",\n    \"name\": \"Anders\",\n    \"type\": \"contact\",\n    \"created_at\": \"2024-02-16T17:23:13.000000Z\"\n}"}],"_postman_id":"162bd56b-99ad-4ede-8eea-aef4c4d8c49f"}],"id":"bb9e2423-2e0c-4dc7-aa52-789768f44388","_postman_id":"bb9e2423-2e0c-4dc7-aa52-789768f44388","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Media","item":[{"name":"List Media","id":"015abcbb-e412-4f09-9284-9cbec6166136","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/media","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Media UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Media UUID</p>\n","type":"text/plain"},"key":"filters[ids][]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Target UUID</p>\n","type":"text/plain"},"key":"filters[target_id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Target UUID</p>\n","type":"text/plain"},"key":"filters[target_ids][]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Moment UUID</p>\n","type":"text/plain"},"key":"filters[moment]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Moment UUID</p>\n","type":"text/plain"},"key":"filters[moments][]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Text</p>\n","type":"text/plain"},"key":"filters[name]","value":"contract"},{"disabled":true,"description":{"content":"<p>Text</p>\n","type":"text/plain"},"key":"filters[collection]","value":"pdf"},{"disabled":true,"description":{"content":"<p>Text</p>\n","type":"text/plain"},"key":"filters[collections][]","value":"pdf"},{"disabled":true,"description":{"content":"<p>Search by name</p>\n","type":"text/plain"},"key":"filters[search]","value":"contract"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_deleted]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[has_retention]","value":"true"},{"disabled":true,"description":{"content":"<p>Label UUID</p>\n","type":"text/plain"},"key":"filters[status]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Label UUID</p>\n","type":"text/plain"},"key":"filters[statuses]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[entity]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[entities]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Media type UUID</p>\n","type":"text/plain"},"key":"filters[media_type]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Media type UUID</p>\n","type":"text/plain"},"key":"filters[media_types][]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Date (Y-m-d H:i:s)</p>\n","type":"text/plain"},"key":"filters[created_at]","value":"2024-02-26 00:00:00"},{"disabled":true,"description":{"content":"<p>Date (Y-m-d H:i:s)</p>\n","type":"text/plain"},"key":"filters[starts_at]","value":"2024-02-26 00:00:00"},{"disabled":true,"description":{"content":"<p>Date (Y-m-d H:i:s)</p>\n","type":"text/plain"},"key":"filters[ends_at]","value":"2024-02-26 00:00:00"},{"disabled":true,"description":{"content":"<p>Sort by default</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Include media type</p>\n","type":"text/plain"},"key":"with[]","value":"media_type"},{"disabled":true,"description":{"content":"<p>Include status label</p>\n","type":"text/plain"},"key":"with[]","value":"status_label"},{"disabled":true,"description":{"content":"<p>Include moment</p>\n","type":"text/plain"},"key":"with[]","value":"moment"},{"disabled":true,"description":{"content":"<p>Include target</p>\n","type":"text/plain"},"key":"with[]","value":"target"},{"disabled":true,"description":{"content":"<p>include links</p>\n","type":"text/plain"},"key":"with[]","value":"links"},{"disabled":true,"description":{"content":"<p>Include custom properties</p>\n","type":"text/plain"},"key":"with[]","value":"custom_properties"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include entity</p>\n","type":"text/plain"},"key":"with[]","value":"entity"},{"disabled":true,"description":{"content":"<p>Include fields</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include groups</p>\n","type":"text/plain"},"key":"with[]","value":"groups"}],"variable":[]}},"response":[],"_postman_id":"015abcbb-e412-4f09-9284-9cbec6166136"},{"name":"Create Media","id":"b0419052-93b7-453c-aa63-aafc14e14311","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"my-file","type":"text","description":"<p>Name of the media (max 191 characters, required)</p>\n"},{"key":"target.id","value":"753ccb76-1f08-4df1-824c-cd028bb85025","description":"<p>Target UUID (required)</p>\n","type":"text"},{"key":"target.type","value":"entity","type":"text","description":"<p>Target model type (required)</p>\n"},{"key":"media_type.id","value":"9df59b4e-3a5d-4ea9-9452-bde3f627a0ba","type":"text","description":"<p>Document type UUID</p>\n"},{"key":"collection","value":"default","type":"text","description":"<p>In which collection to save media</p>\n"},{"key":"file","type":"file","description":"<p>File (required)</p>\n","value":null},{"key":"starts_at","value":"2024-03-01","type":"text","description":"<p>Start date when media is available</p>\n"},{"key":"ends_at","value":"2024-04-01","type":"text","description":"<p>End date when media expires</p>\n"},{"key":"status_label.id","value":"75bbc042-060c-469a-a6ac-63cbba72aa61","type":"text","description":"<p>Label UUID</p>\n"},{"key":"moment.id","value":"75bbc042-060c-469a-a6ac-63cbba72aa61","type":"text","description":"<p>Contact moment UUID</p>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/media","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0419052-93b7-453c-aa63-aafc14e14311"},{"name":"Update Media","id":"b2567912-7c50-4efa-9623-77dda0339b3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"my-file","type":"text","description":"<p>Name of the media (max 191 characters)</p>\n"},{"key":"target","value":"DENY","description":"<p>Target</p>\n","type":"text"},{"key":"collection","value":"default","type":"text","description":"<p>In which collection to save media</p>\n"},{"key":"file","type":"text","description":"<p>File</p>\n","value":"DENY"},{"key":"starts_at","value":"2024-03-01","type":"text","description":"<p>Start date when media is available</p>\n"},{"key":"ends_at","value":"2024-04-01","type":"text","description":"<p>End date when media expires</p>\n"},{"key":"status_label.id","value":"75bbc042-060c-469a-a6ac-63cbba72aa61","type":"text","description":"<p>Label UUID</p>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/media/{{media_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media","{{media_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2567912-7c50-4efa-9623-77dda0339b3e"},{"name":"Delete Media","id":"e8ebbdec-cbde-43b1-bc9f-96b65f3a4557","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments/{{moment_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments","{{moment_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8ebbdec-cbde-43b1-bc9f-96b65f3a4557"},{"name":"Read Media","id":"3e711587-a9b7-46d0-baa8-73118586903a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/media/{{media_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","media","{{media_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include media type</p>\n","type":"text/plain"},"key":"with[]","value":"media_type"},{"disabled":true,"description":{"content":"<p>Include status label</p>\n","type":"text/plain"},"key":"with[]","value":"status_label"},{"disabled":true,"description":{"content":"<p>Include moment</p>\n","type":"text/plain"},"key":"with[]","value":"moment"},{"disabled":true,"description":{"content":"<p>Include target</p>\n","type":"text/plain"},"key":"with[]","value":"target"},{"disabled":true,"description":{"content":"<p>include links</p>\n","type":"text/plain"},"key":"with[]","value":"links"},{"disabled":true,"description":{"content":"<p>Include custom properties</p>\n","type":"text/plain"},"key":"with[]","value":"custom_properties"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include entity</p>\n","type":"text/plain"},"key":"with[]","value":"entity"},{"disabled":true,"description":{"content":"<p>Include fields</p>\n","type":"text/plain"},"key":"with[]","value":"fields"},{"disabled":true,"description":{"content":"<p>Include groups</p>\n","type":"text/plain"},"key":"with[]","value":"groups"}],"variable":[]}},"response":[],"_postman_id":"3e711587-a9b7-46d0-baa8-73118586903a"}],"id":"b31b817a-b578-4ada-b399-5b2587985c64","_postman_id":"b31b817a-b578-4ada-b399-5b2587985c64","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Messages","item":[{"name":"List Messages","id":"eeb2da29-f25e-4b2c-8464-a314ec7e13db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/messages","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","messages"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include User that created the message</p>\n","type":"text/plain"},"key":"with[]","value":"author"},{"disabled":true,"description":{"content":"<p>Include additional data of the message</p>\n","type":"text/plain"},"key":"with[]","value":"data"},{"disabled":true,"description":{"content":"<p>Include additional data if the message is for a contact moment or media</p>\n","type":"text/plain"},"key":"with[]","value":"message_data"},{"disabled":true,"description":{"content":"<p>Include entity</p>\n","type":"text/plain"},"key":"with[]","value":"entity"},{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Message UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Message UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Message UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Message UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Search the message body</p>\n","type":"text/plain"},"key":"filters[search]","value":"We zijn gebeld door"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[author]","value":"0b77bd6f-6222-44da-9a1e-99d8f196dc5a"},{"disabled":true,"description":{"content":"<p>Array of User UUID's</p>\n","type":"text/plain"},"key":"filters[authors]","value":"[0b77bd6f-6222-44da-9a1e-99d8f196dc5a, 332fce09-dacf-40a1-862a-c530c8902166]"},{"disabled":true,"description":{"content":"<p>Model UUID where message is attached to</p>\n","type":"text/plain"},"key":"filters[target]","value":"0b77bd6f-6222-44da-9a1e-99d8f196dc5a"},{"disabled":true,"description":{"content":"<p>Array of Model UUID's where message is attached to</p>\n","type":"text/plain"},"key":"filters[targets]","value":"[0b77bd6f-6222-44da-9a1e-99d8f196dc5a, 332fce09-dacf-40a1-862a-c530c8902166]"},{"disabled":true,"description":{"content":"<p>Model type where message is attached to</p>\n","type":"text/plain"},"key":"filters[target_type]","value":"entity"},{"disabled":true,"description":{"content":"<p>Array of Model types where message is attached to</p>\n","type":"text/plain"},"key":"filters[target_types]","value":"[entity]"},{"disabled":true,"description":{"content":"<p>comment, contact_moment, media, task</p>\n","type":"text/plain"},"key":"filters[type]","value":"comment"},{"disabled":true,"description":{"content":"<p>comment, contact_moment, media, task</p>\n","type":"text/plain"},"key":"filters[types]","value":"[comment, contact_moment]"},{"disabled":true,"description":{"content":"<p>Filter by creation date period. Both start and end dates need to be present to work</p>\n","type":"text/plain"},"key":"filters[created_at][from]","value":"2024-01-01"},{"disabled":true,"description":{"content":"<p>Filter by creation date period. Both start and end dates need to be present to work</p>\n","type":"text/plain"},"key":"filters[created_at][to]","value":"2024-01-02"},{"disabled":true,"description":{"content":"<p>Tag UUID</p>\n","type":"text/plain"},"key":"filters[tag]","value":"0b77bd6f-6222-44da-9a1e-99d8f196dc5a"},{"disabled":true,"description":{"content":"<p>Array of Tag UUID's</p>\n","type":"text/plain"},"key":"filters[tags]","value":"[0b77bd6f-6222-44da-9a1e-99d8f196dc5a, 332fce09-dacf-40a1-862a-c530c8902166]"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[entity]","value":"0b77bd6f-6222-44da-9a1e-99d8f196dc5a"},{"disabled":true,"description":{"content":"<p>Array of Entity UUID's</p>\n","type":"text/plain"},"key":"filters[entities]","value":"[0b77bd6f-6222-44da-9a1e-99d8f196dc5a, 332fce09-dacf-40a1-862a-c530c8902166]"},{"disabled":true,"description":{"content":"<p>Default sort (date)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by contact moment created_at if applicable or message created_at</p>\n","type":"text/plain"},"key":"sort","value":"date"},{"disabled":true,"description":{"content":"<p>Sort by message UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by contact moments creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by contact moment update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[],"_postman_id":"eeb2da29-f25e-4b2c-8464-a314ec7e13db"},{"name":"Read Message","id":"448d5687-901d-4995-8ee5-b30b445f4e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/messages/{{message_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","messages","{{message_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include User that created the message</p>\n","type":"text/plain"},"key":"with[]","value":"author"},{"disabled":true,"description":{"content":"<p>Include additional data of the message</p>\n","type":"text/plain"},"key":"with[]","value":"data"},{"disabled":true,"description":{"content":"<p>Include additional data if the message is for a contact moment or media</p>\n","type":"text/plain"},"key":"with[]","value":"message_data"},{"disabled":true,"description":{"content":"<p>Include entity</p>\n","type":"text/plain"},"key":"with[]","value":"entity"}],"variable":[]}},"response":[],"_postman_id":"448d5687-901d-4995-8ee5-b30b445f4e7d"},{"name":"Create Message","id":"9df9893c-8787-47de-901d-f25f764481f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"target.id","value":"ebcefd1d-5f61-49a5-964e-955f7fa90810","type":"text","description":"<p>UUID of target. Required</p>\n"},{"key":"target.type","value":"entity","description":"<p>Model type of target (entity). Required</p>\n","type":"text"},{"key":"messageable.id","value":"d9883b64-a48e-4014-9d25-3d2d5e5cd674","type":"text","description":"<p>UUID of messageable</p>\n"},{"key":"messageable.type","value":"moment","description":"<p>Model type of messageable (media, moment, task)</p>\n","type":"text"},{"key":"type","value":"comment","type":"text","description":"<p>Type of message (comment, media, moment, task)</p>\n"},{"key":"body","value":"Body of message","type":"text","description":"<p>Body of message. Required</p>\n"},{"key":"tag","value":"Tag","type":"text","description":"<p>A string to tag the message with</p>\n"},{"key":"author_user_id","value":"DENY","type":"text","description":"<ul>\n<li></li>\n</ul>\n"},{"key":"data","value":"DENY","type":"text","description":"<ul>\n<li></li>\n</ul>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/messages","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","messages"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"9df9893c-8787-47de-901d-f25f764481f2"}],"id":"daf702cb-af99-405f-8455-ef3dad7008b7","_postman_id":"daf702cb-af99-405f-8455-ef3dad7008b7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Tasks","item":[{"name":"List Tasks","id":"0e1ecae4-5975-46c0-ad5f-068c81e37206","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/tasks","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","tasks"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include responsisble user of the task</p>\n","type":"text/plain"},"key":"with[]","value":"owner"},{"disabled":true,"description":{"content":"<p>Include user that completed the task</p>\n","type":"text/plain"},"key":"with[]","value":"completer"},{"disabled":true,"description":{"content":"<p>Include entity</p>\n","type":"text/plain"},"key":"with[]","value":"entity"},{"disabled":true,"description":{"content":"<p>Include project</p>\n","type":"text/plain"},"key":"with[]","value":"project"},{"disabled":true,"description":{"content":"<p>Include label</p>\n","type":"text/plain"},"key":"with[]","value":"label"},{"disabled":true,"description":{"content":"<p>Include deadline</p>\n","type":"text/plain"},"key":"with[]","value":"deadline"},{"disabled":true,"description":{"content":"<p>Task UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Task UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Task UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Task UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[entity]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Entity UUID's</p>\n","type":"text/plain"},"key":"filters[entities]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Responsisble user UUID</p>\n","type":"text/plain"},"key":"filters[owner]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Responsisble user UUID's</p>\n","type":"text/plain"},"key":"filters[owners]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Project UUID</p>\n","type":"text/plain"},"key":"filters[project]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Project UUID's</p>\n","type":"text/plain"},"key":"filters[projects]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Filters all tasks where current user is the responsible user</p>\n","type":"text/plain"},"key":"filters[me]","value":"true"},{"disabled":true,"description":{"content":"<p>Filters all task based on if they are completed (true, false)</p>\n","type":"text/plain"},"key":"filters[is_completed]","value":"true"},{"disabled":true,"description":{"content":"<p>Filters all task based on if matter is associated (true, false)</p>\n","type":"text/plain"},"key":"filters[has_matter]","value":"true"},{"disabled":true,"description":{"content":"<p>Matter UUID</p>\n","type":"text/plain"},"key":"filters[matter]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Matter UUID's</p>\n","type":"text/plain"},"key":"filters[matters]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Label UUID</p>\n","type":"text/plain"},"key":"filters[label]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of Label UUID's</p>\n","type":"text/plain"},"key":"filters[labels]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Filters all tasks that have the label \"Terugbelverzoek\" (true, false)</p>\n","type":"text/plain"},"key":"filters[is_callback_request]","value":"true"},{"disabled":true,"description":{"content":"<p>Default sort (id)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by task UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by task creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by task update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[],"_postman_id":"0e1ecae4-5975-46c0-ad5f-068c81e37206"},{"name":"Read Task","id":"9e8dbb55-3524-4b15-893c-8a88737490f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/tasks/{{task_id}}?with[]=owner&with[]=completer&with[]=entity&with[]=project&with[]=label&with[]=deadline","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","tasks","{{task_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[{"description":{"content":"<p>Include responsisble user of the task</p>\n","type":"text/plain"},"key":"with[]","value":"owner"},{"description":{"content":"<p>Include user that completed the task</p>\n","type":"text/plain"},"key":"with[]","value":"completer"},{"description":{"content":"<p>Include entity</p>\n","type":"text/plain"},"key":"with[]","value":"entity"},{"description":{"content":"<p>Include project</p>\n","type":"text/plain"},"key":"with[]","value":"project"},{"description":{"content":"<p>Include label</p>\n","type":"text/plain"},"key":"with[]","value":"label"},{"description":{"content":"<p>Include deadline</p>\n","type":"text/plain"},"key":"with[]","value":"deadline"}],"variable":[]}},"response":[],"_postman_id":"9e8dbb55-3524-4b15-893c-8a88737490f7"},{"name":"Create Task","id":"8effce44-e9bd-4d31-b75b-df36d203da55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"project.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Project UUID (required without entity.id)</p>\n"},{"key":"entity.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Entity UUID (required without project.id)</p>\n"},{"key":"label.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Label UUID (required)</p>\n"},{"key":"result.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Result Label UUID</p>\n"},{"key":"summary","value":"Summary description","type":"text","description":"<p>Summary of contact moment</p>\n"},{"key":"subject","value":"Gebeld door Henk","type":"text","description":"<p>Subject of contact moment</p>\n"},{"key":"users","value":"[{\"id\" => \"14f72354-38be-4f14-9071-19b1728f805d\"}]","type":"text","description":"<p>Array of users (required)</p>\n"},{"key":"users.*.id","value":"14f72354-38be-4f14-9071-19b1728f805d","type":"text","description":"<p>User UUID</p>\n"},{"key":"starts_at","value":"2024-01-01 11:11:00","type":"text","description":"<p>Contact moment start date (datetime)</p>\n"},{"key":"ends_at","value":"2024-01-05 11:11:00","type":"text","description":"<p>Contact moment end date (datetime)</p>\n"},{"key":"matter.id","value":"f406e097-54e3-4335-b477-00a75613fe08","type":"text","description":"<p>Related cases matter UUID</p>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"8effce44-e9bd-4d31-b75b-df36d203da55"},{"name":"Update Task","id":"140aa2b6-25ff-4af9-8591-83d91e41c009","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"project.id","value":"DENY","type":"text","description":"<p>Project UUID</p>\n"},{"key":"entity.id","value":"DENY","type":"text","description":"<p>Entity UUID</p>\n"},{"key":"label.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Label UUID</p>\n"},{"key":"result.id","value":"fa713c64-ee78-4530-83cd-e840e222aafb","type":"text","description":"<p>Result Label UUID</p>\n"},{"key":"summary","value":"Summary description","type":"text","description":"<p>Summary of contact moment</p>\n"},{"key":"subject","value":"Gebeld door Henk","type":"text","description":"<p>Subject of contact moment</p>\n"},{"key":"users","value":"[{\"id\" => \"14f72354-38be-4f14-9071-19b1728f805d\"}]","type":"text","description":"<p>Array of users (required)</p>\n"},{"key":"users.*.id","value":"14f72354-38be-4f14-9071-19b1728f805d","type":"text","description":"<p>User UUID</p>\n"},{"key":"starts_at","value":"2024-01-01 11:11:00","type":"text","description":"<p>Contact moment start date (datetime)</p>\n"},{"key":"ends_at","value":"2024-01-05 11:11:00","type":"text","description":"<p>Contact moment end date (datetime)</p>\n"},{"key":"matter.id","value":"f406e097-54e3-4335-b477-00a75613fe08","type":"text","description":"<p>Related cases matter UUID</p>\n"}]},"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments/{{moment_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments","{{moment_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"140aa2b6-25ff-4af9-8591-83d91e41c009"},{"name":"Delete Task","id":"aad309f3-0c7b-4b98-ae90-ae2e70799967","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.crm.mozardsuite.nl/v1/moments/{{moment_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","moments","{{moment_id}}"],"host":["https://MIJNOMGEVING.api.crm.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"aad309f3-0c7b-4b98-ae90-ae2e70799967"}],"id":"5f0c6f7b-b379-486a-9850-e24fe78e21e8","_postman_id":"5f0c6f7b-b379-486a-9850-e24fe78e21e8","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}}],"id":"bd3c4709-0c9d-486e-a469-fe4b37ccfdec","_postman_id":"bd3c4709-0c9d-486e-a469-fe4b37ccfdec","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Forms","item":[{"name":"Audits","item":[{"name":"List Audits","id":"ad943a30-1a25-4d96-bc1b-a0a9ff8a133d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/audits","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","audits"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include old and new values</p>\n","type":"text/plain"},"key":"with[]","value":"values"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Audit ID</p>\n","type":"text/plain"},"key":"filters[id]","value":"1120"},{"disabled":true,"description":{"content":"<p>Array of audit ID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[1120, 1121]"},{"disabled":true,"description":{"content":"<p>Audit ID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"998"},{"disabled":true,"description":{"content":"<p>Array of audit ID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[998, 999]"},{"disabled":true,"description":{"content":"<p>Model type</p>\n","type":"text/plain"},"key":"filters[model_type]","value":"form.version"},{"disabled":true,"description":{"content":"<p>Model UUID</p>\n","type":"text/plain"},"key":"filters[model_id]","value":"ea2010a4-5ed5-4eea-a536-5c2a88864238"},{"disabled":true,"description":{"content":"<p>Array of model UUID's</p>\n","type":"text/plain"},"key":"filters[model_ids]","value":"[ea2010a4-5ed5-4eea-a536-5c2a88864238, 11b4cdef-68ee-41e9-b462-4ade8f7ea6b6]"},{"disabled":true,"description":{"content":"<p>'retrieved', 'exported', 'created', 'updated', 'deleted', 'restored', 'mozard suite-cases-synced', 'mozard suite-cases-sync-failed', 'draft-submission-saved'</p>\n","type":"text/plain"},"key":"filters[event]","value":"created"},{"disabled":true,"description":{"content":"<p>'retrieved', 'exported', 'created', 'updated', 'deleted', 'restored', 'mozard suite-cases-synced', 'mozard suite-cases-sync-failed', 'draft-submission-saved'</p>\n","type":"text/plain"},"key":"filters[events]","value":"[created, updated]"},{"disabled":true,"description":{"content":"<p>true, false (console audits have not user)</p>\n","type":"text/plain"},"key":"filters[is_console]","value":"true"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"72779627-48f7-480d-b67b-7264e192bbc6"},{"disabled":true,"description":{"content":"<p>Array of user UUID's</p>\n","type":"text/plain"},"key":"filters[users]","value":"[72779627-48f7-480d-b67b-7264e192bbc6, 1b02dd7d-fe23-453c-9d11-4d7a11ad88d6]"},{"disabled":true,"description":{"content":"<p>Form UUID</p>\n","type":"text/plain"},"key":"filters[form]","value":"bf044f7b-0988-4134-81dd-0c292311b786"},{"disabled":true,"description":{"content":"<p>Array of form UUID's</p>\n","type":"text/plain"},"key":"filters[forms]","value":"[bf044f7b-0988-4134-81dd-0c292311b786, 11b20a31-50ed-4f0d-b86f-5d53fe97c6ba]"},{"disabled":true,"description":{"content":"<p>Version UUID</p>\n","type":"text/plain"},"key":"filters[version]","value":"09425e47-737b-45b7-b639-826fd24b7813"},{"disabled":true,"description":{"content":"<p>Array of version UUID's</p>\n","type":"text/plain"},"key":"filters[versions]","value":"[09425e47-737b-45b7-b639-826fd24b7813, 368a9be2-82a9-4885-b126-c3c3dfd2eceb]"},{"disabled":true,"description":{"content":"<p>Date inclusive</p>\n","type":"text/plain"},"key":"filters[created_before]","value":"2024-02-29"},{"disabled":true,"description":{"content":"<p>Date inclusive</p>\n","type":"text/plain"},"key":"filters[created_after]","value":"2024-02-01"},{"disabled":true,"description":{"content":"<p>Default sort (created)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by audit ID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by form creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created"},{"disabled":true,"description":{"content":"<p>Sort by form update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[],"_postman_id":"ad943a30-1a25-4d96-bc1b-a0a9ff8a133d"},{"name":"Read Audit","id":"0e17b17d-f6fb-4d45-8942-2de65e67ff15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/audits/{{audit_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","audits","{{audit_id}}"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include old and new values</p>\n","type":"text/plain"},"key":"with[]","value":"values"},{"disabled":true,"description":{"content":"<p>Include tags</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"}],"variable":[]}},"response":[],"_postman_id":"0e17b17d-f6fb-4d45-8942-2de65e67ff15"}],"id":"509abbdd-54ef-4502-a14f-adaa325b3066","_postman_id":"509abbdd-54ef-4502-a14f-adaa325b3066","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Forms","item":[{"name":"Submissions","item":[{"name":"List Submissions","id":"a36e0d39-cebd-46de-bc19-e13174249e73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms/submissions","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","forms","submissions"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include form</p>\n","type":"text/plain"},"key":"with[]","value":"form"},{"disabled":true,"description":{"content":"<p>Include version</p>\n","type":"text/plain"},"key":"with[]","value":"version"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include cases integration logs</p>\n","type":"text/plain"},"key":"with[]","value":"cases_integration_logs"},{"disabled":true,"description":{"content":"<p>Include environment</p>\n","type":"text/plain"},"key":"with[]","value":"environment"},{"disabled":true,"description":{"content":"<p>Include answers</p>\n","type":"text/plain"},"key":"with[]","value":"answers"},{"disabled":true,"description":{"content":"<p>Include PDF</p>\n","type":"text/plain"},"key":"with[]","value":"pdf"},{"disabled":true,"description":{"content":"<p>Include payment transactions</p>\n","type":"text/plain"},"key":"with[]","value":"payment_transactions"},{"disabled":true,"description":{"content":"<p>Include context</p>\n","type":"text/plain"},"key":"with[]","value":"context"},{"disabled":true,"description":{"content":"<p>Form UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Array of form UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Form UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of form UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Search by form version title</p>\n","type":"text/plain"},"key":"filters[search]","value":"v1"},{"disabled":true,"description":{"content":"<p>Form UUID</p>\n","type":"text/plain"},"key":"filters[form]","value":"9b5578fb-d549-48c4-8498-f4013d2c34f5"},{"disabled":true,"description":{"content":"<p>Version UUID</p>\n","type":"text/plain"},"key":"filters[version]","value":"9b5f4f91-9b4a-4f66-a5c8-52ca81419a61"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"ad6779e0-5c21-4b0c-9238-e8efa912b359"},{"disabled":true,"description":{"content":"<p>Entity UUID</p>\n","type":"text/plain"},"key":"filters[entity]","value":"2b1c5a77-5479-46a8-98a6-4b651e6e98fa"},{"disabled":true,"description":{"content":"<p>draft, final, payment_pending</p>\n","type":"text/plain"},"key":"filters[status]","value":"draft"},{"disabled":true,"description":{"content":"<p>Environment UUID</p>\n","type":"text/plain"},"key":"filters[environment]","value":"2419e504-9766-4785-8926-07166fcc96a2"},{"disabled":true,"description":{"content":"<p>Array of environment UUID's</p>\n","type":"text/plain"},"key":"filters[environments]","value":"[2419e504-9766-4785-8926-07166fcc96a2, ffb51493-e4a2-477c-8923-e1e3e81c3176]"},{"disabled":true,"description":{"content":"<p>Array with from and to dates</p>\n","type":"text/plain"},"key":"filters[created_at]","value":"[\"from\" => 2024-02-01, \"to\" => 2024-02-29]"},{"disabled":true,"description":{"content":"<p>Array with from and to dates</p>\n","type":"text/plain"},"key":"filters[updated_at]","value":"[\"from\" => 2024-02-01, \"to\" => 2024-02-29]"},{"disabled":true,"description":{"content":"<p>Default sort (created_at)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by submission UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by form creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by form update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[{"id":"e8042634-fecb-4698-977e-5a31ce266cea","name":"List Submissions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms/submissions?filters[form]=9b5578fb-d549-48c4-8498-f4013d2c34f5&filters[version]=9b5f4f91-9b4a-4f66-a5c8-52ca81419a61","host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"path":["v1","forms","submissions"],"query":[{"key":"page","value":"1","description":"Page number","disabled":true},{"key":"limit","value":"15","description":"Items per page","disabled":true},{"key":"with[]","value":"form","description":"Include form","disabled":true},{"key":"with[]","value":"version","description":"Include version","disabled":true},{"key":"with[]","value":"user","description":"Include user","type":"text","disabled":true},{"key":"with[]","value":"cases_integration_logs","description":"Include cases integration logs","type":"text","disabled":true},{"key":"with[]","value":"environment","description":"Include environment","type":"text","disabled":true},{"key":"with[]","value":"answers","description":"Include answers","type":"text","disabled":true},{"key":"with[]","value":"pdf","description":"Include PDF","type":"text","disabled":true},{"key":"with[]","value":"payment_transactions","description":"Include payment transactions","disabled":true},{"key":"with[]","value":"context","description":"Include context","disabled":true},{"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270","description":"Form UUID","disabled":true},{"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of form UUID's","disabled":true},{"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759","description":"Form UUID to exclude from result","disabled":true},{"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of form UUID's to exclude from result","disabled":true},{"key":"filters[search]","value":"v1","description":"Search by form version title","disabled":true},{"key":"filters[form]","value":"9b5578fb-d549-48c4-8498-f4013d2c34f5","description":"Form UUID"},{"key":"filters[version]","value":"9b5f4f91-9b4a-4f66-a5c8-52ca81419a61","description":"Version UUID"},{"key":"filters[user]","value":"ad6779e0-5c21-4b0c-9238-e8efa912b359","description":"User UUID","disabled":true},{"key":"filters[entity]","value":"2b1c5a77-5479-46a8-98a6-4b651e6e98fa","description":"Entity UUID","disabled":true},{"key":"filters[status]","value":"draft","description":"draft, final, payment_pending","disabled":true},{"key":"filters[environment]","value":"2419e504-9766-4785-8926-07166fcc96a2","description":"Environment UUID","disabled":true},{"key":"filters[environments]","value":"[2419e504-9766-4785-8926-07166fcc96a2, ffb51493-e4a2-477c-8923-e1e3e81c3176]","description":"Array of environment UUID's","disabled":true},{"key":"filters[created_at]","value":"[\"from\" => 2024-02-01, \"to\" => 2024-02-29]","description":"Array with from and to dates","disabled":true},{"key":"filters[updated_at]","value":"[\"from\" => 2024-02-01, \"to\" => 2024-02-29]","description":"Array with from and to dates","disabled":true},{"key":"sort","value":"default","description":"Default sort (created_at)","disabled":true},{"key":"sort","value":"id","description":"Sort by submission UUID","disabled":true},{"key":"sort","value":"created_at","description":"Sort by form creation datetime","disabled":true},{"key":"sort","value":"updated_at","description":"Sort by form update datetime","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:52:46 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"497","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 2,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 2,\n    \"data\": [\n        {\n            \"id\": \"9b5f5000-ca0e-4b08-b2f0-04ec81479ed5\",\n            \"public_key\": null,\n            \"created_at\": \"2024-02-19T09:57:44.000000Z\",\n            \"is_expired\": false\n        },\n        {\n            \"id\": \"9b5f5068-0e7c-4249-82dc-fd152de93ae7\",\n            \"public_key\": null,\n            \"created_at\": \"2024-02-19T09:58:51.000000Z\",\n            \"is_expired\": false\n        }\n    ]\n}"}],"_postman_id":"a36e0d39-cebd-46de-bc19-e13174249e73"},{"name":"Read Submission","id":"246ac195-c61d-493a-919b-db05263b928a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms/submissions/{{form_submission_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","forms","submissions","{{form_submission_id}}"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include form</p>\n","type":"text/plain"},"key":"with[]","value":"form"},{"disabled":true,"description":{"content":"<p>Include version</p>\n","type":"text/plain"},"key":"with[]","value":"version"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include cases integration logs</p>\n","type":"text/plain"},"key":"with[]","value":"cases_integration_logs"},{"disabled":true,"description":{"content":"<p>Include environment</p>\n","type":"text/plain"},"key":"with[]","value":"environment"},{"disabled":true,"description":{"content":"<p>Include answers</p>\n","type":"text/plain"},"key":"with[]","value":"answers"},{"disabled":true,"description":{"content":"<p>Include PDF</p>\n","type":"text/plain"},"key":"with[]","value":"pdf"},{"disabled":true,"description":{"content":"<p>Include payment transactions</p>\n","type":"text/plain"},"key":"with[]","value":"payment_transactions"},{"disabled":true,"description":{"content":"<p>Include context</p>\n","type":"text/plain"},"key":"with[]","value":"context"}],"variable":[]}},"response":[],"_postman_id":"246ac195-c61d-493a-919b-db05263b928a"}],"id":"7ce18d49-085c-4c9f-89be-4d2ce046cdff","_postman_id":"7ce18d49-085c-4c9f-89be-4d2ce046cdff","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Versions","item":[{"name":"List Versions","id":"4a8a512a-2906-4f78-9857-e9a5bb271d7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms/versions?filters[form]=9b5578fb-d549-48c4-8498-f4013d2c34f5","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","forms","versions"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include form</p>\n","type":"text/plain"},"key":"with[]","value":"form"},{"disabled":true,"description":{"content":"<p>Include pages</p>\n","type":"text/plain"},"key":"with[]","value":"pages"},{"disabled":true,"description":{"content":"<p>Include changes</p>\n","type":"text/plain"},"key":"with[]","value":"changes"},{"disabled":true,"description":{"content":"<p>Include latest change</p>\n","type":"text/plain"},"key":"with[]","value":"latest_change"},{"disabled":true,"description":{"content":"<p>Include cases integration settings</p>\n","type":"text/plain"},"key":"with[]","value":"cases_integration"},{"disabled":true,"description":{"content":"<p>Include theme</p>\n","type":"text/plain"},"key":"with[]","value":"theme"},{"disabled":true,"description":{"content":"<p>Include submission settings</p>\n","type":"text/plain"},"key":"with[]","value":"submission_settings"},{"disabled":true,"description":{"content":"<p>Include used template versions</p>\n","type":"text/plain"},"key":"with[]","value":"template_versions"},{"disabled":true,"description":{"content":"<p>Include environments</p>\n","type":"text/plain"},"key":"with[]","value":"environments"},{"disabled":true,"description":{"content":"<p>Include settings</p>\n","type":"text/plain"},"key":"with[]","value":"settings"},{"disabled":true,"description":{"content":"<p>Include formula dependencies</p>\n","type":"text/plain"},"key":"with[]","value":"formula_dependencies"},{"disabled":true,"description":{"content":"<p>Form version UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Array of form UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Form UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of form UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Search by form version Title</p>\n","type":"text/plain"},"key":"filters[search]","value":"v4"},{"disabled":true,"description":{"content":"<p>Template UUID</p>\n","type":"text/plain"},"key":"filters[template]","value":"8ca8e045-ed9b-447a-882e-68b9522aa831"},{"disabled":true,"description":{"content":"<p>Template version UUID</p>\n","type":"text/plain"},"key":"filters[template_version]","value":"24a80344-4e25-42e8-89f2-50d22496f050"},{"disabled":true,"description":{"content":"<p>Theme UUID</p>\n","type":"text/plain"},"key":"filters[theme]","value":"e050ffd9-51ef-42cd-ab62-c0cf3e30c4c6"},{"disabled":true,"description":{"content":"<p>Environment UUID</p>\n","type":"text/plain"},"key":"filters[environment]","value":"2419e504-9766-4785-8926-07166fcc96a2"},{"disabled":true,"description":{"content":"<p>Array of environment UUID's</p>\n","type":"text/plain"},"key":"filters[environments]","value":"[2419e504-9766-4785-8926-07166fcc96a2, ffb51493-e4a2-477c-8923-e1e3e81c3176]"},{"disabled":true,"description":{"content":"<p>Target environment UUID</p>\n","type":"text/plain"},"key":"filters[target_environment]","value":"28b548bb-8f3c-4b87-95cb-e5d6b36cf9c5"},{"disabled":true,"description":{"content":"<p>Default sort (created_at)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by form version UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by form creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by form update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"},{"key":"filters[form]","value":"9b5578fb-d549-48c4-8498-f4013d2c34f5"}],"variable":[]}},"response":[{"id":"0c911436-4adc-4ebd-b697-6f3bc48b691d","name":"List Versions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms/versions?filters[form]=9b5578fb-d549-48c4-8498-f4013d2c34f5","host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"path":["v1","forms","versions"],"query":[{"key":"page","value":"1","description":"Page number","disabled":true},{"key":"limit","value":"15","description":"Items per page","disabled":true},{"key":"with[]","value":"form","description":"Include form","disabled":true},{"key":"with[]","value":"pages","description":"Include pages","type":"text","disabled":true},{"key":"with[]","value":"changes","description":"Include changes","type":"text","disabled":true},{"key":"with[]","value":"latest_change","description":"Include latest change","type":"text","disabled":true},{"key":"with[]","value":"cases_integration","description":"Include cases integration settings","type":"text","disabled":true},{"key":"with[]","value":"theme","description":"Include theme","type":"text","disabled":true},{"key":"with[]","value":"submission_settings","description":"Include submission settings","type":"text","disabled":true},{"key":"with[]","value":"template_versions","description":"Include used template versions","type":"text","disabled":true},{"key":"with[]","value":"environments","description":"Include environments","disabled":true},{"key":"with[]","value":"settings","description":"Include settings","type":"text","disabled":true},{"key":"with[]","value":"formula_dependencies","description":"Include formula dependencies","type":"text","disabled":true},{"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270","description":"Form version UUID","disabled":true},{"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of form UUID's","disabled":true},{"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759","description":"Form UUID to exclude from result","disabled":true},{"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of form UUID's to exclude from result","disabled":true},{"key":"filters[search]","value":"v4","description":"Search by form version Title","disabled":true},{"key":"filters[template]","value":"8ca8e045-ed9b-447a-882e-68b9522aa831","description":"Template UUID","type":"text","disabled":true},{"key":"filters[template_version]","value":"24a80344-4e25-42e8-89f2-50d22496f050","description":"Template version UUID","disabled":true},{"key":"filters[theme]","value":"e050ffd9-51ef-42cd-ab62-c0cf3e30c4c6","description":"Theme UUID","type":"text","disabled":true},{"key":"filters[environment]","value":"2419e504-9766-4785-8926-07166fcc96a2","description":"Environment UUID","type":"text","disabled":true},{"key":"filters[environments]","value":"[2419e504-9766-4785-8926-07166fcc96a2, ffb51493-e4a2-477c-8923-e1e3e81c3176]","description":"Array of environment UUID's","type":"text","disabled":true},{"key":"filters[target_environment]","value":"28b548bb-8f3c-4b87-95cb-e5d6b36cf9c5","description":"Target environment UUID","type":"text","disabled":true},{"key":"sort","value":"default","description":"Default sort (created_at)","type":"text","disabled":true},{"key":"sort","value":"id","description":"Sort by form version UUID","type":"text","disabled":true},{"key":"sort","value":"created_at","description":"Sort by form creation datetime","type":"text","disabled":true},{"key":"sort","value":"updated_at","description":"Sort by form update datetime","type":"text","disabled":true},{"key":"filters[form]","value":"9b5578fb-d549-48c4-8498-f4013d2c34f5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:51:48 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"496","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 7,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 7,\n    \"data\": [\n        {\n            \"id\": \"9b5f86f3-89ae-45cc-abc9-6cebc9cb2882\",\n            \"form_id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"form_title\": \"Mozard Suite Cases Integration\",\n            \"title\": \"v7\",\n            \"description\": null,\n            \"webhook_url\": null,\n            \"status\": \"draft\",\n            \"created_at\": \"2024-02-19T12:31:23.000000Z\",\n            \"updated_at\": \"2024-02-19T12:31:23.000000Z\",\n            \"theme_id\": \"9f50ca86-2cb4-4b54-b2cc-3bbb06fc2cce\",\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"is_for_entity\": false,\n            \"is_for_internal_user\": true,\n            \"has_been_published_to_production\": false\n        },\n        {\n            \"id\": \"9b5f4f91-9b4a-4f66-a5c8-52ca81419a61\",\n            \"form_id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"form_title\": \"Mozard Suite Cases Integration\",\n            \"title\": \"v6\",\n            \"description\": null,\n            \"webhook_url\": null,\n            \"status\": \"published\",\n            \"created_at\": \"2024-02-19T09:56:31.000000Z\",\n            \"updated_at\": \"2024-02-19T09:56:31.000000Z\",\n            \"theme_id\": \"9f50ca86-2cb4-4b54-b2cc-3bbb06fc2cce\",\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"is_for_entity\": false,\n            \"is_for_internal_user\": true,\n            \"has_been_published_to_production\": true\n        },\n        {\n            \"id\": \"9b57bd4d-2d09-4db1-8786-a2ca37fe6c52\",\n            \"form_id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"form_title\": \"Mozard Suite Cases Integration\",\n            \"title\": \"v5\",\n            \"description\": null,\n            \"webhook_url\": null,\n            \"status\": \"unpublished\",\n            \"created_at\": \"2024-02-15T15:36:44.000000Z\",\n            \"updated_at\": \"2024-02-15T15:36:44.000000Z\",\n            \"theme_id\": \"9f50ca86-2cb4-4b54-b2cc-3bbb06fc2cce\",\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"is_for_entity\": false,\n            \"is_for_internal_user\": false,\n            \"has_been_published_to_production\": true\n        },\n        {\n            \"id\": \"9b57b9c7-336f-414e-8358-430716eedfa6\",\n            \"form_id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"form_title\": \"Mozard Suite Cases Integration\",\n            \"title\": \"v4\",\n            \"description\": null,\n            \"webhook_url\": null,\n            \"status\": \"unpublished\",\n            \"created_at\": \"2024-02-15T15:26:53.000000Z\",\n            \"updated_at\": \"2024-02-15T15:26:53.000000Z\",\n            \"theme_id\": \"9f50ca86-2cb4-4b54-b2cc-3bbb06fc2cce\",\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"is_for_entity\": false,\n            \"is_for_internal_user\": true,\n            \"has_been_published_to_production\": true\n        },\n        {\n            \"id\": \"9b57b7ab-322e-4866-b740-af4c099ac4ba\",\n            \"form_id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"form_title\": \"Mozard Suite Cases Integration\",\n            \"title\": \"v3\",\n            \"description\": null,\n            \"webhook_url\": null,\n            \"status\": \"unpublished\",\n            \"created_at\": \"2024-02-15T15:20:59.000000Z\",\n            \"updated_at\": \"2024-02-15T15:20:59.000000Z\",\n            \"theme_id\": \"9f50ca86-2cb4-4b54-b2cc-3bbb06fc2cce\",\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"is_for_entity\": false,\n            \"is_for_internal_user\": true,\n            \"has_been_published_to_production\": true\n        },\n        {\n            \"id\": \"9b559ff8-9f2c-4479-a297-cf40ed623ae7\",\n            \"form_id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"form_title\": \"Mozard Suite Cases Integration\",\n            \"title\": \"v2\",\n            \"description\": null,\n            \"webhook_url\": null,\n            \"status\": \"unpublished\",\n            \"created_at\": \"2024-02-14T14:23:03.000000Z\",\n            \"updated_at\": \"2024-02-14T14:23:03.000000Z\",\n            \"theme_id\": \"9f50ca86-2cb4-4b54-b2cc-3bbb06fc2cce\",\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"is_for_entity\": false,\n            \"is_for_internal_user\": true,\n            \"has_been_published_to_production\": true\n        },\n        {\n            \"id\": \"9b5578fb-dcf7-4779-8f3a-23509a3533b7\",\n            \"form_id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"form_title\": \"Mozard Suite Cases Integration\",\n            \"title\": \"v1\",\n            \"description\": null,\n            \"webhook_url\": null,\n            \"status\": \"unpublished\",\n            \"created_at\": \"2024-02-14T12:34:02.000000Z\",\n            \"updated_at\": \"2024-02-14T12:34:02.000000Z\",\n            \"theme_id\": \"9f50ca86-2cb4-4b54-b2cc-3bbb06fc2cce\",\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"is_for_entity\": false,\n            \"is_for_internal_user\": true,\n            \"has_been_published_to_production\": true\n        }\n    ]\n}"}],"_postman_id":"4a8a512a-2906-4f78-9857-e9a5bb271d7d"},{"name":"Read Version","id":"98df9b7a-26b6-4594-b72b-67ea4f82281e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms/versions/{{form_version_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","forms","versions","{{form_version_id}}"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include form</p>\n","type":"text/plain"},"key":"with[]","value":"form"},{"disabled":true,"description":{"content":"<p>Include pages</p>\n","type":"text/plain"},"key":"with[]","value":"pages"},{"disabled":true,"description":{"content":"<p>Include changes</p>\n","type":"text/plain"},"key":"with[]","value":"changes"},{"disabled":true,"description":{"content":"<p>Include latest change</p>\n","type":"text/plain"},"key":"with[]","value":"latest_change"},{"disabled":true,"description":{"content":"<p>Include cases integration settings</p>\n","type":"text/plain"},"key":"with[]","value":"cases_integration"},{"disabled":true,"description":{"content":"<p>Include theme</p>\n","type":"text/plain"},"key":"with[]","value":"theme"},{"disabled":true,"description":{"content":"<p>Include submission settings</p>\n","type":"text/plain"},"key":"with[]","value":"submission_settings"},{"disabled":true,"description":{"content":"<p>Include used template versions</p>\n","type":"text/plain"},"key":"with[]","value":"template_versions"},{"disabled":true,"description":{"content":"<p>Include environments</p>\n","type":"text/plain"},"key":"with[]","value":"environments"},{"disabled":true,"description":{"content":"<p>Include settings</p>\n","type":"text/plain"},"key":"with[]","value":"settings"},{"disabled":true,"description":{"content":"<p>Include formula dependencies</p>\n","type":"text/plain"},"key":"with[]","value":"formula_dependencies"},{"disabled":true,"description":{"content":"<p>Include properties</p>\n","type":"text/plain"},"key":"with[]","value":"properties"},{"disabled":true,"description":{"content":"<p>Include child properties</p>\n","type":"text/plain"},"key":"with[]","value":"children"}],"variable":[]}},"response":[],"_postman_id":"98df9b7a-26b6-4594-b72b-67ea4f82281e"}],"id":"1e98437d-3f5d-4c2d-b0d7-250ac000ffd9","_postman_id":"1e98437d-3f5d-4c2d-b0d7-250ac000ffd9","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"List Forms","id":"b7365199-8936-42d6-8040-b5eb9f9638c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","forms"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include embed</p>\n","type":"text/plain"},"key":"with[]","value":"embed"},{"disabled":true,"description":{"content":"<p>Include published version</p>\n","type":"text/plain"},"key":"with[]","value":"published"},{"disabled":true,"description":{"content":"<p>Include environments</p>\n","type":"text/plain"},"key":"with[]","value":"environments"},{"disabled":true,"description":{"content":"<p>Include private users</p>\n","type":"text/plain"},"key":"with[]","value":"private_users"},{"disabled":true,"description":{"content":"<p>Include owner user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include versions</p>\n","type":"text/plain"},"key":"with[]","value":"versions"},{"disabled":true,"description":{"content":"<p>Form UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Array of form UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Form UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of form UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Search by form Title</p>\n","type":"text/plain"},"key":"filters[search]","value":"My form"},{"disabled":true,"description":{"content":"<p>Owner user UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"72779627-48f7-480d-b67b-7264e192bbc6"},{"disabled":true,"description":{"content":"<p>Environment UUID</p>\n","type":"text/plain"},"key":"filters[environment]","value":"2419e504-9766-4785-8926-07166fcc96a2"},{"disabled":true,"description":{"content":"<p>Array of environment UUID's</p>\n","type":"text/plain"},"key":"filters[environments]","value":"[2419e504-9766-4785-8926-07166fcc96a2, ffb51493-e4a2-477c-8923-e1e3e81c3176]"},{"disabled":true,"description":{"content":"<p>Cases process UUID</p>\n","type":"text/plain"},"key":"filters[process]","value":"1d7c9444-8e37-4626-909a-b85c798d065a"},{"disabled":true,"description":{"content":"<p>Array of cases process UUID's</p>\n","type":"text/plain"},"key":"filters[processes]","value":"[ea455aca-7c4d-4f19-a021-e131c9adf6f4, f1348634-20eb-4953-825d-c02353ff9de7]"},{"disabled":true,"description":{"content":"<p>Template version UUID</p>\n","type":"text/plain"},"key":"filters[template_version]","value":"5712a5a3-38b3-4844-8aad-0ec6b0b00b79"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_private]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_for_internal_user]","value":"true"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_for_entity]","value":"true"},{"disabled":true,"description":{"content":"<p>Default sort (created_at)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by form title</p>\n","type":"text/plain"},"key":"sort","value":"title"},{"disabled":true,"description":{"content":"<p>Sort by form UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by form creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by form update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[{"id":"188b35f1-f632-4feb-bbbb-95cfc6fe6022","name":"List Forms","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms","host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"path":["v1","forms"],"query":[{"key":"page","value":"1","description":"Page number","type":"text","disabled":true},{"key":"limit","value":"15","description":"Items per page","type":"text","disabled":true},{"key":"with[]","value":"embed","description":"Include embed","disabled":true},{"key":"with[]","value":"published","description":"Include published version","disabled":true},{"key":"with[]","value":"environments","description":"Include environments","disabled":true},{"key":"with[]","value":"private_users","description":"Include private users","disabled":true},{"key":"with[]","value":"user","description":"Include owner user","disabled":true},{"key":"with[]","value":"versions","description":"Include versions","disabled":true},{"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270","description":"Form UUID","type":"text","disabled":true},{"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of form UUID's","type":"text","disabled":true},{"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759","description":"Form UUID to exclude from result","type":"text","disabled":true},{"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of form UUID's to exclude from result","type":"text","disabled":true},{"key":"filters[search]","value":"My form","description":"Search by form Title","type":"text","disabled":true},{"key":"filters[user]","value":"72779627-48f7-480d-b67b-7264e192bbc6","description":"Owner user UUID","disabled":true},{"key":"filters[environment]","value":"2419e504-9766-4785-8926-07166fcc96a2","description":"Environment UUID","disabled":true},{"key":"filters[environments]","value":"[2419e504-9766-4785-8926-07166fcc96a2, ffb51493-e4a2-477c-8923-e1e3e81c3176]","description":"Array of environment UUID's","disabled":true},{"key":"filters[process]","value":"1d7c9444-8e37-4626-909a-b85c798d065a","description":"Cases process UUID","disabled":true},{"key":"filters[processes]","value":"[ea455aca-7c4d-4f19-a021-e131c9adf6f4, f1348634-20eb-4953-825d-c02353ff9de7]","description":"Array of cases process UUID's","disabled":true},{"key":"filters[template_version]","value":"5712a5a3-38b3-4844-8aad-0ec6b0b00b79","description":"Template version UUID","disabled":true},{"key":"filters[is_private]","value":"true","description":"true, false","disabled":true},{"key":"filters[is_for_internal_user]","value":"true","description":"true, false","disabled":true},{"key":"filters[is_for_entity]","value":"true","description":"true, false","disabled":true},{"key":"sort","value":"default","description":"Default sort (created_at)","disabled":true},{"key":"sort","value":"title","description":"Sort by form title","disabled":true},{"key":"sort","value":"id","description":"Sort by form UUID","disabled":true},{"key":"sort","value":"created_at","description":"Sort by form creation datetime","disabled":true},{"key":"sort","value":"updated_at","description":"Sort by form update datetime","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:50:33 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"498","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"type\": \"form\",\n            \"confidentiality_level\": \"standard\",\n            \"title\": \"Mozard Suite Cases Integration\",\n            \"description\": null,\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"created_at\": \"2024-02-14T12:34:02.000000Z\"\n        }\n    ]\n}"}],"_postman_id":"b7365199-8936-42d6-8040-b5eb9f9638c8"},{"name":"Read Form","id":"992362de-14ec-42df-841e-52a1da849f00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/forms/{{form_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","forms","{{form_id}}"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include embed</p>\n","type":"text/plain"},"key":"with[]","value":"embed"},{"disabled":true,"description":{"content":"<p>Include published version</p>\n","type":"text/plain"},"key":"with[]","value":"published"},{"disabled":true,"description":{"content":"<p>Include environments</p>\n","type":"text/plain"},"key":"with[]","value":"environments"},{"disabled":true,"description":{"content":"<p>Include private users</p>\n","type":"text/plain"},"key":"with[]","value":"private_users"},{"disabled":true,"description":{"content":"<p>Include owner</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include versions</p>\n","type":"text/plain"},"key":"with[]","value":"versions"}],"variable":[]}},"response":[],"_postman_id":"992362de-14ec-42df-841e-52a1da849f00"}],"id":"4f21702b-812e-427f-b134-f9c9ac401e2f","_postman_id":"4f21702b-812e-427f-b134-f9c9ac401e2f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Releases","item":[{"name":"List Releases","id":"d7fe3cbc-30a2-43b6-99d1-fd49505b8394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/releases","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","releases"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Item per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include environment</p>\n","type":"text/plain"},"key":"with[]","value":"environment"},{"disabled":true,"description":{"content":"<p>Include source environment</p>\n","type":"text/plain"},"key":"with[]","value":"source_environment"},{"disabled":true,"description":{"content":"<p>Include form version</p>\n","type":"text/plain"},"key":"with[]","value":"form_version"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Release UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Array of release UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Release UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of release UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"5d36fdf8-f9d6-4a38-87fb-a2f6729ad7e8"},{"disabled":true,"description":{"content":"<p>Form UUID</p>\n","type":"text/plain"},"key":"filters[form]","value":"e18df8ad-66cc-4806-8c03-30f6f82e3829"},{"disabled":true,"description":{"content":"<p>Version UUID</p>\n","type":"text/plain"},"key":"filters[form_version]","value":"3550905b-cd00-4332-9940-00da7ba345c9"},{"disabled":true,"description":{"content":"<p>Environment UUID</p>\n","type":"text/plain"},"key":"filters[environment]","value":"127d27c2-9642-4ee5-a4c6-08fed463764c"},{"disabled":true,"description":{"content":"<p>Source environment UUID</p>\n","type":"text/plain"},"key":"filters[source_environment]","value":"baefa83d-0679-43e6-8882-99cbe59aacc5"},{"disabled":true,"description":{"content":"<p>true, false</p>\n","type":"text/plain"},"key":"filters[is_reverting]","value":"true"},{"disabled":true,"description":{"content":"<p>'draft', 'open', 'accepted', 'rejected', 'closed'</p>\n","type":"text/plain"},"key":"filters[status]","value":"open"},{"disabled":true,"description":{"content":"<p>Array of 'draft', 'open', 'accepted', 'rejected', 'closed'</p>\n","type":"text/plain"},"key":"filters[statuses]","value":"[open, closed]"},{"disabled":true,"description":{"content":"<p>Default sort (created_at)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by release UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by release creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by release update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[],"_postman_id":"d7fe3cbc-30a2-43b6-99d1-fd49505b8394"},{"name":"Read Release","id":"f8b1a228-603c-4953-8640-ca2393550993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/releases/{{release_id}}?with[]=environment&with[]=source_environment&with[]=form_version&with[]=user","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","releases","{{release_id}}"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"description":{"content":"<p>Include environment</p>\n","type":"text/plain"},"key":"with[]","value":"environment"},{"description":{"content":"<p>Include source environment</p>\n","type":"text/plain"},"key":"with[]","value":"source_environment"},{"description":{"content":"<p>Include form version</p>\n","type":"text/plain"},"key":"with[]","value":"form_version"},{"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"}],"variable":[]}},"response":[],"_postman_id":"f8b1a228-603c-4953-8640-ca2393550993"},{"name":"Create Release","id":"d5f6cd13-efb7-4cbe-a38d-14e52bff1de2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"source_environment[id]","value":"45e5e61f-90bb-4345-884d-9cf1b3c18102","description":"<p>Source environment UUID</p>\n","type":"text"},{"key":"environment[id]","value":"45e5e61f-90bb-4345-884d-9cf1b3c18102","description":"<p>Environment UUID (required) NOTE: only 1 open release at a time for environment allowed</p>\n","type":"text"},{"key":"form_version[id]","value":"45e5e61f-90bb-4345-884d-9cf1b3c18102","description":"<p>Form version UUID (required) NOTE: only 1 open release at a time for environment allowed</p>\n","type":"text"},{"key":"status","value":"open","description":"<p>'draft', 'open', 'accepted', 'rejected', 'closed'</p>\n","type":"text"},{"key":"description","value":"New release","description":"<p>Description of release</p>\n","type":"text"},{"key":"is_reverting","value":"true","description":"<p>true, false</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/releases","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","releases"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5f6cd13-efb7-4cbe-a38d-14e52bff1de2"},{"name":"Update Release","id":"7bf5f6ae-d2ca-49fa-a92c-64cb5454d4e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"source_environment[id]","value":"45e5e61f-90bb-4345-884d-9cf1b3c18102","description":"<p>Source environment UUID</p>\n","type":"text"},{"key":"environment[id]","value":"45e5e61f-90bb-4345-884d-9cf1b3c18102","description":"<p>Environment UUID. NOTE: only 1 open release at a time for environment allowed</p>\n","type":"text"},{"key":"form_version[id]","value":"45e5e61f-90bb-4345-884d-9cf1b3c18102","description":"<p>Form version UUID</p>\n","type":"text"},{"key":"status","value":"open","description":"<p>'draft', 'open', 'accepted', 'rejected', 'closed'</p>\n","type":"text"},{"key":"description","value":"New release","description":"<p>Description of release</p>\n","type":"text"},{"key":"is_reverting","value":"true","description":"<p>true, false</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/releases/{{release_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","releases","{{release_id}}"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bf5f6ae-d2ca-49fa-a92c-64cb5454d4e0"},{"name":"Delete Release","id":"f4db5c07-3416-4876-9fd0-0c6b07bbbba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/releases/{{release_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","releases","{{release_id}}"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"f4db5c07-3416-4876-9fd0-0c6b07bbbba2"}],"id":"38279c4b-800b-49d5-8914-cfb3fbddb05b","_postman_id":"38279c4b-800b-49d5-8914-cfb3fbddb05b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Templates","item":[{"name":"List Templates","id":"c36f83d2-d29d-4af8-928c-98e02040e16a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/templates","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","templates"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Items per page</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Include published version</p>\n","type":"text/plain"},"key":"with[]","value":"published"},{"disabled":true,"description":{"content":"<p>Include environments</p>\n","type":"text/plain"},"key":"with[]","value":"environments"},{"disabled":true,"description":{"content":"<p>Include owner user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include versions</p>\n","type":"text/plain"},"key":"with[]","value":"versions"},{"disabled":true,"description":{"content":"<p>Include draft version</p>\n","type":"text/plain"},"key":"with[]","value":"draft"},{"disabled":true,"description":{"content":"<p>Templae UUID</p>\n","type":"text/plain"},"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270"},{"disabled":true,"description":{"content":"<p>Array of template UUID's</p>\n","type":"text/plain"},"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Template UUID to exclude from result</p>\n","type":"text/plain"},"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759"},{"disabled":true,"description":{"content":"<p>Array of template UUID's to exclude from result</p>\n","type":"text/plain"},"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]"},{"disabled":true,"description":{"content":"<p>Search by template Title</p>\n","type":"text/plain"},"key":"filters[search]","value":"My form"},{"disabled":true,"description":{"content":"<p>Owner user UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"72779627-48f7-480d-b67b-7264e192bbc6"},{"disabled":true,"description":{"content":"<p>Environment UUID</p>\n","type":"text/plain"},"key":"filters[environment]","value":"2419e504-9766-4785-8926-07166fcc96a2"},{"disabled":true,"description":{"content":"<p>Array of environment UUID's</p>\n","type":"text/plain"},"key":"filters[environments]","value":"[2419e504-9766-4785-8926-07166fcc96a2, ffb51493-e4a2-477c-8923-e1e3e81c3176]"},{"disabled":true,"description":{"content":"<p>Template version UUID</p>\n","type":"text/plain"},"key":"filters[template_version]","value":"5712a5a3-38b3-4844-8aad-0ec6b0b00b79"},{"disabled":true,"description":{"content":"<p>Default sort (created_at)</p>\n","type":"text/plain"},"key":"sort","value":"default"},{"disabled":true,"description":{"content":"<p>Sort by form title</p>\n","type":"text/plain"},"key":"sort","value":"title"},{"disabled":true,"description":{"content":"<p>Sort by form UUID</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Sort by form creation datetime</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>Sort by form update datetime</p>\n","type":"text/plain"},"key":"sort","value":"updated_at"}],"variable":[]}},"response":[{"id":"5d13a384-0fe2-4903-a784-fef14e578a27","name":"List Templates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/templates","host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"path":["v1","templates"],"query":[{"key":"page","value":"1","description":"Page number","type":"text","disabled":true},{"key":"limit","value":"15","description":"Items per page","type":"text","disabled":true},{"key":"with[]","value":"published","description":"Include published version","disabled":true},{"key":"with[]","value":"environments","description":"Include environments","disabled":true},{"key":"with[]","value":"user","description":"Include owner user","disabled":true},{"key":"with[]","value":"versions","description":"Include versions","disabled":true},{"key":"with[]","value":"draft","description":"Include draft version","type":"text","disabled":true},{"key":"filters[id]","value":"9b6da4bd-aff3-4ff6-98ea-6b824b91a270","description":"Templae UUID","type":"text","disabled":true},{"key":"filters[ids]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of template UUID's","type":"text","disabled":true},{"key":"filters[except]","value":"99bb12cc-3c4a-43cd-b754-6fc673a13759","description":"Template UUID to exclude from result","type":"text","disabled":true},{"key":"filters[excepts]","value":"[9b6da4bd-aff3-4ff6-98ea-6b824b91a270, 99bb12cc-3c4a-43cd-b754-6fc673a13759]","description":"Array of template UUID's to exclude from result","type":"text","disabled":true},{"key":"filters[search]","value":"My form","description":"Search by template Title","type":"text","disabled":true},{"key":"filters[user]","value":"72779627-48f7-480d-b67b-7264e192bbc6","description":"Owner user UUID","disabled":true},{"key":"filters[environment]","value":"2419e504-9766-4785-8926-07166fcc96a2","description":"Environment UUID","disabled":true},{"key":"filters[environments]","value":"[2419e504-9766-4785-8926-07166fcc96a2, ffb51493-e4a2-477c-8923-e1e3e81c3176]","description":"Array of environment UUID's","disabled":true},{"key":"filters[template_version]","value":"5712a5a3-38b3-4844-8aad-0ec6b0b00b79","description":"Template version UUID","disabled":true},{"key":"sort","value":"default","description":"Default sort (created_at)","disabled":true},{"key":"sort","value":"title","description":"Sort by form title","disabled":true},{"key":"sort","value":"id","description":"Sort by form UUID","disabled":true},{"key":"sort","value":"created_at","description":"Sort by form creation datetime","disabled":true},{"key":"sort","value":"updated_at","description":"Sort by form update datetime","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 08:50:53 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"499","enabled":true},{"key":"X-Frame-Options","value":"DENY","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition, X-Tenancy","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9b5f864f-f7c2-459b-b0bc-1b35263be20b\",\n            \"type\": \"template\",\n            \"confidentiality_level\": \"standard\",\n            \"title\": \"BAG Template\",\n            \"description\": null,\n            \"is_owner\": false,\n            \"is_editable\": false,\n            \"is_deletable\": false,\n            \"created_at\": \"2024-02-19T12:29:35.000000Z\",\n            \"is_published\": true\n        }\n    ]\n}"}],"_postman_id":"c36f83d2-d29d-4af8-928c-98e02040e16a"},{"name":"Read Template","id":"1912d85b-3e75-4fc4-96d3-5228ec11f1f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.forms.mozardsuite.nl/v1/templates/{{template_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","templates","{{template_id}}"],"host":["https://MIJNOMGEVING.api.forms.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include published version</p>\n","type":"text/plain"},"key":"with[]","value":"published"},{"disabled":true,"description":{"content":"<p>Include environments</p>\n","type":"text/plain"},"key":"with[]","value":"environments"},{"disabled":true,"description":{"content":"<p>Include owner user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include versions</p>\n","type":"text/plain"},"key":"with[]","value":"versions"},{"disabled":true,"description":{"content":"<p>Include draft version</p>\n","type":"text/plain"},"key":"with[]","value":"draft"}],"variable":[]}},"response":[],"_postman_id":"1912d85b-3e75-4fc4-96d3-5228ec11f1f8"}],"id":"c4dd2e3a-cdc0-4092-a641-33b59ebf1f5c","_postman_id":"c4dd2e3a-cdc0-4092-a641-33b59ebf1f5c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}}],"id":"c1135242-0a5f-4559-9f04-599ae98d8e8f","_postman_id":"c1135242-0a5f-4559-9f04-599ae98d8e8f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Manager","item":[{"name":"Authorization (OAuth 2.0)","item":[{"name":"Bearer Token","id":"78ad8af6-551c-499f-b8b7-87c5d802379c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"grant_type\": \"personal_access\",\n    \"client_id\": \"{{client_id}}\",\n    \"client_secret\": \"{{client_secret}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/oauth/token","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"beca3798-3db2-47b2-aa04-49d6dca6fae6","id":"beca3798-3db2-47b2-aa04-49d6dca6fae6","name":"Authorization (OAuth 2.0)","type":"folder"}},"urlObject":{"path":["v1","oauth","token"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[{"id":"a5e917f5-63e7-4f41-8193-1b6554575782","name":"Token Response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"grant_type\": \"personal_access\",\n    \"client_id\": \"{{client_id}}\",\n    \"client_secret\": \"{{client_secret}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.4","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.28","enabled":true},{"key":"pragma","value":"no-cache","enabled":true},{"key":"Cache-Control","value":"no-store, private","enabled":true},{"key":"Date","value":"Thu, 15 May 2025 06:23:04 GMT","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 600,\n    \"access_token\": \"xxxxxxx\",\n    \"refresh_token\": \"xxxxxxxxxxxxx\"\n}"}],"_postman_id":"78ad8af6-551c-499f-b8b7-87c5d802379c"},{"name":"Refresh Token","id":"8254e5bd-3263-4d6e-ac1a-c02201ae9f0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"grant_type\": \"refresh_token\",\n    \"client_id\": \"{{client_id}}\",\n    \"client_secret\": \"{{client_secret}}\",\n    \"refresh_token\": \"{{refresh_token}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/oauth/token","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"beca3798-3db2-47b2-aa04-49d6dca6fae6","id":"beca3798-3db2-47b2-aa04-49d6dca6fae6","name":"Authorization (OAuth 2.0)","type":"folder"}},"urlObject":{"path":["v1","oauth","token"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[{"id":"f0f83fde-ceea-4b4e-bd07-aec89cc7bcfe","name":"Token Response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"grant_type\": \"refresh_token\",\n    \"client_id\": \"{{client_id}}\",\n    \"client_secret\": \"{{client_secret}}\",\n    \"refresh_token\": \"{{refresh_token}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.4","enabled":true},{"key":"Content-Type","value":"application/json; charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.28","enabled":true},{"key":"pragma","value":"no-cache","enabled":true},{"key":"Cache-Control","value":"no-store, private","enabled":true},{"key":"Date","value":"Thu, 15 May 2025 06:28:57 GMT","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 600,\n    \"access_token\": \"xxxxxxx\",\n    \"refresh_token\": \"xxxxxxxxxxxxx\"\n}"}],"_postman_id":"8254e5bd-3263-4d6e-ac1a-c02201ae9f0d"}],"id":"beca3798-3db2-47b2-aa04-49d6dca6fae6","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"235af2c4-2595-4bb9-8b23-8fe7c49559ab","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"f60e2ea5-9be6-4696-b2ad-8717b58d419f","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"beca3798-3db2-47b2-aa04-49d6dca6fae6","description":""},{"name":"Portals","item":[{"name":"Versions","item":[{"name":"List Portal Versions","id":"3f293586-bfe5-4dcc-a6fd-dcac0b9ba5f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/versions?filters[environment]=production","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","versions"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"description":{"content":"<p>Returns portal versions that has been published to specified environment</p>\n","type":"text/plain"},"key":"filters[environment]","value":"production"},{"disabled":true,"description":{"content":"<p>Returns portal versions that has been published to specified environment</p>\n","type":"text/plain"},"key":"filters[environments][]","value":"development"},{"disabled":true,"description":{"content":"<p>Returns portal version in specified environment</p>\n","type":"text/plain"},"key":"filters[current_environment]","value":"development"},{"disabled":true,"description":{"content":"<p>Returns versions that have been on the target environment before</p>\n","type":"text/plain"},"key":"filters[target_environment]","value":"development"},{"disabled":true,"description":{"content":"<p>Sort by created date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>includes user who created the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>includes widgets available in the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"widgets"},{"disabled":true,"description":{"content":"<p>includes links available in the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"links"},{"disabled":true,"description":{"content":"<p>includes pages available in the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"pages"},{"disabled":true,"description":{"content":"<p>includes forms available in the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"forms"},{"disabled":true,"description":{"content":"<p>includes information regarding this version in each available environments</p>\n","type":"text/plain"},"key":"with[]","value":"environments"},{"disabled":true,"description":{"content":"<p>includes settings of the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"settings"}],"variable":[]}},"response":[{"id":"d061958f-111d-4104-83ae-46afedbbd8cd","name":"List Portal Versions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/versions?filters[environment]=production","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","portals","versions"],"query":[{"key":"filters[environment]","value":"production","description":"Returns portal versions that has been published to specified environment"},{"key":"filters[environments][]","value":"development","type":"text","description":"Returns portal versions that has been published to specified environment","disabled":true},{"key":"filters[current_environment]","value":"development","type":"text","description":"Returns portal version in specified environment","disabled":true},{"key":"filters[target_environment]","value":"development","type":"text","description":"Returns versions that have been on the target environment before","disabled":true},{"key":"sort","value":"created_at","description":"Sort by created date","disabled":true},{"key":"with[]","value":"user","description":"includes user who created the portal version","disabled":true},{"key":"with[]","value":"widgets","description":"includes widgets available in the portal version","disabled":true},{"key":"with[]","value":"links","description":"includes links available in the portal version","disabled":true},{"key":"with[]","value":"pages","description":"includes pages available in the portal version","disabled":true},{"key":"with[]","value":"forms","description":"includes forms available in the portal version","disabled":true},{"key":"with[]","value":"environments","description":"includes information regarding this version in each available environments","disabled":true},{"key":"with[]","value":"settings","description":"includes settings of the portal version","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:05:25 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"493","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40\",\n            \"name\": \"v4\",\n            \"is_editable\": false,\n            \"has_been_published_to_production\": true,\n            \"created_at\": \"2023-12-18 16:07:34\",\n            \"updated_at\": \"2023-12-18 16:07:34\"\n        }\n    ]\n}"}],"_postman_id":"3f293586-bfe5-4dcc-a6fd-dcac0b9ba5f5"},{"name":"Read Portal Version","id":"05f583c5-b0fa-4af0-a413-f34d40070914","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/versions/{{portal_version_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","versions","{{portal_version_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Returns portal versions that has been published to specified environment</p>\n","type":"text/plain"},"key":"filters[environment]","value":"development"},{"disabled":true,"description":{"content":"<p>Returns portal versions that has been published to specified environment</p>\n","type":"text/plain"},"key":"filters[environments][]","value":"development"},{"disabled":true,"description":{"content":"<p>Returns portal version in specified environment</p>\n","type":"text/plain"},"key":"filters[current_environment]","value":"development"},{"disabled":true,"description":{"content":"<p>Returns versions that have been on the target environment before</p>\n","type":"text/plain"},"key":"filters[target_environment]","value":"development"},{"disabled":true,"description":{"content":"<p>Sort by created date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>includes user who created the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>includes widgets available in the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"widgets"},{"disabled":true,"description":{"content":"<p>includes links available in the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"links"},{"disabled":true,"description":{"content":"<p>includes pages available in the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"pages"},{"disabled":true,"description":{"content":"<p>includes forms available in the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"forms"},{"disabled":true,"description":{"content":"<p>includes information regarding this version in each available environments</p>\n","type":"text/plain"},"key":"with[]","value":"environments"},{"disabled":true,"description":{"content":"<p>includes settings of the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"settings"}],"variable":[]}},"response":[],"_postman_id":"05f583c5-b0fa-4af0-a413-f34d40070914"},{"name":"Create Portal Version","id":"c603c5b7-e1ba-4068-b91b-d8ae766488f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"settings[0][id]","value":"title","description":"<p>The settings slug</p>\n","type":"text"},{"key":"settings[0][value]","value":"Portal","description":"<p>The settings value</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/versions","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","versions"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"c603c5b7-e1ba-4068-b91b-d8ae766488f8"}],"id":"4fc4cad9-58e9-42f6-96d0-8ed4d3fd73b1","_postman_id":"4fc4cad9-58e9-42f6-96d0-8ed4d3fd73b1","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Pages","item":[{"name":"List Portal Pages","id":"8c17503c-0a2a-40e0-a109-9567d806f87a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/pages","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","pages"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Portal Version UUID</p>\n","type":"text/plain"},"key":"filters[portal_version]","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6"},{"disabled":true,"description":{"content":"<p>Sort by id</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Includes the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"portal_version"}],"variable":[]}},"response":[{"id":"d05e9a8d-b927-4fa1-b718-972c9bc3546f","name":"List Portal Pages","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/pages?filters[portal_version]=9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","portals","pages"],"query":[{"key":"filters[portal_version]","value":"9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40","description":"Portal Version UUID"},{"key":"sort","value":"id","description":"Sort by id","disabled":true},{"key":"with[]","value":"portal_version","description":"Includes the portal version","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:20:53 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"496","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 5,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 5,\n    \"data\": [\n        {\n            \"id\": \"9ae102cf-c102-4853-be16-dd1b083a6e70\",\n            \"page_id\": \"3b859257-0fa1-4b06-8260-1d3362408297\",\n            \"name\": \"Lopende zaken\"\n        },\n        {\n            \"id\": \"9ae102cf-c2b3-46e9-b621-c426e5838081\",\n            \"page_id\": \"a8e04390-f181-45f8-89fa-7ae2c98dd43f\",\n            \"name\": \"Mijn Gegevens\"\n        },\n        {\n            \"id\": \"9ae102cf-c3cf-46bb-af61-892d3f8b5f35\",\n            \"page_id\": \"c0aff01a-ff88-4000-9331-0326a1136af0\",\n            \"name\": \"Afgewikkelde zaken\"\n        },\n        {\n            \"id\": \"9ae102cf-c4fa-4440-86b9-bcbf2648d648\",\n            \"page_id\": \"ce7ad177-0d77-4386-bdf9-03f251802ca9\",\n            \"name\": \"Dashboard\"\n        },\n        {\n            \"id\": \"9ae102cf-c61e-4611-bd08-9533ed57ec1a\",\n            \"page_id\": \"ec68c520-bdac-4021-9472-5e5e368a5d94\",\n            \"name\": \"Aanvragen\"\n        }\n    ]\n}"}],"_postman_id":"8c17503c-0a2a-40e0-a109-9567d806f87a"},{"name":"Read Portal Page","id":"b93f3021-7eb9-45ca-9e1e-072840649220","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/pages/{{portal_page_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","pages","{{portal_page_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"key":"with[]","value":"portal_version"}],"variable":[]}},"response":[],"_postman_id":"b93f3021-7eb9-45ca-9e1e-072840649220"},{"name":"Create Portal Page","id":"5e944eb8-c34d-4b2a-b1b0-547022999884","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"original_id","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>The page uuid (see pages endpoints)</p>\n"},{"key":"portal_version_id","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>The portal version id</p>\n"},{"key":"name","value":"Dashboard","type":"text","description":"<p>The name of the page</p>\n","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/pages","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","pages"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e944eb8-c34d-4b2a-b1b0-547022999884"},{"name":"Update Portal Page","id":"fb856496-6c17-45a7-b629-5d6b7c59e387","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Dashboard","type":"text","description":"<p>The name of the page</p>\n"}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/pages/{{portal_page_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","pages","{{portal_page_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb856496-6c17-45a7-b629-5d6b7c59e387"},{"name":"Delete Portal Page","id":"a1bbf5d6-a33f-48ad-9c3b-4ffa82ae0bd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/pages/{{portal_page_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","pages","{{portal_page_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1bbf5d6-a33f-48ad-9c3b-4ffa82ae0bd0"}],"id":"f9d56097-eb4d-47d6-bf5a-0a0530c15915","_postman_id":"f9d56097-eb4d-47d6-bf5a-0a0530c15915","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Widgets","item":[{"name":"List Portal Widgets","id":"ef80c909-135a-43c1-ab4c-3c5ca9937224","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/widgets","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","widgets"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Portal Version UUID</p>\n","type":"text/plain"},"key":"filters[portal_version]","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6"},{"disabled":true,"description":{"content":"<p>Sort by id</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Includes the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"portal_version"}],"variable":[]}},"response":[{"id":"11a58596-0261-46ea-8948-7c65090d77ed","name":"List Portal Widgets","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/widgets?filters[portal_version]=9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","portals","widgets"],"query":[{"key":"filters[portal_version]","value":"9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40","description":"Portal Version UUID"},{"key":"sort","value":"id","description":"Sort by id","disabled":true},{"key":"with[]","value":"portal_version","description":"Includes the portal version","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:21:11 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"495","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 7,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 7,\n    \"data\": [\n        {\n            \"id\": \"9ae102cf-a577-4d0f-9f81-e3ecb8b4547c\",\n            \"widget_id\": \"491398bf-cb06-4340-aaa3-30cb09025769\",\n            \"name\": \"Mijn gegevens\"\n        },\n        {\n            \"id\": \"9ae102cf-a784-490c-a7f7-4b093720ce82\",\n            \"widget_id\": \"4af7c292-e951-4df8-a907-55248bd7d1b9\",\n            \"name\": \"Mededelingen\"\n        },\n        {\n            \"id\": \"9ae102cf-b71a-459a-9d03-a17feb01b653\",\n            \"widget_id\": \"69fe8898-5381-4308-a6d0-f734b5dd5c61\",\n            \"name\": \"Afgeronde zaken\"\n        },\n        {\n            \"id\": \"9ae102cf-b91b-480b-bc8b-8d479deac47a\",\n            \"widget_id\": \"748b2d39-bdff-4958-b2dc-65e373a6a14c\",\n            \"name\": \"Lopende zaken\"\n        },\n        {\n            \"id\": \"9ae102cf-bb4b-437f-8b8f-d94fc0e0f337\",\n            \"widget_id\": \"814ef8ac-5232-41c2-9622-912cda58bb66\",\n            \"name\": \"Berichten\"\n        },\n        {\n            \"id\": \"9ae102cf-bcc3-4669-90d5-54885662b896\",\n            \"widget_id\": \"d05d149a-3ffc-4388-9f8c-07c027ffd6a7\",\n            \"name\": \"Aanvraag starten\"\n        },\n        {\n            \"id\": \"9ae102cf-be14-4350-ad8a-186a0b2eec98\",\n            \"widget_id\": \"f301f687-ab7d-44d1-860d-6fab9cb62552\",\n            \"name\": \"Snelkoppelingen\"\n        }\n    ]\n}"}],"_postman_id":"ef80c909-135a-43c1-ab4c-3c5ca9937224"},{"name":"Read Portal Widget","id":"6fef2e57-580f-4592-9358-10e385352879","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/widgets/{{portal_widget_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","widgets","{{portal_widget_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"key":"with[]","value":"portal_version"}],"variable":[]}},"response":[],"_postman_id":"6fef2e57-580f-4592-9358-10e385352879"},{"name":"Create Portal Widget","id":"6cde4c5d-9b7b-46b8-83dc-6d98a5bfaff9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"original_id","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>The widget uuid (see widgets endpoints)</p>\n","disabled":true},{"key":"portal_version_id","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>The portal version id</p>\n","disabled":true},{"key":"name","value":"Berichten","type":"text","description":"<p>The name of the page</p>\n","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/widgets","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","widgets"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"6cde4c5d-9b7b-46b8-83dc-6d98a5bfaff9"},{"name":"Update Portal Widget","id":"47625f3e-d03e-4bd6-8c63-b75356600b1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Berichten","type":"text","description":"<p>The name of the widget</p>\n"}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/widgets/{{portal_widget_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","widgets","{{portal_widget_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"47625f3e-d03e-4bd6-8c63-b75356600b1d"},{"name":"Delete Portal Widget","id":"5b67ce43-5045-4960-aae9-0eca42ab9951","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/widgets/{{portal_widget_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","widgets","{{portal_widget_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b67ce43-5045-4960-aae9-0eca42ab9951"}],"id":"94a39ffc-df2c-41a0-a8a4-52040d574f9a","_postman_id":"94a39ffc-df2c-41a0-a8a4-52040d574f9a","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Forms","item":[{"name":"List Portal Forms","id":"3aa56de2-964d-4b54-8093-6435459752a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/forms","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","forms"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Portal Version UUID</p>\n","type":"text/plain"},"key":"filters[portal_version]","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6"},{"disabled":true,"description":{"content":"<p>Sort by form name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Includes the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"portal_version"}],"variable":[]}},"response":[{"id":"26e77c15-b8bc-450b-9073-22417bd81e7c","name":"List Portal Forms","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/forms?filters[portal_version]=9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","portals","forms"],"query":[{"key":"filters[portal_version]","value":"9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40","description":"Portal Version UUID"},{"key":"sort","value":"name","description":"Sort by form name","disabled":true},{"key":"with[]","value":"portal_version","description":"Includes the portal version","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:23:14 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"499","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9ae102cf-c802-4ce6-b922-95cb9769ecb6\",\n            \"shadow_form_id\": null,\n            \"name\": \"Mozard Suite Cases Integration\",\n            \"expires_at\": null,\n            \"form_name\": null,\n            \"embed_link\": null,\n            \"created_at\": \"2023-12-18T15:07:34.000000Z\"\n        }\n    ]\n}"}],"_postman_id":"3aa56de2-964d-4b54-8093-6435459752a4"},{"name":"Read Portal Form","id":"0229b3c5-ed31-42dd-98dc-9767e2cd38b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/forms/{{portal_form_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","forms","{{portal_form_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"key":"with[]","value":"portal_version"}],"variable":[]}},"response":[],"_postman_id":"0229b3c5-ed31-42dd-98dc-9767e2cd38b7"},{"name":"Create Portal Form","id":"16157d03-410f-4381-820d-de457377d874","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"shadow_form_id","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>The form uuid (see forms endpoints)</p>\n","disabled":true},{"key":"portal_version_id","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>The portal version id</p>\n","disabled":true},{"key":"name","value":"Berichten","type":"text","description":"<p>The name of the page</p>\n","disabled":true},{"key":"expires_at","value":"2024-01-01","description":"<p>Date when the form will be \"closed\" in the portal</p>\n","type":"text","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/forms","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","forms"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"16157d03-410f-4381-820d-de457377d874"},{"name":"Update Portal Form","id":"12fc9027-9dc6-4aba-84fd-c9196ecd3437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Berichten","type":"text","description":"<p>The name of the widget</p>\n","disabled":true},{"key":"expires_at","value":"2024-01-01","type":"text","description":"<p>Date when the form will be \"closed\" in the portal</p>\n","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/forms/{{portal_form_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","forms","{{portal_form_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"12fc9027-9dc6-4aba-84fd-c9196ecd3437"},{"name":"Delete Portal Form","id":"4a35ef6e-d4cf-4d03-b1ff-cb9b24e44b54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/forms/{{portal_form_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","forms","{{portal_form_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a35ef6e-d4cf-4d03-b1ff-cb9b24e44b54"}],"id":"5b1c182e-837b-49f9-aec3-19c69fe01db6","_postman_id":"5b1c182e-837b-49f9-aec3-19c69fe01db6","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Links","item":[{"name":"List Portal Links","id":"475975f0-6a82-48a9-b075-811c6c71a5d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/links","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","links"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Portal Version UUID</p>\n","type":"text/plain"},"key":"filters[portal_version]","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6"},{"disabled":true,"description":{"content":"<p>Sort by id</p>\n","type":"text/plain"},"key":"sort","value":"id"},{"disabled":true,"description":{"content":"<p>Includes the portal version</p>\n","type":"text/plain"},"key":"with[]","value":"portal_version"}],"variable":[]}},"response":[],"_postman_id":"475975f0-6a82-48a9-b075-811c6c71a5d4"},{"name":"Read Portal Link","id":"18933424-4666-4f90-8152-05e657961c54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/links/{{portal_link_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","links","{{portal_link_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"key":"with[]","value":"portal_version"}],"variable":[]}},"response":[],"_postman_id":"18933424-4666-4f90-8152-05e657961c54"},{"name":"Create Portal Link","id":"066482ea-19e9-4268-950f-dafde43ec532","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"portal_version_id","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>The portal version id</p>\n","disabled":true},{"key":"name","value":"Berichten","type":"text","description":"<p>The name of the link</p>\n","disabled":true},{"key":"url","value":"http://mozard.nl","type":"text","description":"<p>The url of the link</p>\n","disabled":true},{"key":"icon","value":"mdi-account-group","type":"text","description":"<p>set of mdi-icons</p>\n","disabled":true},{"key":"open_in","value":"new_tab","type":"text","description":"<p>current_tab, new_tab</p>\n","disabled":true},{"key":"published_at","value":"2024-01-01","description":"<p>when the link will be shown in the portal</p>\n","type":"text","disabled":true},{"key":"expires_at","value":"2024-01-02","description":"<p>when the link will be unavailable in the portal</p>\n","type":"text","disabled":true},{"key":"description","value":"this is a link","description":"<p>description of the.link </p>\n","type":"text","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/links","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","links"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"066482ea-19e9-4268-950f-dafde43ec532"},{"name":"Update Portal Link","id":"e7005242-259f-42d4-a5a0-8bbf3f0fc186","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Berichten","type":"text","description":"<p>The name of the widget</p>\n","disabled":true},{"key":"url","value":"http://mozard.nl","type":"text","description":"<p>Date when the form will be \"closed\" in the portal</p>\n","disabled":true},{"key":"icon","value":"mdi-account-group","type":"text","disabled":true},{"key":"open_in","value":"new_tab","type":"text","disabled":true},{"key":"published_at","value":"2024-01-01","type":"text","disabled":true},{"key":"expires_at","value":"2024-01-02","type":"text","disabled":true},{"key":"description","value":"this is a link","type":"text","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/links/{{portal_link_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","links","{{portal_link_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7005242-259f-42d4-a5a0-8bbf3f0fc186"},{"name":"Delete Portal Link","id":"c88c06ce-a75f-4237-80f7-766a18b5dac9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/links/{{portal_link_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","links","{{portal_link_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"c88c06ce-a75f-4237-80f7-766a18b5dac9"}],"id":"35e786bd-a819-44e9-82eb-92dae858f1bc","_postman_id":"35e786bd-a819-44e9-82eb-92dae858f1bc","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}}],"id":"510393a2-6384-4e05-b39c-10e426d984eb","_postman_id":"510393a2-6384-4e05-b39c-10e426d984eb","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Integrations","item":[{"name":"List Integrations","id":"5a1f942a-9580-47ec-8248-3916cbc73be8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/integrations","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","integrations"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>the integration template id</p>\n","type":"text/plain"},"key":"filters[template]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7"},{"disabled":true,"description":{"content":"<p>authentication, bag, document_template, kvk, microsoft_sharepoint, payment, signing</p>\n","type":"text/plain"},"key":"filters[group]","value":"kvk"},{"disabled":true,"description":{"content":"<p>authentication, bag, document_template, kvk, microsoft_sharepoint, payment, signing</p>\n","type":"text/plain"},"key":"filters[groups][]","value":"kvk"},{"disabled":true,"description":{"content":"<p>ready, incomplete</p>\n","type":"text/plain"},"key":"filters[status]","value":"ready"},{"disabled":true,"description":{"content":"<p>ready, incomplete</p>\n","type":"text/plain"},"key":"filters[statuses][]","value":"ready"},{"disabled":true,"description":{"content":"<p>returns published integrations</p>\n","type":"text/plain"},"key":"filters[is_published]","value":"true"},{"disabled":true,"description":{"content":"<p>returns integrations in group authentication</p>\n","type":"text/plain"},"key":"filters[is_authentication]","value":"true"},{"disabled":true,"description":{"content":"<p>sort by name</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>include the integration template</p>\n","type":"text/plain"},"key":"with[]","value":"template"},{"disabled":true,"description":{"content":"<p>include transaction records of an integration</p>\n","type":"text/plain"},"key":"with[]","value":"transactions"},{"disabled":true,"description":{"content":"<p>include signature transaction records of an integration</p>\n","type":"text/plain"},"key":"with[]","value":"signature_transactions"},{"disabled":true,"description":{"content":"<p>include fillables</p>\n","type":"text/plain"},"key":"with[]","value":"fillables"},{"disabled":true,"description":{"content":"<p>include settings</p>\n","type":"text/plain"},"key":"with[]","value":"settings"},{"disabled":true,"description":{"content":"<p>include output mappings</p>\n","type":"text/plain"},"key":"with[]","value":"output_mappings"}],"variable":[]}},"response":[{"id":"c0fe861b-0a29-4a8e-9d3a-e438392c603e","name":"List Integrations","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/integrations","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","integrations"],"query":[{"key":"filters[template]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7","type":"text","description":"the integration template id","disabled":true},{"key":"filters[group]","value":"kvk","type":"text","description":"authentication, bag, document_template, kvk, microsoft_sharepoint, payment, signing","disabled":true},{"key":"filters[groups][]","value":"kvk","type":"text","description":"authentication, bag, document_template, kvk, microsoft_sharepoint, payment, signing","disabled":true},{"key":"filters[status]","value":"ready","type":"text","description":"ready, incomplete","disabled":true},{"key":"filters[statuses][]","value":"ready","type":"text","description":"ready, incomplete","disabled":true},{"key":"filters[is_published]","value":"true","type":"text","description":"returns published integrations","disabled":true},{"key":"filters[is_authentication]","value":"true","type":"text","description":"returns integrations in group authentication","disabled":true},{"key":"sort","value":"name","type":"text","description":"sort by name","disabled":true},{"key":"with[]","value":"template","type":"text","description":"include the integration template","disabled":true},{"key":"with[]","value":"transactions","type":"text","description":"include transaction records of an integration","disabled":true},{"key":"with[]","value":"signature_transactions","type":"text","description":"include signature transaction records of an integration","disabled":true},{"key":"with[]","value":"fillables","type":"text","description":"include fillables","disabled":true},{"key":"with[]","value":"settings","type":"text","description":"include settings","disabled":true},{"key":"with[]","value":"output_mappings","type":"text","description":"include output mappings","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:19:05 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"498","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 4,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 4,\n    \"data\": [\n        {\n            \"id\": \"9ab8cab1-3693-4b2c-9b95-a266b692e97b\",\n            \"template_id\": \"8daf6c78-afc6-4ff1-9522-1a866929ee1c\",\n            \"group\": {\n                \"name\": \"authentication\",\n                \"label\": \"Authenticatie\"\n            },\n            \"name\": \"Keycloak\",\n            \"icon\": \"http://mozard.mozard suite-accounts-api.test/storage/media/9ab8df1e-2278-49be-bf74-442d53533411/cat.jpeg\",\n            \"status\": \"ready\",\n            \"is_testable\": false,\n            \"published_at\": \"2023-11-28 16:25:18\",\n            \"created_at\": \"2023-11-28 16:17:32\"\n        },\n        {\n            \"id\": \"9ae47de0-587d-4751-b3c2-d5a82598a5d3\",\n            \"template_id\": \"cade0950-b499-470a-a279-c9eeb69d197f\",\n            \"group\": {\n                \"name\": \"kvk\",\n                \"label\": \"KVK\"\n            },\n            \"name\": \"KVK\",\n            \"icon\": \"/assets/images/integrations/kvkicon.jpg\",\n            \"status\": \"ready\",\n            \"is_testable\": true,\n            \"published_at\": \"2023-12-20 09:39:20\",\n            \"created_at\": \"2023-12-20 09:39:10\"\n        },\n        {\n            \"id\": \"9b276a35-e933-4aac-8454-005373d293fa\",\n            \"template_id\": \"919e90ae-3f61-4dae-a845-c4c277460e01\",\n            \"group\": {\n                \"name\": \"microsoft_sharepoint\",\n                \"label\": \"Microsoft SharePoint\"\n            },\n            \"name\": \"Microsoft Sharepoint\",\n            \"icon\": \"/assets/images/integrations/microsoftsharepointicon.png\",\n            \"status\": \"ready\",\n            \"is_testable\": true,\n            \"published_at\": \"2024-01-22 16:05:12\",\n            \"created_at\": \"2024-01-22 16:04:39\"\n        },\n        {\n            \"id\": \"9b514dba-8beb-45aa-b73a-59f5598f50f8\",\n            \"template_id\": \"69a628ff-394b-4845-bb4b-2068023d4e4f\",\n            \"group\": {\n                \"name\": \"bag\",\n                \"label\": \"BAG\"\n            },\n            \"name\": \"BAG\",\n            \"icon\": \"/assets/images/integrations/kadastericon.svg\",\n            \"status\": \"ready\",\n            \"is_testable\": true,\n            \"published_at\": \"2024-02-12 11:50:01\",\n            \"created_at\": \"2024-02-12 11:49:47\"\n        }\n    ]\n}"}],"_postman_id":"5a1f942a-9580-47ec-8248-3916cbc73be8"},{"name":"Read Integration","id":"3dcfaf86-bb03-4c8c-9b23-18648bb0fb5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/integrations/{{integration_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","integrations","{{integration_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>include the integration template</p>\n","type":"text/plain"},"key":"with[]","value":"template"},{"disabled":true,"description":{"content":"<p>include transaction records of an integration</p>\n","type":"text/plain"},"key":"with[]","value":"transactions"},{"disabled":true,"description":{"content":"<p>include signature transaction records of an integration</p>\n","type":"text/plain"},"key":"with[]","value":"signature_transactions"},{"disabled":true,"description":{"content":"<p>include fillables</p>\n","type":"text/plain"},"key":"with[]","value":"fillables"},{"disabled":true,"description":{"content":"<p>include settings</p>\n","type":"text/plain"},"key":"with[]","value":"settings"},{"disabled":true,"description":{"content":"<p>include output mappings</p>\n","type":"text/plain"},"key":"with[]","value":"output_mappings"}],"variable":[]}},"response":[{"id":"73ba7939-7bf2-4fff-bccd-ca33128e82d2","name":"Read Integration","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/integrations/9ab8cab1-3693-4b2c-9b95-a266b692e97b?with[]=fillables","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","integrations","9ab8cab1-3693-4b2c-9b95-a266b692e97b"],"query":[{"key":"with[]","value":"template","type":"text","description":"include the integration template","disabled":true},{"key":"with[]","value":"transactions","type":"text","description":"include transaction records of an integration","disabled":true},{"key":"with[]","value":"signature_transactions","type":"text","description":"include signature transaction records of an integration","disabled":true},{"key":"with[]","value":"fillables","type":"text","description":"include fillables"},{"key":"with[]","value":"settings","type":"text","description":"include settings","disabled":true},{"key":"with[]","value":"output_mappings","type":"text","description":"include output mappings","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:20:20 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"499","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9ab8cab1-3693-4b2c-9b95-a266b692e97b\",\n    \"template_id\": \"8daf6c78-afc6-4ff1-9522-1a866929ee1c\",\n    \"group\": {\n        \"name\": \"authentication\",\n        \"label\": \"Authenticatie\"\n    },\n    \"name\": \"Keycloak\",\n    \"icon\": \"http://mozard.mozard suite-accounts-api.test/storage/media/9ab8df1e-2278-49be-bf74-442d53533411/cat.jpeg\",\n    \"status\": \"ready\",\n    \"is_testable\": false,\n    \"published_at\": \"2023-11-28 16:25:18\",\n    \"created_at\": \"2023-11-28 16:17:32\",\n    \"fillables\": [\n        {\n            \"type\": \"text\",\n            \"name\": \"name\",\n            \"label\": \"Naam\",\n            \"value\": null,\n            \"group\": null,\n            \"is_mapable\": true,\n            \"is_required\": false,\n            \"options\": null,\n            \"placeholder\": null\n        },\n        {\n            \"type\": \"text\",\n            \"name\": \"family_name\",\n            \"label\": \"Achternaam\",\n            \"value\": null,\n            \"group\": null,\n            \"is_mapable\": true,\n            \"is_required\": false,\n            \"options\": null,\n            \"placeholder\": null\n        },\n        {\n            \"type\": \"text\",\n            \"name\": \"given_name\",\n            \"label\": \"Voornaam\",\n            \"value\": null,\n            \"group\": null,\n            \"is_mapable\": true,\n            \"is_required\": false,\n            \"options\": null,\n            \"placeholder\": null\n        },\n        {\n            \"type\": \"text\",\n            \"name\": \"middle_name\",\n            \"label\": \"Tweede naam\",\n            \"value\": null,\n            \"group\": null,\n            \"is_mapable\": true,\n            \"is_required\": false,\n            \"options\": null,\n            \"placeholder\": null\n        },\n        {\n            \"type\": \"text\",\n            \"name\": \"nickname\",\n            \"label\": \"Nickname\",\n            \"value\": null,\n            \"group\": null,\n            \"is_mapable\": true,\n            \"is_required\": false,\n            \"options\": null,\n            \"placeholder\": null\n        },\n        {\n            \"type\": \"text\",\n            \"name\": \"email\",\n            \"label\": \"Emailadres\",\n            \"value\": null,\n            \"group\": null,\n            \"is_mapable\": true,\n            \"is_required\": false,\n            \"options\": null,\n            \"placeholder\": null\n        },\n        {\n            \"type\": \"text\",\n            \"name\": \"email_verified\",\n            \"label\": \"Emailadres bevestigd\",\n            \"value\": null,\n            \"group\": null,\n            \"is_mapable\": true,\n            \"is_required\": false,\n            \"options\": null,\n            \"placeholder\": null\n        }\n    ]\n}"}],"_postman_id":"3dcfaf86-bb03-4c8c-9b23-18648bb0fb5c"},{"name":"Create Integration","id":"f0161792-da41-40d2-a85f-00fcf7a49897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"integration_template_id","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7","description":"<p>the integration template id</p>\n","type":"text","disabled":true},{"key":"name","value":"KVK integration","description":"<p>name of the integration</p>\n","type":"text","disabled":true},{"key":"is_testable","value":"false","description":"<p>indicates whether the integration is testable through mozard suite accounts or not</p>\n","type":"text","disabled":true},{"key":"settings[0][id]","value":"integration.kvk.api.key","description":"<p>the setting slug of integration</p>\n","type":"text","disabled":true},{"key":"settings[0][value]","value":"xxx","description":"<p>the setting value of integration</p>\n","type":"text","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/integrations","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","integrations"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0161792-da41-40d2-a85f-00fcf7a49897"},{"name":"Update Integration","id":"da32ad8c-fa28-436a-9ece-00a7097aae0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"KVK integration","description":"<p>name of the integration</p>\n","type":"text","disabled":true},{"key":"is_testable","value":"false","description":"<p>indicates whether the integration is testable through mozard suite accounts or not</p>\n","type":"text","disabled":true},{"key":"settings[0][id]","value":"integration.kvk.api.key","description":"<p>the setting slug of integration</p>\n","type":"text","disabled":true},{"key":"settings[0][value]","value":"xxx","description":"<p>the setting value of integration</p>\n","type":"text","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/integrations/{{integration_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","integrations","{{integration_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"da32ad8c-fa28-436a-9ece-00a7097aae0e"},{"name":"Delete Integration","id":"c454f468-a123-4b16-8411-7bb60524696a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/integrations/{{integration_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","integrations","{{integration_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"c454f468-a123-4b16-8411-7bb60524696a"}],"id":"befe293c-9e4b-474b-9902-666257857c60","_postman_id":"befe293c-9e4b-474b-9902-666257857c60","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Custom Lists","item":[{"name":"List Custom Lists","id":"f698783a-00cf-42d8-bdef-c87fe4311e0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","custom-lists"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>search custom list by name</p>\n","type":"text/plain"},"key":"filters[search]","value":"name"},{"disabled":true,"description":{"content":"<p>sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>include the columns of custom list</p>\n","type":"text/plain"},"key":"with[]","value":"columns"},{"disabled":true,"description":{"content":"<p>include the column that represents the label of custom list</p>\n","type":"text/plain"},"key":"with[]","value":"column_label"}],"variable":[]}},"response":[{"id":"96a21139-0fdb-4c98-a87c-b4653b05da22","name":"List Custom Lists","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","custom-lists"],"query":[{"key":"filters[search]","value":"name","description":"search custom list by name","type":"text","disabled":true},{"key":"sort","value":"created_at","description":"sort by creation date","disabled":true},{"key":"with[]","value":"columns","description":"include the columns of custom list","disabled":true},{"key":"with[]","value":"column_label","description":"include the column that represents the label of custom list","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:15:59 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"496","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 2,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 2,\n    \"data\": [\n        {\n            \"id\": \"9abc466e-e37a-476e-a031-eb3dbf830ef5\",\n            \"type\": \"simple\",\n            \"name\": \"Function\",\n            \"is_appendable\": false,\n            \"created_at\": \"2023-11-30T08:51:02.000000Z\",\n            \"updated_at\": \"2023-11-30T08:51:02.000000Z\",\n            \"meta\": {\n                \"id\": \"9abc466e-e37a-476e-a031-eb3dbf830ef5\",\n                \"type\": \"custom_list\"\n            }\n        },\n        {\n            \"id\": \"9abc46eb-cabb-48da-bcd6-ae54fe4eced0\",\n            \"type\": \"complex\",\n            \"name\": \"Mozarders\",\n            \"is_appendable\": false,\n            \"created_at\": \"2023-11-30T08:52:23.000000Z\",\n            \"updated_at\": \"2024-02-27T13:53:26.000000Z\",\n            \"meta\": {\n                \"id\": \"9abc46eb-cabb-48da-bcd6-ae54fe4eced0\",\n                \"type\": \"custom_list\"\n            }\n        }\n    ]\n}"}],"_postman_id":"f698783a-00cf-42d8-bdef-c87fe4311e0c"},{"name":"List Custom List headers and filters","id":"6ae1b2e8-1254-4752-a9f1-923d710d0382","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists/config/{{custom_list_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","custom-lists","config","{{custom_list_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[{"id":"d1641fde-e10a-472d-8860-540f20a5c4f6","name":"List Custom List headers and filters","originalRequest":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists/config/9abc46eb-cabb-48da-bcd6-ae54fe4eced0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:17:47 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"477","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"title\": \"Mozarders\",\n    \"limit\": 15,\n    \"headers\": [\n        {\n            \"id\": \"9abc46eb-cc54-4070-9885-0af22a16e4c5\",\n            \"original\": \"Naam\",\n            \"label\": \"Naam\",\n            \"group\": null,\n            \"sortable\": false,\n            \"width\": null,\n            \"align\": \"start\",\n            \"type\": \"text\"\n        },\n        {\n            \"id\": \"9abc46f7-3f4a-4b4b-b4df-97e6b3b9069f\",\n            \"original\": \"Age\",\n            \"label\": \"Age\",\n            \"group\": null,\n            \"sortable\": false,\n            \"width\": null,\n            \"align\": \"start\",\n            \"type\": \"number\"\n        },\n        {\n            \"id\": \"9abc46fc-f401-4fbc-a513-38237c9d4bf3\",\n            \"original\": \"Function\",\n            \"label\": \"Function\",\n            \"group\": null,\n            \"sortable\": false,\n            \"width\": null,\n            \"align\": \"start\",\n            \"type\": \"foreign\"\n        },\n        {\n            \"id\": \"9b1eeb26-d05f-456c-ba68-6ac6e0c0420d\",\n            \"original\": \"Image\",\n            \"label\": \"Image\",\n            \"group\": null,\n            \"sortable\": false,\n            \"width\": null,\n            \"align\": \"start\",\n            \"type\": \"file\"\n        },\n        {\n            \"id\": \"actie\",\n            \"original\": \"Actie\",\n            \"label\": \"Actie\",\n            \"group\": null,\n            \"sortable\": false,\n            \"width\": null,\n            \"align\": \"start\",\n            \"type\": null\n        }\n    ],\n    \"filters\": [\n        {\n            \"data\": [],\n            \"id\": \"9abc46eb-cc54-4070-9885-0af22a16e4c5\",\n            \"type\": \"text\",\n            \"original\": \"Naam\",\n            \"label\": \"Naam\",\n            \"group\": null,\n            \"operators\": [\n                \"equal\"\n            ],\n            \"operator\": \"equal\",\n            \"placeholder\": \"Naam\",\n            \"description\": null,\n            \"url\": null,\n            \"options\": [],\n            \"multiple\": false,\n            \"icon\": null,\n            \"fillable\": true,\n            \"visible\": true\n        },\n        {\n            \"data\": [],\n            \"id\": \"9abc46f7-3f4a-4b4b-b4df-97e6b3b9069f\",\n            \"type\": \"text\",\n            \"original\": \"Age\",\n            \"label\": \"Age\",\n            \"group\": null,\n            \"operators\": [\n                \"equal\"\n            ],\n            \"operator\": \"equal\",\n            \"placeholder\": \"Age\",\n            \"description\": null,\n            \"url\": null,\n            \"options\": [],\n            \"multiple\": false,\n            \"icon\": null,\n            \"fillable\": true,\n            \"visible\": true\n        },\n        {\n            \"data\": [],\n            \"id\": \"9abc46fc-f401-4fbc-a513-38237c9d4bf3\",\n            \"type\": \"select\",\n            \"original\": \"Function\",\n            \"label\": \"Function\",\n            \"group\": null,\n            \"operators\": [\n                \"equal\"\n            ],\n            \"operator\": \"equal\",\n            \"placeholder\": \"Function\",\n            \"description\": null,\n            \"url\": \"http://mozard.mozard suite-accounts-api.test/v0/custom-lists/items?filters%5Blist%5D=9abc466e-e37a-476e-a031-eb3dbf830ef5&with%5B0%5D=label\",\n            \"options\": [],\n            \"multiple\": true,\n            \"icon\": null,\n            \"fillable\": true,\n            \"visible\": true\n        }\n    ],\n    \"sort_by\": []\n}"}],"_postman_id":"6ae1b2e8-1254-4752-a9f1-923d710d0382"},{"name":"List Custom list items","id":"a2fb20d8-2129-46f8-884e-b9e3886f82ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists/data/{{custom_list_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","custom-lists","data","{{custom_list_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Filters the custom list items based on the column - value combination</p>\n","type":"text/plain"},"key":"filters[{{column-id}}]","value":"value of the column"},{"disabled":true,"description":{"content":"<p>returns the combination of column and value of an item as key value pair</p>\n","type":"text/plain"},"key":"with[]","value":"attributes"}],"variable":[]}},"response":[{"id":"e348c725-2df8-409e-83fd-79aaf3e285c5","name":"List Custom list items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists/data/9abc46eb-cabb-48da-bcd6-ae54fe4eced0","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","custom-lists","data","9abc46eb-cabb-48da-bcd6-ae54fe4eced0"],"query":[{"key":"filters[{{column-id}}]","value":"value of the column","description":"Filters the custom list items based on the column - value combination","disabled":true},{"key":"with[]","value":"attributes","description":"returns the combination of column and value of an item as key value pair","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:18:07 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"476","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 2,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 2,\n    \"data\": [\n        {\n            \"id\": \"9b3749c0-0bb5-4851-9947-71c2f3fd0b72\",\n            \"name\": \"Joseph\",\n            \"created_at\": \"2024-01-30T12:27:08.000000Z\",\n            \"updated_at\": \"2024-01-30T12:27:08.000000Z\",\n            \"Naam\": \"Joseph\",\n            \"Age\": \"31\",\n            \"Function\": {\n                \"id\": \"9abc46c9-f1b9-44c1-ab7f-1b278146b09b\",\n                \"value\": \"Backend\"\n            },\n            \"Image\": \"http://mozard.mozard suite-accounts-api.test/storage/media/9b375689-e356-4d9c-9cc1-b77eb1a5ebbc/cat.jpeg\"\n        },\n        {\n            \"id\": \"9b3756ab-8e0b-44bb-b37a-e764f8f154ba\",\n            \"name\": \"Bryse\",\n            \"created_at\": \"2024-01-30T13:03:15.000000Z\",\n            \"updated_at\": \"2024-01-30T13:03:15.000000Z\",\n            \"Naam\": \"Bryse\",\n            \"Age\": \"30\",\n            \"Function\": {\n                \"id\": \"9abeb9cb-9a8d-40fb-b56a-e87a38fe1197\",\n                \"value\": \"Lead\"\n            },\n            \"Image\": \"http://mozard.mozard suite-accounts-api.test/storage/media/9b3756b9-4fa6-45d0-b9b6-e054f4aedea1/eherkenning-icon.jpeg\"\n        }\n    ]\n}"},{"id":"e907b840-10f6-4eda-a7f2-f8fae930affc","name":"Filter items by column","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists/data/9abc46eb-cabb-48da-bcd6-ae54fe4eced0?filters[9abc46eb-cc54-4070-9885-0af22a16e4c5]=Joseph","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","custom-lists","data","9abc46eb-cabb-48da-bcd6-ae54fe4eced0"],"query":[{"key":"filters[9abc46eb-cc54-4070-9885-0af22a16e4c5]","value":"Joseph","description":"Filters the custom list items based on the column - value combination"},{"key":"with[]","value":"attributes","description":"returns the combination of column and value of an item as key value pair","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:18:41 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"499","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9b3749c0-0bb5-4851-9947-71c2f3fd0b72\",\n            \"name\": \"Joseph\",\n            \"created_at\": \"2024-01-30T12:27:08.000000Z\",\n            \"updated_at\": \"2024-01-30T12:27:08.000000Z\",\n            \"Naam\": \"Joseph\",\n            \"Age\": \"31\",\n            \"Function\": {\n                \"id\": \"9abc46c9-f1b9-44c1-ab7f-1b278146b09b\",\n                \"value\": \"Backend\"\n            },\n            \"Image\": \"http://mozard.mozard suite-accounts-api.test/storage/media/9b375689-e356-4d9c-9cc1-b77eb1a5ebbc/cat.jpeg\"\n        }\n    ]\n}"}],"_postman_id":"a2fb20d8-2129-46f8-884e-b9e3886f82ac"},{"name":"Create Custom List Item","id":"907ed6e9-726c-4f64-9ac6-7891a1d9e8ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"custom_list[id]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7","description":"<p>the id of the custom list</p>\n","type":"text","disabled":true},{"key":"attributes[0][id]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7","description":"<p>the column id</p>\n","type":"text","disabled":true},{"key":"attributes[0][value]","value":"value","description":"<p>the value of the column</p>\n","type":"text","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists/items","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","custom-lists","items"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"907ed6e9-726c-4f64-9ac6-7891a1d9e8ee"},{"name":"Update Custom List Item","id":"e09c809b-0b1d-4d67-9e6c-3d4a5233aabc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"attributes[0][id]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7","description":"<p>the column id</p>\n","type":"text","disabled":true},{"key":"attributes[0][value]","value":"value","description":"<p>the value of the column</p>\n","type":"text","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists/items/{{custom_list_item_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","custom-lists","items","{{custom_list_item_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"e09c809b-0b1d-4d67-9e6c-3d4a5233aabc"},{"name":"Delete Custom List Item","id":"9f571eac-f721-4676-8a8c-e6d1858589df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/custom-lists/items/{{custom_list_item_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","custom-lists","items","{{custom_list_item_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f571eac-f721-4676-8a8c-e6d1858589df"}],"id":"a7ae7720-1b50-4729-9ec8-f102f3183a1e","_postman_id":"a7ae7720-1b50-4729-9ec8-f102f3183a1e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Users","item":[{"name":"List Users","id":"12b98eca-4597-4f10-bea7-e1c941239175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/users","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","users"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>will return the logged in user</p>\n","type":"text/plain"},"key":"filters[current]","value":""},{"disabled":true,"description":{"content":"<p>search the user by name, email, position, or code</p>\n","type":"text/plain"},"key":"filters[search]","value":"name"},{"disabled":true,"description":{"content":"<p>returns the enabled/disabled users</p>\n","type":"text/plain"},"key":"filters[is_enabled]","value":"true"},{"disabled":true,"description":{"content":"<p>sort by name of user</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>sort by email of user</p>\n","type":"text/plain"},"key":"sort","value":"email"},{"disabled":true,"description":{"content":"<p>Includes roles of user</p>\n","type":"text/plain"},"key":"with[]","value":"roles"}],"variable":[]}},"response":[{"id":"c69be81d-0d01-462f-b541-b000f6a4377b","name":"List users","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/users","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","users"],"query":[{"key":"filters[current]","value":"","description":"will return the logged in user","type":"text","disabled":true},{"key":"filters[search]","value":"name","description":"search the user by name, email, position, or code","type":"text","disabled":true},{"key":"filters[is_enabled]","value":"true","description":"returns the enabled/disabled users","type":"text","disabled":true},{"key":"sort","value":"name","description":"sort by name of user","type":"text","disabled":true},{"key":"sort","value":"email","description":"sort by email of user","disabled":true},{"key":"with[]","value":"roles","description":"Includes roles of user","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:43:06 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"499","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 2,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 2,\n    \"data\": [\n        {\n            \"id\": \"aca607a8-2ef2-4cf1-b501-8cf3062e5032\",\n            \"code\": \"U-1337\",\n            \"email\": \"s.metdelangebroek@example.com\",\n            \"bsn\": null,\n            \"phone_number\": null,\n            \"name\": \"Steven met de Langebroek\",\n            \"first_name\": \"Steven\",\n            \"last_name\": \"met de Langebroek\",\n            \"position\": \"Project Manager\",\n            \"avatar\": \"https://www.gravatar.com/avatar/9e5fcceb9cfbee6232c5b47b5d7752ab?s=128&d=identicon\",\n            \"is_verified\": true,\n            \"is_enabled\": true,\n            \"has_totp\": false,\n            \"seen_at\": null,\n            \"created_at\": \"2024-02-26 17:29:39\",\n            \"updated_at\": \"2024-02-26 17:32:45\",\n            \"meta\": {\n                \"type\": \"user\"\n            },\n            \"links\": {\n                \"self\": \"http://mozard.mozard suite-accounts-api.test/v0/users/aca607a8-2ef2-4cf1-b501-8cf3062e5032\"\n            }\n        },\n        {\n            \"id\": \"b62a42b9-01fa-43b0-a6b7-81ec334b2064\",\n            \"code\": \"U-8449\",\n            \"email\": \"j.budiarto@mozard.nl\",\n            \"bsn\": null,\n            \"phone_number\": null,\n            \"name\": \"Sara Verkijkker\",\n            \"first_name\": \"Sara\",\n            \"last_name\": \"Verkijkker\",\n            \"position\": \"Backend Developer\",\n            \"avatar\": \"https://www.gravatar.com/avatar/b724e127f3f24192ef6bf94ce5416058?s=128&d=identicon\",\n            \"is_verified\": true,\n            \"is_enabled\": true,\n            \"has_totp\": false,\n            \"seen_at\": \"2024-02-28 10:29:04\",\n            \"created_at\": \"2023-11-28 16:14:21\",\n            \"updated_at\": \"2024-02-28 10:29:04\",\n            \"meta\": {\n                \"type\": \"user\"\n            },\n            \"links\": {\n                \"self\": \"http://mozard.mozard suite-accounts-api.test/v0/users/b62a42b9-01fa-43b0-a6b7-81ec334b2064\"\n            }\n        }\n    ]\n}"}],"_postman_id":"12b98eca-4597-4f10-bea7-e1c941239175"},{"name":"Read User","id":"de2f5f04-32af-4e06-b338-a477d1c6c520","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/users/{{user_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","users","{{user_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>will return the logged in user</p>\n","type":"text/plain"},"key":"filters[current]","value":""},{"disabled":true,"description":{"content":"<p>searched the user by name or email</p>\n","type":"text/plain"},"key":"filters[search]","value":"name"},{"disabled":true,"description":{"content":"<p>returns the enabled/disabled users</p>\n","type":"text/plain"},"key":"filters[is_enabled]","value":"true"},{"disabled":true,"description":{"content":"<p>sort by name of user</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>sort by email of user</p>\n","type":"text/plain"},"key":"sort","value":"email"},{"disabled":true,"description":{"content":"<p>Includes roles of user</p>\n","type":"text/plain"},"key":"with[]","value":"roles"}],"variable":[]}},"response":[{"id":"b9427a92-a8cc-43c3-9dd4-4116746a1ee6","name":"Read User","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/users/aca607a8-2ef2-4cf1-b501-8cf3062e5032","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","users","aca607a8-2ef2-4cf1-b501-8cf3062e5032"],"query":[{"key":"filters[current]","value":"","description":"will return the logged in user","type":"text","disabled":true},{"key":"filters[is_enabled]","value":"true","description":"returns the enabled/disabled users","type":"text","disabled":true},{"key":"sort","value":"name","description":"sort by name of user","type":"text","disabled":true},{"key":"sort","value":"email","description":"sort by email of user","disabled":true},{"key":"with[]","value":"roles","description":"Includes roles of user","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:43:59 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"498","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"aca607a8-2ef2-4cf1-b501-8cf3062e5032\",\n    \"code\": \"U-1337\",\n    \"email\": \"j.fooigever@example.com\",\n    \"bsn\": null,\n    \"phone_number\": null,\n    \"name\": \"Jan Fooigever\",\n    \"first_name\": \"Jan\",\n    \"last_name\": \"Fooigever\",\n    \"position\": \"CEO\",\n    \"avatar\": \"https://www.gravatar.com/avatar/9e5fcceb9cfbee6232c5b47b5d7752ab?s=128&d=identicon\",\n    \"is_verified\": true,\n    \"is_enabled\": true,\n    \"has_totp\": false,\n    \"seen_at\": null,\n    \"created_at\": \"2024-02-26 17:29:39\",\n    \"updated_at\": \"2024-02-26 17:32:45\",\n    \"meta\": {\n        \"type\": \"user\"\n    },\n    \"links\": {\n        \"self\": \"http://mozard.mozard suite-accounts-api.test/v0/users/aca607a8-2ef2-4cf1-b501-8cf3062e5032\"\n    }\n}"}],"_postman_id":"de2f5f04-32af-4e06-b338-a477d1c6c520"},{"name":"Create User","id":"3ae50a1a-9fa7-4366-83fd-8412662724e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"j.doe@mozard.nl","description":"<p>[Required] unique email</p>\n","type":"text"},{"key":"first_name","value":"John","description":"<p>[Required] first name of the user</p>\n","type":"text"},{"key":"last_name","value":"Doe","description":"<p>[Required] last name of the user</p>\n","type":"text"},{"key":"roles[]","value":"default","description":"<p>[Required] admin or default or the role id</p>\n","type":"text"},{"key":"should_send_email","value":"1","description":"<p>[Optional] whether to send password reset email to the user when created (default false)</p>\n","type":"text"},{"key":"position","value":"Project Manager","description":"<p>[Optional] job position / title of the user</p>\n","type":"text"},{"key":"code","value":"U-1337","description":"<p>[Optional] an additional code or number to identify the user</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/users?with[]=roles","description":"<p>To create a user we need to provide a unique email, first name and last name. To attach roles when creating a user use the property roles that accepts an array of role ids (see example). To get a list of available roles, call the <code>v1/roles</code> endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","users"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"key":"with[]","value":"roles"}],"variable":[]}},"response":[{"id":"e18a8029-6464-4413-b24f-8277db13e282","name":"Create User","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"j.doe@mozard.nl","description":"[Required] unique email","type":"text"},{"key":"first_name","value":"John","description":"[Required] first name of the user","type":"text"},{"key":"last_name","value":"Doe","description":"[Required] last name of the user","type":"text"},{"key":"roles[]","value":"default","description":"[Required] admin or default or the role id","type":"text"},{"key":"should_send_email","value":"1","description":"[Optional] whether to send password reset email to the user when created (default false)","type":"text"}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.4","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.19","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Fri, 14 Jun 2024 08:16:38 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"499","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"9a70d185-d18d-4d47-b928-f2f120368d32\",\n    \"code\": \"U-1337\",\n    \"email\": \"j.doe@mozard.nl\",\n    \"bsn\": null,\n    \"phone_number\": null,\n    \"name\": \"John Doe\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"position\": \"Project Manager\",\n    \"avatar\": \"https://www.gravatar.com/avatar/fa9fd62f9db602a3e31d96d510d14173?s=128&d=identicon\",\n    \"is_verified\": true,\n    \"is_enabled\": true,\n    \"has_totp\": false,\n    \"pending_totp\": true,\n    \"mfa_status\": \"pending\",\n    \"seen_at\": null,\n    \"created_at\": \"2024-06-14 10:16:38\",\n    \"updated_at\": \"2024-06-14 10:16:38\",\n    \"meta\": {\n        \"type\": \"user\"\n    },\n    \"roles\": [\n        {\n            \"id\": \"admin\",\n            \"name\": \"Beheerder\",\n            \"is_editable\": true,\n            \"description\": \"Een gebruiker met alle rechten.\"\n        }\n    ]\n}"}],"_postman_id":"3ae50a1a-9fa7-4366-83fd-8412662724e9"},{"name":"Update User","id":"5bc4aa3d-2b6d-4b06-bec8-2c11b683bbfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"j.doe@example.com","description":"<p>[Optional] unique email</p>\n","type":"text"},{"key":"first_name","value":"Jane","description":"<p>[Optional] first name of the user</p>\n","type":"text"},{"key":"last_name","value":"Doe","description":"<p>[Optional] last name of the user</p>\n","type":"text"},{"key":"roles[]","value":"default","description":"<p>[Optional] the role id we want to attach to a user</p>\n","type":"text"},{"key":"is_enabled","value":"0","description":"<p>[Optional] whether to enable or disable the user</p>\n","type":"text"},{"key":"position","value":"Project Manager","description":"<p>[Optional] job position / title of the user</p>\n","type":"text"},{"key":"code","value":"U-9412","description":"<p>[Optional] an additional code or number to identify the user</p>\n","type":"text"}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/users/{{user_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","users","{{user_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"5bc4aa3d-2b6d-4b06-bec8-2c11b683bbfa"},{"name":"Delete User","id":"47774c3b-6185-42b9-9717-b7f9dd72568d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/users/{{user_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","users","{{user_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"47774c3b-6185-42b9-9717-b7f9dd72568d"}],"id":"f63c0895-5bfc-48da-8f00-de49f52bcb6c","_postman_id":"f63c0895-5bfc-48da-8f00-de49f52bcb6c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Audits","item":[{"name":"List Audits","id":"28ba4679-4285-4004-9f02-52f72a04eb9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/audits","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","audits"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Auditable morph alias</p>\n","type":"text/plain"},"key":"filters[auditable_type]","value":"portal.version"},{"disabled":true,"description":{"content":"<p>Auditable morph alias</p>\n","type":"text/plain"},"key":"filters[auditable_types][]","value":"portal.version"},{"disabled":true,"description":{"content":"<p>Auditable UUID</p>\n","type":"text/plain"},"key":"filters[auditable_id]","value":"1"},{"disabled":true,"description":{"content":"<p>Auditable UUID</p>\n","type":"text/plain"},"key":"filters[auditable_ids][]","value":"1"},{"disabled":true,"description":{"content":"<p>created, updated, deleted, restored, accessed, import, access_denied</p>\n","type":"text/plain"},"key":"filters[event]","value":"created"},{"disabled":true,"description":{"content":"<p>created, updated, deleted, restored, accessed, import, access_denied</p>\n","type":"text/plain"},"key":"filters[events][]","value":"created"},{"disabled":true,"description":{"content":"<p>user, system</p>\n","type":"text/plain"},"key":"filters[source]","value":"user"},{"disabled":true,"description":{"content":"<p>returns audit created by system if true</p>\n","type":"text/plain"},"key":"filters[is_console]","value":"true"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":""},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[users][]","value":""},{"disabled":true,"description":{"content":"<p>YYYY-MM-DD HH:MM</p>\n","type":"text/plain"},"key":"filters[created_before]","value":"2024-01-01"},{"disabled":true,"description":{"content":"<p>YYYY-MM-DD HH:MM</p>\n","type":"text/plain"},"key":"filters[created_after]","value":"2024-01-01"},{"disabled":true,"description":{"content":"<p>Custom list UUID</p>\n","type":"text/plain"},"key":"filters[custom_list]","value":""},{"disabled":true,"description":{"content":"<p>Sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created"},{"disabled":true,"description":{"content":"<p>Include values</p>\n","type":"text/plain"},"key":"with[]","value":"values"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include audited model</p>\n","type":"text/plain"},"key":"with[]","value":"auditable"},{"disabled":true,"description":{"content":"<p>Include model related to the auditable</p>\n","type":"text/plain"},"key":"with[]","value":"target"}],"variable":[]}},"response":[{"id":"7238eabd-c712-4aee-9202-3963428fd57b","name":"List Audits","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/audits?filters[auditable_type]=portal.version&filters[auditable_id]=9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","audits"],"query":[{"key":"filters[auditable_type]","value":"portal.version","description":"Auditable morph alias"},{"key":"filters[auditable_types][]","value":"portal.version","type":"text","description":"Auditable morph alias","disabled":true},{"key":"filters[auditable_id]","value":"9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40","description":"Auditable UUID"},{"key":"filters[auditable_ids][]","value":"1","type":"text","description":"Auditable UUID","disabled":true},{"key":"filters[event]","value":"created","type":"text","description":"created, updated, deleted, restored, accessed, import, access_denied","disabled":true},{"key":"filters[events][]","value":"created","type":"text","description":"created, updated, deleted, restored, accessed, import, access_denied","disabled":true},{"key":"filters[source]","value":"user","type":"text","description":"user, system","disabled":true},{"key":"filters[is_console]","value":"true","type":"text","description":"returns audit created by system if true","disabled":true},{"key":"filters[user]","value":"","type":"text","description":"User UUID","disabled":true},{"key":"filters[users][]","value":"","type":"text","description":"User UUID","disabled":true},{"key":"filters[created_before]","value":"2024-01-01","type":"text","description":"YYYY-MM-DD HH:MM","disabled":true},{"key":"filters[created_after]","value":"2024-01-01","type":"text","description":"YYYY-MM-DD HH:MM","disabled":true},{"key":"filters[custom_list]","value":"","type":"text","description":"Custom list UUID","disabled":true},{"key":"sort","value":"created","type":"text","description":"Sort by creation date","disabled":true},{"key":"with[]","value":"values","type":"text","description":"Include values","disabled":true},{"key":"with[]","value":"user","type":"text","description":"Include user","disabled":true},{"key":"with[]","value":"auditable","type":"text","description":"Include audited model","disabled":true},{"key":"with[]","value":"target","type":"text","description":"Include model related to the auditable","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:24:46 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"499","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9ae102cf-9003-437c-a864-36b0dcc47a54\",\n            \"event\": \"created\",\n            \"sentence\": \"Naam is veranderd naar: \\\"v4\\\", user_id is veranderd naar: \\\"5992fa29-1e85-4247-853e-544b81cbe655\\\".\",\n            \"model_type\": \"portal.version\",\n            \"model_id\": \"9ae102cf-8dd7-4fe5-86cd-d7180e2e6c40\",\n            \"name\": \"v4\",\n            \"created_at\": \"2023-12-18 16:07:34\",\n            \"meta\": {\n                \"id\": \"9ae102cf-9003-437c-a864-36b0dcc47a54\",\n                \"type\": \"audit\"\n            }\n        }\n    ]\n}"}],"_postman_id":"28ba4679-4285-4004-9f02-52f72a04eb9f"},{"name":"Read Audit","id":"d47c5d55-19ab-409e-9a3f-172c30408d66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/audits/{{audit_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","audits","{{audit_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Include values</p>\n","type":"text/plain"},"key":"with[]","value":"values"},{"disabled":true,"description":{"content":"<p>Include user</p>\n","type":"text/plain"},"key":"with[]","value":"user"},{"disabled":true,"description":{"content":"<p>Include model</p>\n","type":"text/plain"},"key":"with[]","value":"auditable"},{"disabled":true,"description":{"content":"<p>Include related model of the auditable</p>\n","type":"text/plain"},"key":"with[]","value":"target"}],"variable":[]}},"response":[],"_postman_id":"d47c5d55-19ab-409e-9a3f-172c30408d66"}],"id":"87781a07-0973-46a7-ad5d-74a233839f4c","_postman_id":"87781a07-0973-46a7-ad5d-74a233839f4c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Announcements","item":[{"name":"List Announcements","id":"7bbd7b0c-1ade-459b-918f-9ec8aede7904","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/announcements","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","announcements"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>filter announcements that are published</p>\n","type":"text/plain"},"key":"filters[is_published]","value":"true"},{"disabled":true,"description":{"content":"<p>filter announcements that has not expired</p>\n","type":"text/plain"},"key":"filters[is_expired]","value":"false"},{"disabled":true,"description":{"content":"<p>Sort by the published date</p>\n","type":"text/plain"},"key":"sort","value":"published_at"}],"variable":[]}},"response":[],"_postman_id":"7bbd7b0c-1ade-459b-918f-9ec8aede7904"},{"name":"Read Announcement","id":"8159af9e-e6de-4a3e-a11f-b416e65db3a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/announcements/{{announcement_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","announcements","{{announcement_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"8159af9e-e6de-4a3e-a11f-b416e65db3a3"},{"name":"Create Announcement","id":"ad852aed-c2ed-4ca3-b6ae-29fb170624bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"content","value":"this is an announcement","type":"text","description":"<p>The content of the announcement</p>\n","disabled":true},{"key":"published_at","value":"2024-01-01","type":"text","description":"<p>publish date</p>\n","disabled":true},{"key":"expires_at","value":"2024-0102","type":"text","description":"<p>expire date</p>\n","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/announcements","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","announcements"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad852aed-c2ed-4ca3-b6ae-29fb170624bc"},{"name":"Update Announcement","id":"884a128e-4f01-4658-98f5-4b1d7a585e6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"content","value":"this is an announcement","type":"text","description":"<p>The content of the announcement</p>\n","disabled":true},{"key":"published_at","value":"2024-01-01","type":"text","description":"<p>publish date</p>\n","disabled":true},{"key":"expires_at","value":"2024-0102","type":"text","description":"<p>expire date</p>\n","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/announcements/{{announcement_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","announcements","{{announcement_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"884a128e-4f01-4658-98f5-4b1d7a585e6f"},{"name":"Delete Announcement","id":"3123f0f6-d41a-4463-a480-5f67615aca73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/announcements/{{announcement_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","announcements","{{announcement_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"3123f0f6-d41a-4463-a480-5f67615aca73"}],"id":"d1558c06-d01e-4d91-a882-6a23c902e4da","_postman_id":"d1558c06-d01e-4d91-a882-6a23c902e4da","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Exports","item":[{"name":"List exports","id":"d29c099c-ba1f-4b5a-a07b-85a9cd9b48aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/exports","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","exports"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[auth_creator]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7"},{"disabled":true,"description":{"content":"<p>User UUID</p>\n","type":"text/plain"},"key":"filters[auth_users]","value":"9b6ff31b-18c3-4974-9716-abcd86d045d7"},{"disabled":true,"description":{"content":"<p>pending, processing, available, expired, failed</p>\n","type":"text/plain"},"key":"filters[status]","value":"pending"},{"disabled":true,"description":{"content":"<p>pending, processing, available, expired, failed</p>\n","type":"text/plain"},"key":"filters[statuses][]","value":"pending"},{"disabled":true,"description":{"content":"<p>Exportable morph alias</p>\n","type":"text/plain"},"key":"filters[model_type]","value":"custom_list"},{"disabled":true,"description":{"content":"<p>return expired export records</p>\n","type":"text/plain"},"key":"filters[is_expired]","value":"true"},{"disabled":true,"description":{"content":"<p>return export that has files attached to it</p>\n","type":"text/plain"},"key":"filters[has_file]","value":"true"},{"disabled":true,"description":{"content":"<p>return export created before date</p>\n","type":"text/plain"},"key":"filters[created_before]","value":"2024-01-01"},{"disabled":true,"description":{"content":"<p>return export created after date</p>\n","type":"text/plain"},"key":"filters[created_after]","value":"2024-01-01"},{"disabled":true,"key":"sort","value":"created_at"},{"disabled":true,"description":{"content":"<p>include the export file</p>\n","type":"text/plain"},"key":"with[]","value":"file"},{"disabled":true,"description":{"content":"<p>include the applied filters when doing the import</p>\n","type":"text/plain"},"key":"with[]","value":"filters"},{"disabled":true,"description":{"content":"<p>include the tags of the import</p>\n","type":"text/plain"},"key":"with[]","value":"tags"},{"disabled":true,"description":{"content":"<p>include the creator (user) of the import</p>\n","type":"text/plain"},"key":"with[]","value":"creator"},{"disabled":true,"description":{"content":"<p>include the users who can see the export</p>\n","type":"text/plain"},"key":"with[]","value":"users"}],"variable":[]}},"response":[],"_postman_id":"d29c099c-ba1f-4b5a-a07b-85a9cd9b48aa"}],"id":"1e7bb632-f988-42dd-b83c-8115854d573f","_postman_id":"1e7bb632-f988-42dd-b83c-8115854d573f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Reviews","item":[{"name":"List Reviews","id":"77403b3d-eea1-407f-8b2b-71c9d3c84d51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/reviews","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","reviews"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Portal Version UUID</p>\n","type":"text/plain"},"key":"filters[user]","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6"},{"disabled":true,"description":{"content":"<p>Sort by id</p>\n","type":"text/plain"},"key":"filters[portal_version]","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6"},{"disabled":true,"description":{"content":"<p>destination environment</p>\n","type":"text/plain"},"key":"filters[environment]","value":"production"},{"disabled":true,"description":{"content":"<p>source environment</p>\n","type":"text/plain"},"key":"filters[source_environment]","value":"development"},{"disabled":true,"description":{"content":"<p>returns release records of a version rollback</p>\n","type":"text/plain"},"key":"filters[is_reverting]","value":"false"},{"disabled":true,"description":{"content":"<p>draft, open, accepted, rejected, closed</p>\n","type":"text/plain"},"key":"filters[status]","value":"draft"},{"disabled":true,"description":{"content":"<p>draft, open, accepted, rejected, closed</p>\n","type":"text/plain"},"key":"filters[statuses][]","value":"draft"},{"disabled":true,"description":{"content":"<p>sort by creation date</p>\n","type":"text/plain"},"key":"sort","value":"created at"},{"disabled":true,"description":{"content":"<p>Includes the destionation environment</p>\n","type":"text/plain"},"key":"with[]","value":"environment"},{"disabled":true,"description":{"content":"<p>Includes the source environment</p>\n","type":"text/plain"},"key":"with[]","value":"source_environment"},{"disabled":true,"description":{"content":"<p>Includes the portal version of said release</p>\n","type":"text/plain"},"key":"with[]","value":"portal_version"},{"disabled":true,"description":{"content":"<p>Includes the user who created the release</p>\n","type":"text/plain"},"key":"with[]","value":"user"}],"variable":[]}},"response":[],"_postman_id":"77403b3d-eea1-407f-8b2b-71c9d3c84d51"},{"name":"Read Review","id":"41819764-1313-4466-941b-a9ecc2fe612f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/reviews/{{review_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","reviews","{{review_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Includes the destionation environment</p>\n","type":"text/plain"},"key":"with[]","value":"environment"},{"disabled":true,"description":{"content":"<p>Includes the source environment</p>\n","type":"text/plain"},"key":"with[]","value":"source_environment"},{"disabled":true,"description":{"content":"<p>Includes the portal version of said release</p>\n","type":"text/plain"},"key":"with[]","value":"portal_version"},{"disabled":true,"description":{"content":"<p>Includes the user who created the release</p>\n","type":"text/plain"},"key":"with[]","value":"user"}],"variable":[]}},"response":[],"_postman_id":"41819764-1313-4466-941b-a9ecc2fe612f"},{"name":"Create Review","id":"34b9da9c-f5c7-480c-bd5e-b84970764425","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"source_environment[id]","value":"development","type":"text","description":"<p>From which environment do we want to publish</p>\n","disabled":true},{"key":"environment[id]","value":"production","type":"text","description":"<p>The destination environment</p>\n","disabled":true},{"key":"portal_version[id]","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>Which version do we want to publish</p>\n","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/reviews","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","reviews"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"34b9da9c-f5c7-480c-bd5e-b84970764425"},{"name":"Update Review","id":"0efd7e85-9cc0-4aa7-8f20-b456bea489e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"source_environment[id]","value":"development","type":"text","description":"<p>From which environment do we want to publish</p>\n","disabled":true},{"key":"environment[id]","value":"production","type":"text","description":"<p>The destination environment</p>\n","disabled":true},{"key":"portal_version[id]","value":"9ad8a141-d63b-4f77-b6ab-d7e84b0e5bc6","type":"text","description":"<p>Which version do we want to publish</p>\n","disabled":true},{"key":"status","value":"accepted","description":"<p>draft, open, accepted, rejected, closed</p>\n","type":"text","disabled":true},{"key":"description","value":"Release of 2024-01-01","description":"<p>description of release</p>\n","type":"text","disabled":true}]},"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/portals/reviews/{{review_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","portals","reviews","{{review_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"0efd7e85-9cc0-4aa7-8f20-b456bea489e3"}],"id":"d578bf5a-3d50-48fc-adad-afd2463b1d92","_postman_id":"d578bf5a-3d50-48fc-adad-afd2463b1d92","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Pages","item":[{"name":"List Pages","id":"70b019d3-a622-42af-b5ed-ed28dd33f05b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/pages","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","pages"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>sort by id</p>\n","type":"text/plain"},"key":"sort","value":"id"}],"variable":[]}},"response":[{"id":"fec59716-0c5b-4a0a-9417-a8cae4d0d8af","name":"List Pages","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/pages","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","pages"],"query":[{"key":"sort","value":"id","description":"sort by id","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:05:37 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"492","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 6,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 6,\n    \"data\": [\n        {\n            \"id\": \"3b859257-0fa1-4b06-8260-1d3362408297\",\n            \"name\": \"Lopende zaken\",\n            \"created_at\": \"2023-11-28T13:03:49.000000Z\"\n        },\n        {\n            \"id\": \"568a14c2-0065-4be8-889f-b3d8d9b818e9\",\n            \"name\": \"Onderbroken Formulieren\",\n            \"created_at\": \"2024-01-19T08:12:40.000000Z\"\n        },\n        {\n            \"id\": \"a8e04390-f181-45f8-89fa-7ae2c98dd43f\",\n            \"name\": \"Mijn Gegevens\",\n            \"created_at\": \"2023-11-28T13:03:49.000000Z\"\n        },\n        {\n            \"id\": \"c0aff01a-ff88-4000-9331-0326a1136af0\",\n            \"name\": \"Afgewikkelde zaken\",\n            \"created_at\": \"2023-11-28T13:03:49.000000Z\"\n        },\n        {\n            \"id\": \"ce7ad177-0d77-4386-bdf9-03f251802ca9\",\n            \"name\": \"Dashboard\",\n            \"created_at\": \"2023-11-28T13:03:49.000000Z\"\n        },\n        {\n            \"id\": \"ec68c520-bdac-4021-9472-5e5e368a5d94\",\n            \"name\": \"Formulieren\",\n            \"created_at\": \"2023-11-28T13:03:49.000000Z\"\n        }\n    ]\n}"}],"_postman_id":"70b019d3-a622-42af-b5ed-ed28dd33f05b"},{"name":"Read Page","id":"c4036cbb-323d-4abe-8c16-bd355545827d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/pages/{{page_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","pages","{{page_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4036cbb-323d-4abe-8c16-bd355545827d"}],"id":"22d7949b-16d5-41c6-8238-dff23bbce6d8","_postman_id":"22d7949b-16d5-41c6-8238-dff23bbce6d8","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Widgets","item":[{"name":"List Widgets","id":"76cf5766-e0d9-4cca-a174-78cee023858c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/widgets","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","widgets"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>Sort by id</p>\n","type":"text/plain"},"key":"sort","value":"id"}],"variable":[]}},"response":[{"id":"2f252718-5e08-432e-ae9c-ac3d4c679758","name":"List Widgets","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/widgets","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","widgets"],"query":[{"key":"sort","value":"id","description":"Sort by id","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:05:46 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"491","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 8,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 8,\n    \"data\": [\n        {\n            \"id\": \"491398bf-cb06-4340-aaa3-30cb09025769\",\n            \"name\": \"Mijn gegevens\",\n            \"created_at\": \"2023-11-28T13:03:48.000000Z\"\n        },\n        {\n            \"id\": \"4af7c292-e951-4df8-a907-55248bd7d1b9\",\n            \"name\": \"Mededelingen\",\n            \"created_at\": \"2023-11-28T13:03:48.000000Z\"\n        },\n        {\n            \"id\": \"69fe8898-5381-4308-a6d0-f734b5dd5c61\",\n            \"name\": \"Afgeronde zaken\",\n            \"created_at\": \"2023-11-28T13:03:48.000000Z\"\n        },\n        {\n            \"id\": \"748b2d39-bdff-4958-b2dc-65e373a6a14c\",\n            \"name\": \"Lopende zaken\",\n            \"created_at\": \"2023-11-28T13:03:48.000000Z\"\n        },\n        {\n            \"id\": \"814ef8ac-5232-41c2-9622-912cda58bb66\",\n            \"name\": \"Berichten\",\n            \"created_at\": \"2023-11-28T13:03:48.000000Z\"\n        },\n        {\n            \"id\": \"c6207639-4b1b-4310-b567-0669f2891b28\",\n            \"name\": \"Onderbroken Formulieren\",\n            \"created_at\": \"2024-02-26T16:17:37.000000Z\"\n        },\n        {\n            \"id\": \"d05d149a-3ffc-4388-9f8c-07c027ffd6a7\",\n            \"name\": \"Formulieren\",\n            \"created_at\": \"2023-11-28T13:03:48.000000Z\"\n        },\n        {\n            \"id\": \"f301f687-ab7d-44d1-860d-6fab9cb62552\",\n            \"name\": \"Snelkoppelingen\",\n            \"created_at\": \"2023-11-28T13:03:48.000000Z\"\n        }\n    ]\n}"}],"_postman_id":"76cf5766-e0d9-4cca-a174-78cee023858c"},{"name":"Read Widget","id":"2cd5a403-0d69-49f9-b38a-05c12454ced9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/widgets/{{widget_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","widgets","{{widget_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"2cd5a403-0d69-49f9-b38a-05c12454ced9"}],"id":"62f0331c-f744-4d6f-8db0-e3e5a85fe17c","_postman_id":"62f0331c-f744-4d6f-8db0-e3e5a85fe17c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Forms","item":[{"name":"List Forms","id":"b9927df4-1ac8-4a89-af74-c6cd939e074b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/forms","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","forms"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[{"disabled":true,"description":{"content":"<p>sort by form name</p>\n","type":"text/plain"},"key":"sort","value":"name"}],"variable":[]}},"response":[{"id":"62f3c3c2-48c2-4622-a66c-bdebae488c31","name":"List Forms","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/forms","host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"path":["v1","forms"],"query":[{"key":"sort","value":"name","description":"sort by form name","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.22.1","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.1.24","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Wed, 28 Feb 2024 09:15:04 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"499","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 1,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 1,\n    \"data\": [\n        {\n            \"id\": \"9b5578fb-d549-48c4-8498-f4013d2c34f5\",\n            \"name\": \"Mozard Suite Cases Integration\"\n        }\n    ]\n}"}],"_postman_id":"b9927df4-1ac8-4a89-af74-c6cd939e074b"},{"name":"Read Form","id":"c633bdff-975d-4be0-bddd-d00d407eec31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/forms/{{form_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","forms","{{form_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"c633bdff-975d-4be0-bddd-d00d407eec31"}],"id":"a91c89bc-0b99-40a3-89b1-831a2de51df5","_postman_id":"a91c89bc-0b99-40a3-89b1-831a2de51df5","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Roles","item":[{"name":"List Roles","id":"fd9cccc0-a06c-4a67-95f4-e170823787f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/roles","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","roles"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[{"id":"37f4f798-ab3f-4a19-b107-fbcb1a6ae422","name":"List Roles","originalRequest":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.25.4","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-Powered-By","value":"PHP/8.2.20","enabled":true},{"key":"Cache-Control","value":"no-cache, private","enabled":true},{"key":"Date","value":"Fri, 14 Jun 2024 13:01:21 GMT","enabled":true},{"key":"X-RateLimit-Limit","value":"500","enabled":true},{"key":"X-RateLimit-Remaining","value":"498","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin, Content-Disposition","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 4,\n    \"per_page\": 15,\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"next_page_url\": \"\",\n    \"prev_page_url\": \"\",\n    \"from\": 1,\n    \"to\": 4,\n    \"data\": [\n        {\n            \"id\": \"admin\",\n            \"name\": \"Beheerder\",\n            \"is_editable\": true,\n            \"description\": \"Een gebruiker met alle rechten.\"\n        },\n        {\n            \"id\": \"default\",\n            \"name\": \"Standaard\",\n            \"is_editable\": true,\n            \"description\": \"Een standaard rol die toegekend wordt aan nieuwe gebruikers.\"\n        }\n    ]\n}"}],"_postman_id":"fd9cccc0-a06c-4a67-95f4-e170823787f4"},{"name":"Show Role","id":"813a0a29-7868-4d4d-9a03-15983e1f0bcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl/v1/roles/{{role_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","roles","{{role_id}}"],"host":["https://MIJNOMGEVING.api.accounts.mozardsuite.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"813a0a29-7868-4d4d-9a03-15983e1f0bcb"}],"id":"f3d9273e-6bed-4d22-a3ec-f4f15bd98cbd","_postman_id":"f3d9273e-6bed-4d22-a3ec-f4f15bd98cbd","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}}],"id":"972ff42d-8a5d-4a21-a5ab-48e325ed77b1","_postman_id":"972ff42d-8a5d-4a21-a5ab-48e325ed77b1","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"Finance","item":[{"name":"Declarations","item":[{"name":"Types","item":[{"name":"List Types","id":"cd906f42-17a5-4336-835d-504374a8e509","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{finance_server}}/v1/declarations/types?with[]=users","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations","types"],"host":["{{finance_server}}"],"query":[{"disabled":true,"key":"filters[date_from]","value":"2022-06-13"},{"disabled":true,"key":"filters[date_until]","value":"2022-06-13"},{"key":"with[]","value":"users"}],"variable":[]}},"response":[],"_postman_id":"cd906f42-17a5-4336-835d-504374a8e509"},{"name":"Show Type","id":"33a2258e-ffc3-4466-868a-2a1f33ced66f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{finance_server}}/v1/declarations/types/{{declaration_type_id}}?with[]=users","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations","types","{{declaration_type_id}}"],"host":["{{finance_server}}"],"query":[{"key":"with[]","value":"users"}],"variable":[]}},"response":[],"_postman_id":"33a2258e-ffc3-4466-868a-2a1f33ced66f"},{"name":"Create Type","event":[{"listen":"test","script":{"id":"d4423116-f6b6-4ed4-9f58-e6eaa0ab4f22","exec":["var data = JSON.parse(responseBody);","","if (data.id) {","    postman.setEnvironmentVariable(\"declaration_type_id\", data.id);","}"],"type":"text/javascript"}}],"id":"fb7bada5-7fcf-4c22-9c25-54bb8c02226b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Werk - Woon\",\n    \"description\": \"Random\",\n    \"is_sepa_batchable\": true,\n    \"exactonline_ledger\": \"134151515\",\n    \"users\": [\n        {\n            \"id\": \"{{user_id}}\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{finance_server}}/v1/declarations/types?with[]=users","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations","types"],"host":["{{finance_server}}"],"query":[{"key":"with[]","value":"users"}],"variable":[]}},"response":[],"_postman_id":"fb7bada5-7fcf-4c22-9c25-54bb8c02226b"},{"name":"Update Type","id":"50d48a8e-4a82-45f5-aeab-dcac4384da30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Werk - Woon\",\n    \"description\": \"Random\",\n    \"is_sepa_batchable\": true,\n    \"exactonline_ledger\": \"134151515\",\n    \"users\": [\n        {\n            \"id\": \"{{user_id}}\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{finance_server}}/v1/declarations/types/{{declaration_type_id}}?with[]=users","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations","types","{{declaration_type_id}}"],"host":["{{finance_server}}"],"query":[{"key":"with[]","value":"users"}],"variable":[]}},"response":[],"_postman_id":"50d48a8e-4a82-45f5-aeab-dcac4384da30"},{"name":"Delete Type","id":"8ee8d549-9384-4900-a906-98f41f4d04fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{finance_server}}/v1/declarations/types/{{declaration_type_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations","types","{{declaration_type_id}}"],"host":["{{finance_server}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ee8d549-9384-4900-a906-98f41f4d04fd"}],"id":"93faf355-d354-4eb8-9d25-2e353ead6fb4","_postman_id":"93faf355-d354-4eb8-9d25-2e353ead6fb4","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}},{"name":"List Declarations","id":"b475a784-4f04-4fda-8f53-d56d69cfb328","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{finance_server}}/v1/declarations?with[]=type&with[]=user&with[]=manager&with[]=media&with[]=links&filters[payout_type]=payroll","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations"],"host":["{{finance_server}}"],"query":[{"key":"with[]","value":"type"},{"key":"with[]","value":"user"},{"key":"with[]","value":"manager"},{"key":"with[]","value":"media"},{"key":"with[]","value":"links"},{"disabled":true,"key":"filters[user]","value":"{{user_id}}"},{"disabled":true,"key":"filters[users][]","value":"{{user_id}}"},{"disabled":true,"key":"filters[status]","value":"pending"},{"key":"filters[payout_type]","value":"payroll"}],"variable":[]}},"response":[],"_postman_id":"b475a784-4f04-4fda-8f53-d56d69cfb328"},{"name":"Show Declaration","id":"95a50642-7f6b-4277-bb24-4269aafb2f9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{finance_server}}/v1/declarations/{{declaration_id}}?with[]=type&with[]=user&with[]=manager&with[]=media&with[]=links","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations","{{declaration_id}}"],"host":["{{finance_server}}"],"query":[{"key":"with[]","value":"type"},{"key":"with[]","value":"user"},{"key":"with[]","value":"manager"},{"key":"with[]","value":"media"},{"key":"with[]","value":"links"}],"variable":[]}},"response":[],"_postman_id":"95a50642-7f6b-4277-bb24-4269aafb2f9d"},{"name":"Create Declaration","event":[{"listen":"test","script":{"id":"d4423116-f6b6-4ed4-9f58-e6eaa0ab4f22","exec":["var data = JSON.parse(responseBody);","","if (data.id) {","    postman.setEnvironmentVariable(\"declaration_id\", data.id);","}"],"type":"text/javascript"}}],"id":"b74c8145-158b-4786-9bf1-4fc4995e9291","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Joseph May Costs","type":"text"},{"key":"description","value":"Test","type":"text"},{"key":"amount","value":"99.99","type":"text"},{"key":"media","type":"file","src":"/Users/bryse/Pictures/blotches.jpeg"},{"key":"type[id]","value":"{{declaration_type_id}}","type":"text"}]},"url":"{{finance_server}}/v1/declarations?with[]=type&with[]=user&with[]=manager&with[]=media&with[]=links","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations"],"host":["{{finance_server}}"],"query":[{"key":"with[]","value":"type"},{"key":"with[]","value":"user"},{"key":"with[]","value":"manager"},{"key":"with[]","value":"media"},{"key":"with[]","value":"links"}],"variable":[]}},"response":[],"_postman_id":"b74c8145-158b-4786-9bf1-4fc4995e9291"},{"name":"Update Declaration","id":"bb9d2fa7-e2eb-4d26-98ad-744918898456","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"status\": \"declared\"\n}","options":{"raw":{"language":"json"}}},"url":"{{finance_server}}/v1/declarations/968eacad-f3d0-41f5-9753-5151185dc7ae?with[]=type&with[]=user&with[]=manager","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations","968eacad-f3d0-41f5-9753-5151185dc7ae"],"host":["{{finance_server}}"],"query":[{"key":"with[]","value":"type"},{"key":"with[]","value":"user"},{"key":"with[]","value":"manager"}],"variable":[]}},"response":[],"_postman_id":"bb9d2fa7-e2eb-4d26-98ad-744918898456"},{"name":"Delete Declaration","id":"c451bad0-8374-4a31-8532-b5d12083e7ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{finance_server}}/v1/declarations/{{declaration_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}},"urlObject":{"path":["v1","declarations","{{declaration_id}}"],"host":["{{finance_server}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c451bad0-8374-4a31-8532-b5d12083e7ed"}],"id":"2c20aafb-6da2-42ed-b058-8f76b8409df4","_postman_id":"2c20aafb-6da2-42ed-b058-8f76b8409df4","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}}],"id":"9235e679-7a62-447d-b195-ac3b761fec0e","_postman_id":"9235e679-7a62-447d-b195-ac3b761fec0e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]},"isInherited":true,"source":{"_postman_id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","id":"486c91dd-18ac-4590-881f-2a4b8679ff0c","name":"Mozard Suite (v1)","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"}]}},"event":[{"listen":"prerequest","script":{"id":"85222232-3056-494a-845e-9d3800ef997e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e473c7a2-016f-4af2-a66c-03fc7586bd69","type":"text/javascript","exec":[""]}}],"variable":[{"key":"api_key","value":"XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXX"},{"key":"cases_server","value":"https://MIJNOMGEVING.api.cases.mozardsuite.nl"},{"key":"forms_server","value":"https://MIJNOMGEVING.api.forms.mozardsuite.nl"},{"key":"crm_server","value":"https://MIJNOMGEVING.api.crm.mozardsuite.nl"},{"key":"accounts_server","value":"https://MIJNOMGEVING.api.accounts.mozardsuite.nl"}]}